{"meta":{"format":1,"build":"recap-7584bad-20260908T0615Z","exe_sha256":"970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841","started":"2026-09-08T06:28:40Z","inline_max":256,"hooks":{"Shim::SelfTest::Fill":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"complete","why":"Fill writes buf[0..n) and nothing else; the whole range is a declared region","unmodelled":[]}},"Mars::GlobalConsts::LoadFile":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"erases each consumed key from the caller's std::map","risk":"medium","why":"the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not","mitigation":"LoadAll's post-state would have to be hooked to see it"},{"what":"writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)","risk":"low","why":"log text is not part of the simulation state","mitigation":""},{"what":"opens the file through the VFS and allocates/releases a refcounted buffer","risk":"low","why":"ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison","mitigation":""},{"what":"String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode","risk":"low","why":"start-up only; documented in docs/M1.md","mitigation":""}]}},"Game::ServerPlayer::ComputeBudget":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)","risk":"high","why":"they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing","mitigation":"declared input boundary; see budget_inputs.h"},{"what":"ServerSystem::ComputeOutput repairs damaged ships in orbit","risk":"high","why":"replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it","mitigation":"guard:budget_object does not reach the ships; unverified"},{"what":"the difficulty-mods row from StrategyServer::GetDifficultyMods","risk":"medium","why":"not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs","mitigation":""},{"what":"the research-allocation vector's heap block","risk":"low","why":"only the element count is compared; the three words are heap pointers the default policy ignores","mitigation":""}]}},"Game::WeaponDictionary::Init":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree","risk":"high","why":"per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region","mitigation":"suspected cause of the sibling section hook's compare crash (docs/M2.md)"},{"what":"allocates 123 WeaponDef objects (0x278 bytes each) on the game heap","risk":"low","why":"the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence","mitigation":"guard:dict"},{"what":"writes lines to the game log for a missing manifest","risk":"low","why":"log text is not simulation state","mitigation":""},{"what":"std::sort tie order for equal weapon names","risk":"low","why":"msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified","mitigation":""}]}},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector","risk":"high","why":"M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash","mitigation":"see docs/M2.md; compare mode for this hook is not safe to run"},{"what":"post-load validation pass over every definition's @-token against the string table","risk":"medium","why":"runs after the loop and touches no declared region","mitigation":""},{"what":"allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap","risk":"low","why":"they do not exist at hook entry; compared by index/species/id/token","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an ignored pointer","mitigation":"guard:dict"},{"what":"the before-snapshot of the object is uninitialised heap","risk":"medium","why":"the hook is on the constructor, so `before` is meaningless and only `after` carries information","mitigation":""}]}},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2","risk":"high","why":"the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event","mitigation":"region:events (EvNxID now diverges instead of passing silently)"},{"what":"posts EVENT_TECHS_UNLOCKED for nodes that became available this turn","risk":"medium","why":"the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event","mitigation":"region:events"},{"what":"TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback","risk":"high","why":"its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word","mitigation":"guard:player, guard:tree_header"},{"what":"bumps the tree's completion-order counter (TechTree+0x20)","risk":"medium","why":"part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region","mitigation":"guard:tree_header"},{"what":"writes a completion line to the game log","risk":"low","why":"log text is not simulation state","mitigation":""}]}},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent","risk":"high","why":"the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding","mitigation":"guard:player (EventStorage is inline at ServerPlayer+0x29c)"},{"what":"writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships","risk":"high","why":"writes through pointers to other objects; compare mode must not touch live state, and no region reaches them","mitigation":""},{"what":"the pending plague-cure roll (ServerPlayer::RollResearchEvent)","risk":"high","why":"it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired","mitigation":"this is the extra draw B3 observed on a completion"},{"what":"TechTree::SetResearched for the Zuul boarding-pod grant","risk":"medium","why":"it would mutate the live tree, and it recurses","mitigation":""},{"what":"allocates or frees the node-bore block at ServerPlayer+0x308","risk":"medium","why":"ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all","mitigation":"region:node_bore, declared only when the block already exists"}]}},"Game::ServerSystem::ProcessTurn":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history","risk":"high","why":"the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged","mitigation":"guard:system"},{"what":"every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue","risk":"high","why":"declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters","mitigation":"guard:system covers the system object only, not the other objects"},{"what":"ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer","risk":"medium","why":"writes through a pointer to another object; no region reaches the player","mitigation":""},{"what":"ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent","risk":"low","why":"the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled","mitigation":""},{"what":"replace mode is refused for this hook","risk":"medium","why":"our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook","mitigation":""}]}},"Game::StrategyServer::MoveFleet":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)","risk":"high","why":"declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals","mitigation":"guard:fleet sees the fleet's own words; the event and the system do not"},{"what":"on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits","risk":"high","why":"writes through pointers to ships and to the system","mitigation":""},{"what":"the tanker top-up refuels other ships in the fleet","risk":"medium","why":"the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason","mitigation":""},{"what":"a node-line waypoint's step comes from the stutter profile","risk":"medium","why":"NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded","mitigation":"declared gap: docs/B4.md"},{"what":"a missed probabilistic jump scatters the fleet in a random direction","risk":"medium","why":"the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss","mitigation":""},{"what":"the route revalidation and the waypoint list itself","risk":"medium","why":"declared input boundary; the waypoint vector is not a region","mitigation":""}]}},"Game::StrategyServer::ProcessFleetMovement":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"`ours` re-reads the LIVE fleet list after the original has run","risk":"high","why":"the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state","mitigation":""},{"what":"drives MoveFleet up to five times per fleet","risk":"high","why":"every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared","mitigation":""},{"what":"writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet","risk":"high","why":"no region covers the fleets, only the players' gate-traffic words","mitigation":""},{"what":"OnFleetArrived posts EVENT_FLEET_ARRIVED","risk":"high","why":"the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either","mitigation":""},{"what":"the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check","risk":"medium","why":"a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them","mitigation":""},{"what":"PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled","risk":"medium","why":"the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted","mitigation":""}]}}}}} {"ts":271004810,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":0,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":144},"points":{"t":"i32","v":2889}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":2879},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"next_id":{"t":"i32","v":3},"vec_begin":{"t":"ptr","v":"0x364b6998"},"vec_end":{"t":"ptr","v":"0x364b69c8"},"vec_cap":{"t":"ptr","v":"0x364b69c8"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"next_id":{"t":"i32","v":4},"vec_begin":{"t":"ptr","v":"0x364b6998"},"vec_end":{"t":"ptr","v":"0x364b69c8"},"vec_cap":{"t":"ptr","v":"0x364b69c8"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"next_id":{"t":"i32","v":3},"vec_begin":{"t":"ptr","v":"0x364b6998"},"vec_end":{"t":"ptr","v":"0x364b69c8"},"vec_cap":{"t":"ptr","v":"0x364b69c8"}}}}}},"diverged":true,"diff":[{"path":"side.events.after.v.next_id","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":3}}],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":271025481,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":1,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":431,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":271044325,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":2,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":431,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":381935384,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":3,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":144},"points":{"t":"i32","v":2898}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1166}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":72},"next_id":{"t":"i32","v":5},"vec_begin":{"t":"ptr","v":"0x35ee4918"},"vec_end":{"t":"ptr","v":"0x35ee4960"},"vec_cap":{"t":"ptr","v":"0x35ee4960"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":72},"next_id":{"t":"i32","v":7},"vec_begin":{"t":"ptr","v":"0x35ee4918"},"vec_end":{"t":"ptr","v":"0x35ee4960"},"vec_cap":{"t":"ptr","v":"0x35ee4960"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1166}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":72},"next_id":{"t":"i32","v":5},"vec_begin":{"t":"ptr","v":"0x35ee4918"},"vec_end":{"t":"ptr","v":"0x35ee4960"},"vec_cap":{"t":"ptr","v":"0x35ee4960"}}}}}},"diverged":true,"diff":[{"path":"side.events.after.v.next_id","why":"exact","orig":{"t":"i32","v":7},"ours":{"t":"i32","v":5}},{"path":"side.node[132].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":10000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[132].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[132].after.v.turn_available","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}},{"path":"side.node[136].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":16000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[136].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[136].after.v.turn_available","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}},{"path":"side.node[142].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":8000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[142].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[142].after.v.turn_available","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}},{"path":"side.node[144].after.v.order","why":"exact","orig":{"t":"i32","v":22},"ours":{"t":"i32","v":-1}},{"path":"side.node[144].after.v.turn_researched","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}}],"coverage":{"guards":["player","tree_header"],"undeclared":[{"region":"player","off":268,"len":3},{"region":"player","off":272,"len":3},{"region":"player","off":276,"len":3},{"region":"player","off":292,"len":3},{"region":"player","off":628,"len":3},{"region":"player","off":632,"len":3},{"region":"player","off":636,"len":3},{"region":"player","off":660,"len":4},{"region":"tree_header","off":32,"len":1}],"n":9}} {"ts":381957858,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":4,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":381980496,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":5,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":413532197,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":6,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":3064}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":394},"next_index":{"t":"i64","v":230}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3064},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":96},"next_id":{"t":"i32","v":8},"vec_begin":{"t":"ptr","v":"0x0e9df768"},"vec_end":{"t":"ptr","v":"0x0e9df7c8"},"vec_cap":{"t":"ptr","v":"0x0e9df7c8"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":96},"next_id":{"t":"i32","v":8},"vec_begin":{"t":"ptr","v":"0x0e9df768"},"vec_end":{"t":"ptr","v":"0x0e9df7c8"},"vec_cap":{"t":"ptr","v":"0x0e9df7c8"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":394},"next_index":{"t":"i64","v":230}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3064},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":96},"next_id":{"t":"i32","v":8},"vec_begin":{"t":"ptr","v":"0x0e9df768"},"vec_end":{"t":"ptr","v":"0x0e9df7c8"},"vec_cap":{"t":"ptr","v":"0x0e9df7c8"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":413554648,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":7,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":393,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":413576400,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":8,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":393,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":445127713,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":9,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":375,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":3074}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":138}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3064},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":120},"next_id":{"t":"i32","v":10},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbac8"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":120},"next_id":{"t":"i32","v":12},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbac8"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":138}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":120},"next_id":{"t":"i32","v":10},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbac8"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}}},"diverged":true,"diff":[{"path":"side.events.after.v.next_id","why":"exact","orig":{"t":"i32","v":12},"ours":{"t":"i32","v":10}},{"path":"side.node[12].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":35000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[12].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[12].after.v.turn_available","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}},{"path":"side.node[18].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":4000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[18].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[18].after.v.turn_available","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}},{"path":"side.node[3].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":13000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[3].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[3].after.v.turn_available","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}},{"path":"side.node[9].after.v.order","why":"exact","orig":{"t":"i32","v":23},"ours":{"t":"i32","v":-1}},{"path":"side.node[9].after.v.turn_researched","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}}],"coverage":{"guards":["player","tree_header"],"undeclared":[{"region":"player","off":304,"len":3},{"region":"player","off":632,"len":1},{"region":"player","off":660,"len":4},{"region":"tree_header","off":32,"len":1}],"n":4}} {"ts":445152119,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":10,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":375,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":445173614,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":11,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":375,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":476715991,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":12,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":357,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":18},"points":{"t":"i32","v":3087}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":357},"next_index":{"t":"i64","v":267}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3087},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":144},"next_id":{"t":"i32","v":14},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbae0"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":144},"next_id":{"t":"i32","v":14},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbae0"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3087},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":144},"next_id":{"t":"i32","v":14},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbae0"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":476738054,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":13,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":355,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":476758101,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":14,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":355,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}}