From 8d56de52a971dd2a9016a7c2de15173189602dac Mon Sep 17 00:00:00 2001 From: Mo Date: Sat, 29 Oct 2016 18:55:19 +0300 Subject: [PATCH 1/3] correct item id from eddn --- .../src/main/java/ru/trader/EMDNUpdater.java | 3 +- .../main/java/ru/trader/emdn/EMDNParser.java | 6 +- .../java/ru/trader/maddavo/OffersHandler.java | 3 +- .../imp/ItemCorrector.java} | 90 +- utils/src/test/resources/edce/edce_v22.json | 14116 ++++++++++++++++ 5 files changed, 14175 insertions(+), 43 deletions(-) rename utils/src/main/java/ru/trader/{maddavo/ItemConverter.java => store/imp/ItemCorrector.java} (67%) create mode 100644 utils/src/test/resources/edce/edce_v22.json diff --git a/client/src/main/java/ru/trader/EMDNUpdater.java b/client/src/main/java/ru/trader/EMDNUpdater.java index 36bc164..34154cc 100644 --- a/client/src/main/java/ru/trader/EMDNUpdater.java +++ b/client/src/main/java/ru/trader/EMDNUpdater.java @@ -7,6 +7,7 @@ import ru.trader.emdn.EMDN; import ru.trader.emdn.entities.Message; import ru.trader.model.*; import ru.trader.model.support.StationUpdater; +import ru.trader.store.imp.ItemCorrector; import ru.trader.store.imp.entities.ItemData; import ru.trader.store.imp.entities.StarSystemData; import ru.trader.store.imp.entities.StationData; @@ -79,7 +80,7 @@ public class EMDNUpdater { if (commodities == null) return; updater.edit(station); for (ItemData commodity : commodities) { - String id = commodity.getName().toLowerCase().replace(" ","_"); + String id = ItemCorrector.getItemId(commodity.getName()); Optional item = world.getItem(id); if (item.isPresent()) { Optional offer = updater.getOffer(item.get()); diff --git a/utils/src/main/java/ru/trader/emdn/EMDNParser.java b/utils/src/main/java/ru/trader/emdn/EMDNParser.java index d3a5a46..c5c2406 100644 --- a/utils/src/main/java/ru/trader/emdn/EMDNParser.java +++ b/utils/src/main/java/ru/trader/emdn/EMDNParser.java @@ -6,7 +6,9 @@ import com.fasterxml.jackson.databind.ObjectMapper; import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import ru.trader.emdn.entities.*; +import ru.trader.emdn.entities.Header; +import ru.trader.emdn.entities.Message; +import ru.trader.emdn.entities.SUPPORT_VERSIONS; import java.io.IOException; import java.time.LocalDateTime; @@ -33,7 +35,7 @@ public class EMDNParser { String schema = node.get("$schemaRef").asText(""); SUPPORT_VERSIONS version = SUPPORT_VERSIONS.getVersion(schema); if (version == null){ - LOG.warn("Unknown EDDN message schema {}", schema); + LOG.trace("Unknown EDDN message schema {}", schema); return null; } return parse(node, version); diff --git a/utils/src/main/java/ru/trader/maddavo/OffersHandler.java b/utils/src/main/java/ru/trader/maddavo/OffersHandler.java index 4188b4f..10aad7a 100644 --- a/utils/src/main/java/ru/trader/maddavo/OffersHandler.java +++ b/utils/src/main/java/ru/trader/maddavo/OffersHandler.java @@ -3,6 +3,7 @@ package ru.trader.maddavo; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ru.trader.core.*; +import ru.trader.store.imp.ItemCorrector; import java.io.IOException; import java.util.HashMap; @@ -135,7 +136,7 @@ public class OffersHandler implements ParseHandler { Double sell = getDoubleValue(matcher.group(3)); Long demand = getLongValue(matcher.group(4)); Long supply = getLongValue(matcher.group(6)); - Item item = items.get(ItemConverter.getItemId(name)); + Item item = items.get(ItemCorrector.getItemId(name)); if (item != null){ if (buy != null && buy > 0){ buyUpdates.put(item, new OfferData(buy, demand)); diff --git a/utils/src/main/java/ru/trader/maddavo/ItemConverter.java b/utils/src/main/java/ru/trader/store/imp/ItemCorrector.java similarity index 67% rename from utils/src/main/java/ru/trader/maddavo/ItemConverter.java rename to utils/src/main/java/ru/trader/store/imp/ItemCorrector.java index 228cb1a..f345ec2 100644 --- a/utils/src/main/java/ru/trader/maddavo/ItemConverter.java +++ b/utils/src/main/java/ru/trader/store/imp/ItemCorrector.java @@ -1,9 +1,9 @@ -package ru.trader.maddavo; +package ru.trader.store.imp; import java.util.HashMap; import java.util.Map; -public class ItemConverter { +public class ItemCorrector { private final static Map IDS = new HashMap<>(85, 0.9f); @@ -38,20 +38,25 @@ public class ItemConverter { IDS.put("bootleg liquor", "bootleg_liquor"); IDS.put("liquor", "liquor"); IDS.put("narcotics", "basicnarcotics"); + IDS.put("basic narcotics", "basicnarcotics"); IDS.put("tobacco", "tobacco"); IDS.put("wine", "wine"); IDS.put("atmospheric processors", "atmosphericprocessors"); + IDS.put("atmospheric extractors", "atmosphericprocessors"); IDS.put("building fabricators", "building_fabricators"); IDS.put("crop harvesters", "cropharvesters"); IDS.put("geological equipment", "geological_equipment"); IDS.put("marine equipment", "marinesupplies"); + IDS.put("marine supplies", "marinesupplies"); IDS.put("microbial furnaces", "microbialfurnaces"); + IDS.put("heliostatic furnaces", "microbialfurnaces"); IDS.put("mineral extractors", "mineralextractors"); IDS.put("power generators", "powergenerators"); IDS.put("skimmer components", "skimer_components"); IDS.put("thermal cooling units", "thermal_cooling_units"); IDS.put("water purifiers", "waterpurifiers"); IDS.put("agri-medicines", "agriculturalmedicines"); + IDS.put("agricultural medicines", "agriculturalmedicines"); IDS.put("basic medicines", "basicmedicines"); IDS.put("combat stabilisers", "combatstabilisers"); IDS.put("performance enhancers", "performanceenhancers"); @@ -108,10 +113,14 @@ public class ItemConverter { IDS.put("animal monitors", "animalmonitors"); IDS.put("aquaponic systems", "aquaponicsystems"); IDS.put("auto-fabricators", "autofabricators"); + IDS.put("auto fabricators", "autofabricators"); IDS.put("bioreducing lichen", "bioreducinglichen"); + IDS.put("bio reducing lichen", "bioreducinglichen"); IDS.put("computer components", "computercomponents"); IDS.put("h.e. suits", "hazardousenvironmentsuits"); + IDS.put("hazardous environment suits", "hazardousenvironmentsuits"); IDS.put("land enrichment systems", "landenrichmentsystems"); + IDS.put("terrain enrichment systems", "landenrichmentsystems"); IDS.put("muon imager", "mu_tom_imager"); IDS.put("resonating separators", "resonatingseparators"); IDS.put("robotics", "robotics"); @@ -125,46 +134,49 @@ public class ItemConverter { IDS.put("battle weapons", "battleweapons"); IDS.put("landmines", "landmines"); IDS.put("non-lethal weapons", "nonlethalweapons"); + IDS.put("non lethal weapons", "nonlethalweapons"); IDS.put("personal weapons", "personalweapons"); IDS.put("reactive armour", "reactivearmour"); - IDS.put("Hydrogen Peroxide", "hydrogen_peroxide"); - IDS.put("Liquid Oxygen", "liquid_oxygen"); - IDS.put("Water", "water"); - IDS.put("Survival Equipment", "survival_equipment"); - IDS.put("CMM Composite", "cmm_composite"); - IDS.put("Insulating Membrane", "insulating_membrane"); - IDS.put("Emergency Power Cells", "emergency_power_cells"); - IDS.put("Exhaust Manifold", "exhaust_manifold"); - IDS.put("HN Shock Mount", "hn_shock_mount"); - IDS.put("Advanced Medicines", "advanced_medicines"); - IDS.put("Praseodymium", "praseodymium"); - IDS.put("Samarium", "samarium"); - IDS.put("Low Temperature Diamond", "low_temperature_diamond"); - IDS.put("Micro Controllers", "micro_controllers"); - IDS.put("Conductive Fabrics", "conductive_fabrics"); - IDS.put("Lithium Hydroxide", "lithium_hydroxide"); - IDS.put("Methane Clathrate", "methane_clathrate"); - IDS.put("Military Grade Fabrics", "military_grade_fabrics"); - IDS.put("Heatsink Interlink", "heatsink_interlink"); - IDS.put("Magnetic Emitter Coil", "magnetic_emitter_coil"); - IDS.put("Power Converter", "power_converter"); - IDS.put("Energy Grid Assembly", "power_grid_assembly"); - IDS.put("Bromellite", "bromellite"); - IDS.put("Methanol Monohydrate", "methanol_monohydrate_crystals"); - IDS.put("Hardware Diagnostic Sensor", "diagnostic_sensor"); - IDS.put("Medical Diagnostic Equipment", "medical_diagnostic_equipment"); - IDS.put("Reinforced Mounting Plate", "reinforced_mounting_plate"); - IDS.put("Articulation Motors", "articulation_motors"); - IDS.put("Modular Terminals", "modular_terminals"); - IDS.put("Power Transfer Conduits", "power_transfer_conduits"); - IDS.put("Radiation Baffle", "radiation_baffle"); - IDS.put("Ion Distributor", "ion_distributor"); - IDS.put("Nanobreakers", "nanobreakers"); - IDS.put("Telemetry Suite", "telemetry_suite"); - IDS.put("Jadeite", "jadeite"); - IDS.put("Moissanite", "moissanite"); - IDS.put("Taaffeite", "taaffeite"); + IDS.put("hydrogen peroxide", "hydrogen_peroxide"); + IDS.put("liquid oxygen", "liquid_oxygen"); + IDS.put("water", "water"); + IDS.put("survival equipment", "survival_equipment"); + IDS.put("cmm composite", "cmm_composite"); + IDS.put("c m m composite", "cmm_composite"); + IDS.put("insulating membrane", "insulating_membrane"); + IDS.put("emergency power cells", "emergency_power_cells"); + IDS.put("exhaust manifold", "exhaust_manifold"); + IDS.put("hn shock mount", "hn_shock_mount"); + IDS.put("h n shock mount", "hn_shock_mount"); + IDS.put("advanced medicines", "advanced_medicines"); + IDS.put("praseodymium", "praseodymium"); + IDS.put("samarium", "samarium"); + IDS.put("low temperature diamond", "low_temperature_diamond"); + IDS.put("micro controllers", "micro_controllers"); + IDS.put("conductive fabrics", "conductive_fabrics"); + IDS.put("lithium hydroxide", "lithium_hydroxide"); + IDS.put("methane clathrate", "methane_clathrate"); + IDS.put("military grade fabrics", "military_grade_fabrics"); + IDS.put("heatsink interlink", "heatsink_interlink"); + IDS.put("magnetic emitter coil", "magnetic_emitter_coil"); + IDS.put("power converter", "power_converter"); + IDS.put("energy grid assembly", "power_grid_assembly"); + IDS.put("bromellite", "bromellite"); + IDS.put("methanol monohydrate", "methanol_monohydrate_crystals"); + IDS.put("hardware diagnostic sensor", "diagnostic_sensor"); + IDS.put("medical diagnostic equipment", "medical_diagnostic_equipment"); + IDS.put("reinforced mounting plate", "reinforced_mounting_plate"); + IDS.put("articulation motors", "articulation_motors"); + IDS.put("modular terminals", "modular_terminals"); + IDS.put("power transfer conduits", "power_transfer_conduits"); + IDS.put("radiation baffle", "radiation_baffle"); + IDS.put("ion distributor", "ion_distributor"); + IDS.put("nanobreakers", "nanobreakers"); + IDS.put("telemetry suite", "telemetry_suite"); + IDS.put("jadeite", "jadeite"); + IDS.put("moissanite", "moissanite"); + IDS.put("taaffeite", "taaffeite"); } public static String getItemId(String name){ diff --git a/utils/src/test/resources/edce/edce_v22.json b/utils/src/test/resources/edce/edce_v22.json new file mode 100644 index 0000000..cf3eeed --- /dev/null +++ b/utils/src/test/resources/edce/edce_v22.json @@ -0,0 +1,14116 @@ +{ + "commander": { + "id": 126367, + "name": "MoHax", + "credits": 269123266, + "debt": 0, + "currentShipId": 27, + "alive": true, + "docked": true, + "rank": { + "combat": 6, + "trade": 7, + "explore": 4, + "crime": 0, + "service": 0, + "empire": 5, + "federation": 9, + "power": 5, + "cqc": 0 + } + }, + "lastSystem": { + "id": "76198", + "name": "Veroandi", + "faction": "Independent" + }, + "lastStarport": { + "id": "3223903232", + "name": "Panshin Hub", + "faction": "Independent", + "commodities": [ + { + "id": "128049204", + "name": "Explosives", + "cost_min": 258.47886956522, + "cost_max": 487.52113043478, + "cost_mean": "261.00", + "homebuy": "59", + "homesell": "55", + "consumebuy": "4", + "baseCreationQty": 73.6, + "baseConsumptionQty": 0, + "capacity": 40293, + "buyPrice": 154, + "sellPrice": 143, + "meanPrice": 261, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 40293, + "consumptionQty": 0, + "targetStock": 40293, + "stock": 37122.03295, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.1400", + "sec_illegal_min": "1.21", + "sec_illegal_max": "2.69", + "stolenmod": "0.7500" + }, + { + "id": "128049202", + "name": "Hydrogen Fuel", + "cost_min": 113.65947826087, + "cost_max": "164.00", + "cost_mean": "110.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 200, + "baseConsumptionQty": 200, + "capacity": 273856, + "buyPrice": 104, + "sellPrice": 99, + "meanPrice": 110, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 218982, + "consumptionQty": 54874, + "targetStock": 232699, + "stock": 136347, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.3000", + "sec_illegal_min": "1.13", + "sec_illegal_max": "2.10", + "stolenmod": "0.7500" + }, + { + "id": "128673850", + "name": "Hydrogen Peroxide", + "cost_min": "589.00", + "cost_max": 846.32369565217, + "cost_mean": "917.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 812.6, + "capacity": 889723, + "buyPrice": 0, + "sellPrice": 847, + "meanPrice": 917, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 889723, + "targetStock": 222430, + "stock": 0, + "demand": 667293, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.2700", + "sec_illegal_min": "1.14", + "sec_illegal_max": "2.19", + "stolenmod": "0.7500" + }, + { + "id": "128673851", + "name": "Liquid Oxygen", + "cost_min": "223.00", + "cost_max": 391.43752173913, + "cost_mean": "263.00", + "homebuy": "51", + "homesell": "46", + "consumebuy": "5", + "baseCreationQty": 10.6, + "baseConsumptionQty": 421.6, + "capacity": 470318, + "buyPrice": 0, + "sellPrice": 382, + "meanPrice": 263, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 8705, + "consumptionQty": 461613, + "targetStock": 124108, + "stock": 0, + "demand": 337610, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0700", + "sec_illegal_min": "1.25", + "sec_illegal_max": "3.04", + "stolenmod": "0.7500" + }, + { + "id": "128049203", + "name": "Mineral Oil", + "cost_min": 155.24730434783, + "cost_max": 355.75269565217, + "cost_mean": "181.00", + "homebuy": "46", + "homesell": "41", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 194.2, + "capacity": 212634, + "buyPrice": 0, + "sellPrice": 156, + "meanPrice": 181, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 212634, + "targetStock": 53158, + "stock": 0, + "demand": 39869, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0300", + "sec_illegal_min": "1.21", + "sec_illegal_max": "2.69", + "stolenmod": "0.7500" + }, + { + "id": "128672305", + "name": "Surface Stabilisers", + "cost_min": 473.77595652174, + "cost_max": 769.22404347826, + "cost_mean": "467.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 41.8, + "baseConsumptionQty": 0, + "capacity": 34326, + "buyPrice": 329, + "sellPrice": 313, + "meanPrice": 467, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 34326, + "consumptionQty": 0, + "targetStock": 34326, + "stock": 34326, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.2500", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128049166", + "name": "Water", + "cost_min": "124.00", + "cost_max": 281.05565217391, + "cost_mean": "120.00", + "homebuy": "18", + "homesell": "10", + "consumebuy": "8", + "baseCreationQty": 0, + "baseConsumptionQty": 163, + "capacity": 178470, + "buyPrice": 0, + "sellPrice": 124, + "meanPrice": 120, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 178470, + "targetStock": 44617, + "stock": 0, + "demand": 33463.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Chemicals", + "volumescale": "1.0000", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128049241", + "name": "Clothing", + "cost_min": 272.91008695652, + "cost_max": "463.00", + "cost_mean": "285.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 280, + "baseConsumptionQty": 70, + "capacity": 95851, + "buyPrice": 228, + "sellPrice": 212, + "meanPrice": 285, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 76645, + "consumptionQty": 19206, + "targetStock": 81446, + "stock": 47716, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1500", + "sec_illegal_min": "1.20", + "sec_illegal_max": "2.65", + "stolenmod": "0.7500" + }, + { + "id": "128049240", + "name": "Consumer Technology", + "cost_min": "6561.00", + "cost_max": 7349.3513043478, + "cost_mean": "6769.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 13335, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 6769, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 13335, + "targetStock": 3333, + "stock": 0, + "demand": 2585.46699, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.1000", + "sec_illegal_min": "1.01", + "sec_illegal_max": "1.11", + "stolenmod": "0.7500" + }, + { + "id": "128049238", + "name": "Domestic Appliances", + "cost_min": 473.77595652174, + "cost_max": "716.00", + "cost_mean": "487.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 16.8, + "baseConsumptionQty": 41.8, + "capacity": 10334, + "buyPrice": 0, + "sellPrice": 474, + "meanPrice": 487, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 4599, + "consumptionQty": 5735, + "targetStock": 6032, + "stock": 0, + "demand": 1075.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128682048", + "name": "Survival Equipment", + "cost_min": 473.77595652174, + "cost_max": "716.00", + "cost_mean": "485.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 95.2, + "baseConsumptionQty": 0, + "capacity": 26060, + "buyPrice": 329, + "sellPrice": 313, + "meanPrice": 485, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 26060, + "consumptionQty": 0, + "targetStock": 26060, + "stock": 26060, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Consumer Items", + "volumescale": "1.2500", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128049177", + "name": "Algae", + "cost_min": "135.00", + "cost_max": 298.92939130435, + "cost_mean": "137.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 2016.8, + "capacity": 553337, + "buyPrice": 0, + "sellPrice": 135, + "meanPrice": 137, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 553337, + "targetStock": 138334, + "stock": 0, + "demand": 103750.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000", + "sec_illegal_min": "1.06", + "sec_illegal_max": "1.48", + "stolenmod": "0.7500" + }, + { + "id": "128049182", + "name": "Animalmeat", + "cost_min": "1286.00", + "cost_max": 1673.8210869565, + "cost_mean": "1292.00", + "homebuy": "80", + "homesell": "78", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 26614, + "buyPrice": 0, + "sellPrice": 1286, + "meanPrice": 1292, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 26614, + "targetStock": 6652, + "stock": 0, + "demand": 4990.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000", + "sec_illegal_min": "1.10", + "sec_illegal_max": "1.81", + "stolenmod": "0.7500" + }, + { + "id": "128049189", + "name": "Coffee", + "cost_min": "1286.00", + "cost_max": 1673.8210869565, + "cost_mean": "1279.00", + "homebuy": "80", + "homesell": "78", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 97, + "capacity": 6654, + "buyPrice": 0, + "sellPrice": 1286, + "meanPrice": 1279, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 6654, + "targetStock": 1662, + "stock": 0, + "demand": 1248, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4000", + "sec_illegal_min": "1.10", + "sec_illegal_max": "1.81", + "stolenmod": "0.7500" + }, + { + "id": "128049183", + "name": "Fish", + "cost_min": "403.00", + "cost_max": 615.978, + "cost_mean": "406.00", + "homebuy": "64", + "homesell": "60", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 271, + "capacity": 74354, + "buyPrice": 0, + "sellPrice": 403, + "meanPrice": 406, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 74354, + "targetStock": 18587, + "stock": 0, + "demand": 13941.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.2000", + "sec_illegal_min": "1.18", + "sec_illegal_max": "2.44", + "stolenmod": "0.7500" + }, + { + "id": "128049184", + "name": "Food Cartridges", + "cost_min": 104.36139130435, + "cost_max": "267.00", + "cost_mean": "105.00", + "homebuy": "30", + "homesell": "23", + "consumebuy": "7", + "baseCreationQty": 361.6, + "baseConsumptionQty": 90.4, + "capacity": 396910, + "buyPrice": 32, + "sellPrice": 25, + "meanPrice": 105, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 395917, + "consumptionQty": 993, + "targetStock": 396165, + "stock": 388171.1415, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0000", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128049178", + "name": "Fruit And Vegetables", + "cost_min": "315.00", + "cost_max": 505.08991304348, + "cost_mean": "312.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 350, + "capacity": 24008, + "buyPrice": 0, + "sellPrice": 315, + "meanPrice": 312, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 24008, + "targetStock": 6001, + "stock": 0, + "demand": 4501.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1500", + "sec_illegal_min": "1.20", + "sec_illegal_max": "2.65", + "stolenmod": "0.7500" + }, + { + "id": "128049180", + "name": "Grain", + "cost_min": "207.00", + "cost_max": 371.58017391304, + "cost_mean": "210.00", + "homebuy": "48", + "homesell": "43", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 584, + "capacity": 160229, + "buyPrice": 0, + "sellPrice": 207, + "meanPrice": 210, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 160229, + "targetStock": 40056, + "stock": 0, + "demand": 30043.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.0500", + "sec_illegal_min": "1.20", + "sec_illegal_max": "2.65", + "stolenmod": "0.7500" + }, + { + "id": "128049185", + "name": "Synthetic Meat", + "cost_min": "252.00", + "cost_max": 426.6772173913, + "cost_mean": "271.00", + "homebuy": "54", + "homesell": "49", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 226, + "capacity": 15503, + "buyPrice": 0, + "sellPrice": 252, + "meanPrice": 271, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 15503, + "targetStock": 3875, + "stock": 0, + "demand": 3005.77986, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.1000", + "sec_illegal_min": "1.23", + "sec_illegal_max": "2.88", + "stolenmod": "0.7500" + }, + { + "id": "128049188", + "name": "Tea", + "cost_min": "1459.00", + "cost_max": 1873.7669565217, + "cost_mean": "1467.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 88, + "capacity": 24145, + "buyPrice": 0, + "sellPrice": 1459, + "meanPrice": 1467, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 24145, + "targetStock": 6036, + "stock": 0, + "demand": 4527.25, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Foods", + "volumescale": "1.4200", + "sec_illegal_min": "1.09", + "sec_illegal_max": "1.76", + "stolenmod": "0.7500" + }, + { + "id": "128673856", + "name": "C M M Composite", + "cost_min": "2966.00", + "cost_max": 3573.6862608696, + "cost_mean": "3132.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 40, + "capacity": 43797, + "buyPrice": 0, + "sellPrice": 3574, + "meanPrice": 3132, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 43797, + "targetStock": 10949, + "stock": 0, + "demand": 32848, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.3400", + "sec_illegal_min": "1.05", + "sec_illegal_max": "1.37", + "stolenmod": "0.7500" + }, + { + "id": "128672302", + "name": "Ceramic Composites", + "cost_min": "192.00", + "cost_max": 355.75269565217, + "cost_mean": "232.00", + "homebuy": "46", + "homesell": "41", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 776.8, + "capacity": 850535, + "buyPrice": 0, + "sellPrice": 356, + "meanPrice": 232, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 850535, + "targetStock": 212633, + "stock": 0, + "demand": 637902, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0300", + "sec_illegal_min": "1.28", + "sec_illegal_max": "3.28", + "stolenmod": "0.7500" + }, + { + "id": "128673855", + "name": "Insulating Membrane", + "cost_min": "7498.00", + "cost_max": 8414.522826087, + "cost_mean": "7837.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 0.4, + "baseConsumptionQty": 19.2, + "capacity": 21352, + "buyPrice": 0, + "sellPrice": 8380, + "meanPrice": 7837, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 329, + "consumptionQty": 21023, + "targetStock": 5584, + "stock": 0, + "demand": 15565, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0600", + "sec_illegal_min": "1.02", + "sec_illegal_max": "1.15", + "stolenmod": "0.7500" + }, + { + "id": "128049197", + "name": "Polymers", + "cost_min": "152.00", + "cost_max": 311.88452173913, + "cost_mean": "171.00", + "homebuy": "35", + "homesell": "29", + "consumebuy": "7", + "baseCreationQty": 19.6, + "baseConsumptionQty": 780, + "capacity": 870134, + "buyPrice": 0, + "sellPrice": 225, + "meanPrice": 171, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 16096, + "consumptionQty": 854038, + "targetStock": 229605, + "stock": 0, + "demand": 390218, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.0000", + "sec_illegal_min": "1.23", + "sec_illegal_max": "2.88", + "stolenmod": "0.7500" + }, + { + "id": "128049199", + "name": "Semiconductors", + "cost_min": "889.00", + "cost_max": 1251.9782608696, + "cost_mean": "967.00", + "homebuy": "76", + "homesell": "74", + "consumebuy": "2", + "baseCreationQty": 2.6, + "baseConsumptionQty": 1055.2, + "capacity": 1157496, + "buyPrice": 0, + "sellPrice": 1241, + "meanPrice": 967, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 2136, + "consumptionQty": 1155360, + "targetStock": 290976, + "stock": 0, + "demand": 848744, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.3400", + "sec_illegal_min": "1.12", + "sec_illegal_max": "1.98", + "stolenmod": "0.7500" + }, + { + "id": "128049200", + "name": "Superconductors", + "cost_min": "6561.00", + "cost_max": 7463.6608695652, + "cost_mean": "6609.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 2.2, + "baseConsumptionQty": 108, + "capacity": 120059, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 6609, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 1807, + "consumptionQty": 118252, + "targetStock": 31370, + "stock": 0, + "demand": 23369, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Industrial Materials", + "volumescale": "1.1000", + "sec_illegal_min": "1.02", + "sec_illegal_max": "1.18", + "stolenmod": "0.7500" + }, + { + "id": "128064028", + "name": "Atmospheric Extractors", + "cost_min": 356.022, + "cost_max": "569.00", + "cost_mean": "357.00", + "homebuy": "64", + "homesell": "60", + "consumebuy": "4", + "baseCreationQty": 432.8, + "baseConsumptionQty": 0, + "capacity": 118471, + "buyPrice": 289, + "sellPrice": 270, + "meanPrice": 357, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 118471, + "consumptionQty": 0, + "targetStock": 118471, + "stock": 66342, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2000", + "sec_illegal_min": "1.18", + "sec_illegal_max": "2.44", + "stolenmod": "0.7500" + }, + { + "id": "128672309", + "name": "Building Fabricators", + "cost_min": 994.572, + "cost_max": "1344.00", + "cost_mean": "980.00", + "homebuy": "78", + "homesell": "76", + "consumebuy": "2", + "baseCreationQty": 8.8, + "baseConsumptionQty": 0, + "capacity": 7227, + "buyPrice": 780, + "sellPrice": 756, + "meanPrice": 980, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 7227, + "consumptionQty": 0, + "targetStock": 7227, + "stock": 7227, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.3700", + "sec_illegal_min": "1.11", + "sec_illegal_max": "1.89", + "stolenmod": "0.7500" + }, + { + "id": "128049222", + "name": "Crop Harvesters", + "cost_min": 2041.3407391304, + "cost_max": "2553.00", + "cost_mean": "2021.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 514.4, + "baseConsumptionQty": 0, + "capacity": 422414, + "buyPrice": 1912, + "sellPrice": 1857, + "meanPrice": 2021, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 422414, + "consumptionQty": 0, + "targetStock": 422414, + "stock": 236549, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.4400", + "sec_illegal_min": "1.06", + "sec_illegal_max": "1.46", + "stolenmod": "0.7500" + }, + { + "id": "128673861", + "name": "Emergency Power Cells", + "cost_min": "889.00", + "cost_max": 1207.1086956522, + "cost_mean": "1011.00", + "homebuy": "76", + "homesell": "74", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 52.8, + "capacity": 43360, + "buyPrice": 0, + "sellPrice": 1208, + "meanPrice": 1011, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 43360, + "targetStock": 10840, + "stock": 0, + "demand": 32520, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.3400", + "sec_illegal_min": "1.12", + "sec_illegal_max": "1.98", + "stolenmod": "0.7500" + }, + { + "id": "128673866", + "name": "Exhaust Manifold", + "cost_min": "383.00", + "cost_max": 590.846, + "cost_mean": "479.00", + "homebuy": "63", + "homesell": "59", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 113.6, + "capacity": 93288, + "buyPrice": 0, + "sellPrice": 591, + "meanPrice": 479, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 93288, + "targetStock": 23322, + "stock": 0, + "demand": 69966, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1900", + "sec_illegal_min": "1.18", + "sec_illegal_max": "2.48", + "stolenmod": "0.7500" + }, + { + "id": "128672307", + "name": "Geological Equipment", + "cost_min": 1673.008, + "cost_max": "2134.00", + "cost_mean": "1661.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 300, + "baseConsumptionQty": 0, + "capacity": 246354, + "buyPrice": 1379, + "sellPrice": 1339, + "meanPrice": 1661, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 246354, + "consumptionQty": 0, + "targetStock": 246354, + "stock": 246354, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.4500", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.28", + "stolenmod": "0.7500" + }, + { + "id": "128673860", + "name": "H N Shock Mount", + "cost_min": 447.184, + "cost_max": "683.00", + "cost_mean": "406.00", + "homebuy": "68", + "homesell": "65", + "consumebuy": "3", + "baseCreationQty": 176, + "baseConsumptionQty": 0, + "capacity": 144528, + "buyPrice": 315, + "sellPrice": 300, + "meanPrice": 406, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 144528, + "consumptionQty": 0, + "targetStock": 144528, + "stock": 110960.06865, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2400", + "sec_illegal_min": "1.16", + "sec_illegal_max": "2.30", + "stolenmod": "0.7500" + }, + { + "id": "128049220", + "name": "Heliostatic Furnaces", + "cost_min": 161.95791304348, + "cost_max": 364.04208695652, + "cost_mean": "236.00", + "homebuy": "47", + "homesell": "42", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 61.4, + "capacity": 67229, + "buyPrice": 0, + "sellPrice": 162, + "meanPrice": 236, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 67229, + "targetStock": 16807, + "stock": 0, + "demand": 13033.83489, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.0400", + "sec_illegal_min": "1.22", + "sec_illegal_max": "2.78", + "stolenmod": "0.7500" + }, + { + "id": "128049223", + "name": "Marine Supplies", + "cost_min": 4002.3748695652, + "cost_max": "4723.00", + "cost_mean": "3916.00", + "homebuy": "89", + "homesell": "88", + "consumebuy": "1", + "baseCreationQty": 308, + "baseConsumptionQty": 0, + "capacity": 252923, + "buyPrice": 3860, + "sellPrice": 3799, + "meanPrice": 3916, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 252923, + "consumptionQty": 0, + "targetStock": 252923, + "stock": 141635, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2400", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.28", + "stolenmod": "0.7500" + }, + { + "id": "128049221", + "name": "Mineral Extractors", + "cost_min": 486.25404347826, + "cost_max": "790.00", + "cost_mean": "443.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 302.4, + "baseConsumptionQty": 0, + "capacity": 248325, + "buyPrice": 342, + "sellPrice": 326, + "meanPrice": 443, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 248325, + "consumptionQty": 0, + "targetStock": 248325, + "stock": 201486.33527, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2700", + "sec_illegal_min": "1.14", + "sec_illegal_max": "2.19", + "stolenmod": "0.7500" + }, + { + "id": "128049217", + "name": "Power Generators", + "cost_min": 443.53595652174, + "cost_max": "716.00", + "cost_mean": "458.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 418.4, + "baseConsumptionQty": 21, + "capacity": 366575, + "buyPrice": 397, + "sellPrice": 378, + "meanPrice": 458, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 343581, + "consumptionQty": 22994, + "targetStock": 349329, + "stock": 198146, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.2500", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128672313", + "name": "Skimer Components", + "cost_min": 841.36843478261, + "cost_max": "1203.00", + "cost_mean": "859.00", + "homebuy": "76", + "homesell": "74", + "consumebuy": "2", + "baseCreationQty": 40, + "baseConsumptionQty": 0, + "capacity": 10950, + "buyPrice": 643, + "sellPrice": 623, + "meanPrice": 859, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 10950, + "consumptionQty": 0, + "targetStock": 10950, + "stock": 10950, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.3500", + "sec_illegal_min": "1.11", + "sec_illegal_max": "1.95", + "stolenmod": "0.7500" + }, + { + "id": "128672308", + "name": "Thermal Cooling Units", + "cost_min": 258.47886956522, + "cost_max": "446.00", + "cost_mean": "256.00", + "homebuy": "59", + "homesell": "55", + "consumebuy": "4", + "baseCreationQty": 29.6, + "baseConsumptionQty": 0, + "capacity": 24307, + "buyPrice": 154, + "sellPrice": 143, + "meanPrice": 256, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 24307, + "consumptionQty": 0, + "targetStock": 24307, + "stock": 24307, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400", + "sec_illegal_min": "1.21", + "sec_illegal_max": "2.69", + "stolenmod": "0.7500" + }, + { + "id": "128049218", + "name": "Water Purifiers", + "cost_min": 258.47886956522, + "cost_max": "446.00", + "cost_mean": "258.00", + "homebuy": "59", + "homesell": "55", + "consumebuy": "4", + "baseCreationQty": 29.6, + "baseConsumptionQty": 7.4, + "capacity": 32410, + "buyPrice": 218, + "sellPrice": 202, + "meanPrice": 258, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 24307, + "consumptionQty": 8103, + "targetStock": 26332, + "stock": 15633, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Machinery", + "volumescale": "1.1400", + "sec_illegal_min": "1.21", + "sec_illegal_max": "2.69", + "stolenmod": "0.7500" + }, + { + "id": "128682046", + "name": "Advanced Medicines", + "cost_min": "1136.00", + "cost_max": 1510.4237391304, + "cost_mean": "1259.00", + "homebuy": "78", + "homesell": "76", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 107, + "capacity": 29358, + "buyPrice": 0, + "sellPrice": 1451, + "meanPrice": 1259, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 29358, + "targetStock": 7339, + "stock": 0, + "demand": 19444, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.3800", + "sec_illegal_min": "1.10", + "sec_illegal_max": "1.87", + "stolenmod": "0.7500" + }, + { + "id": "128049210", + "name": "Basic Medicines", + "cost_min": 268.17408695652, + "cost_max": "463.00", + "cost_mean": "279.00", + "homebuy": "60", + "homesell": "56", + "consumebuy": "4", + "baseCreationQty": 140, + "baseConsumptionQty": 98, + "capacity": 40042, + "buyPrice": 216, + "sellPrice": 201, + "meanPrice": 279, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 38323, + "consumptionQty": 1719, + "targetStock": 38752, + "stock": 21884, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1500", + "sec_illegal_min": "1.20", + "sec_illegal_max": "2.65", + "stolenmod": "0.7500" + }, + { + "id": "128049209", + "name": "Performance Enhancers", + "cost_min": "6561.00", + "cost_max": 7448.2730434783, + "cost_mean": "6816.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 4735, + "buyPrice": 0, + "sellPrice": 6561, + "meanPrice": 6816, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 4735, + "targetStock": 1183, + "stock": 0, + "demand": 918.17424, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.26", + "stolenmod": "0.7500" + }, + { + "id": "128049669", + "name": "Progenitor Cells", + "cost_min": "6561.00", + "cost_max": 7416.3982608696, + "cost_mean": "6779.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 27, + "capacity": 7409, + "buyPrice": 0, + "sellPrice": 7231, + "meanPrice": 6779, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 7409, + "targetStock": 1851, + "stock": 0, + "demand": 4673, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Medicines", + "volumescale": "1.1000", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.26", + "stolenmod": "0.7500" + }, + { + "id": "128049176", + "name": "Aluminium", + "cost_min": "330.00", + "cost_max": 525.22747826087, + "cost_mean": "340.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 332.2, + "baseConsumptionQty": 1328.8, + "capacity": 1727710, + "buyPrice": 0, + "sellPrice": 423, + "meanPrice": 340, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 272796, + "consumptionQty": 1454914, + "targetStock": 636524, + "stock": 0, + "demand": 795414, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1600", + "sec_illegal_min": "1.20", + "sec_illegal_max": "2.60", + "stolenmod": "0.7500" + }, + { + "id": "128049168", + "name": "Beryllium", + "cost_min": "8017.00", + "cost_max": 8953.1556521739, + "cost_mean": "8288.00", + "homebuy": "93", + "homesell": "92", + "consumebuy": "1", + "baseCreationQty": 13.8, + "baseConsumptionQty": 46.4, + "capacity": 62137, + "buyPrice": 0, + "sellPrice": 8490, + "meanPrice": 8288, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 11333, + "consumptionQty": 50804, + "targetStock": 24034, + "stock": 0, + "demand": 29664, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0400", + "sec_illegal_min": "1.02", + "sec_illegal_max": "1.15", + "stolenmod": "0.7500" + }, + { + "id": "128049162", + "name": "Cobalt", + "cost_min": "701.00", + "cost_max": 981.54782608696, + "cost_mean": "647.00", + "homebuy": "73", + "homesell": "70", + "consumebuy": "3", + "baseCreationQty": 32.4, + "baseConsumptionQty": 129.6, + "capacity": 168508, + "buyPrice": 0, + "sellPrice": 701, + "meanPrice": 647, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 26607, + "consumptionQty": 141901, + "targetStock": 62082, + "stock": 0, + "demand": 26606.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3000", + "sec_illegal_min": "1.13", + "sec_illegal_max": "2.10", + "stolenmod": "0.7500" + }, + { + "id": "128049175", + "name": "Copper", + "cost_min": "472.00", + "cost_max": 702.68956521739, + "cost_mean": "481.00", + "homebuy": "67", + "homesell": "64", + "consumebuy": "3", + "baseCreationQty": 116, + "baseConsumptionQty": 371.2, + "capacity": 501687, + "buyPrice": 0, + "sellPrice": 472, + "meanPrice": 481, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 95257, + "consumptionQty": 406430, + "targetStock": 196864, + "stock": 0, + "demand": 76205.75, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2300", + "sec_illegal_min": "1.16", + "sec_illegal_max": "2.33", + "stolenmod": "0.7500" + }, + { + "id": "128049170", + "name": "Gallium", + "cost_min": "5028.00", + "cost_max": 5822.7702608696, + "cost_mean": "5135.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 66, + "baseConsumptionQty": 396, + "capacity": 487782, + "buyPrice": 0, + "sellPrice": 5507, + "meanPrice": 5135, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 54198, + "consumptionQty": 433584, + "targetStock": 162594, + "stock": 0, + "demand": 258955, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1800", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.24", + "stolenmod": "0.7500" + }, + { + "id": "128049154", + "name": "Gold", + "cost_min": "9164.00", + "cost_max": 10140.858826087, + "cost_mean": "9401.00", + "homebuy": "94", + "homesell": "93", + "consumebuy": "1", + "baseCreationQty": 4.2, + "baseConsumptionQty": 166.4, + "capacity": 186792, + "buyPrice": 0, + "sellPrice": 10083, + "meanPrice": 9401, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 4599, + "consumptionQty": 182193, + "targetStock": 50147, + "stock": 0, + "demand": 133984, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000", + "sec_illegal_min": "1.01", + "sec_illegal_max": "1.09", + "stolenmod": "0.7500" + }, + { + "id": "128049169", + "name": "Indium", + "cost_min": "5743.00", + "cost_max": 6578.3104347826, + "cost_mean": "5727.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 59.6, + "baseConsumptionQty": 357.6, + "capacity": 440482, + "buyPrice": 0, + "sellPrice": 6214, + "meanPrice": 5727, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 48943, + "consumptionQty": 391539, + "targetStock": 146827, + "stock": 0, + "demand": 224690, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1400", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.22", + "stolenmod": "0.7500" + }, + { + "id": "128049173", + "name": "Lithium", + "cost_min": "1555.00", + "cost_max": 1983.1180869565, + "cost_mean": "1596.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 166.4, + "baseConsumptionQty": 132.8, + "capacity": 282048, + "buyPrice": 0, + "sellPrice": 1584, + "meanPrice": 1596, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 136644, + "consumptionQty": 145404, + "targetStock": 172995, + "stock": 0, + "demand": 66791, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.4300", + "sec_illegal_min": "1.09", + "sec_illegal_max": "1.74", + "stolenmod": "0.7500" + }, + { + "id": "128671118", + "name": "Osmium", + "cost_min": "6561.00", + "cost_max": 7463.6608695652, + "cost_mean": "7591.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 215.2, + "capacity": 235625, + "buyPrice": 0, + "sellPrice": 7464, + "meanPrice": 7591, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 235625, + "targetStock": 58906, + "stock": 0, + "demand": 176719, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1000", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.22", + "stolenmod": "0.7500" + }, + { + "id": "128049153", + "name": "Palladium", + "cost_min": "12815.00", + "cost_max": 13928.564521739, + "cost_mean": "13298.00", + "homebuy": "96", + "homesell": "96", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 19.2, + "capacity": 21023, + "buyPrice": 0, + "sellPrice": 13902, + "meanPrice": 13298, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 21023, + "targetStock": 5255, + "stock": 0, + "demand": 15483, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000", + "sec_illegal_min": "1.01", + "sec_illegal_max": "1.08", + "stolenmod": "0.7500" + }, + { + "id": "128049152", + "name": "Platinum", + "cost_min": "17936.00", + "cost_max": 19197.218434783, + "cost_mean": "19279.00", + "homebuy": "97", + "homesell": "97", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 9.6, + "capacity": 10512, + "buyPrice": 0, + "sellPrice": 19198, + "meanPrice": 19279, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 10512, + "targetStock": 2628, + "stock": 0, + "demand": 7884, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": "0", + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.0000", + "sec_illegal_min": "1.01", + "sec_illegal_max": "1.04", + "stolenmod": "0.7500" + }, + { + "id": "128673845", + "name": "Praseodymium", + "cost_min": "6138.00", + "cost_max": 7014.412173913, + "cost_mean": "7156.00", + "homebuy": "92", + "homesell": "91", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 113.6, + "capacity": 124382, + "buyPrice": 0, + "sellPrice": 7015, + "meanPrice": 7156, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 124382, + "targetStock": 31095, + "stock": 0, + "demand": 93287, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1200", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.28", + "stolenmod": "0.7500" + }, + { + "id": "128673847", + "name": "Samarium", + "cost_min": "5373.00", + "cost_max": 6195.6016956522, + "cost_mean": "6330.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 125.6, + "capacity": 137521, + "buyPrice": 0, + "sellPrice": 6196, + "meanPrice": 6330, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 137521, + "targetStock": 34380, + "stock": 0, + "demand": 103141, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.1600", + "sec_illegal_min": "1.04", + "sec_illegal_max": "1.31", + "stolenmod": "0.7500" + }, + { + "id": "128049155", + "name": "Silver", + "cost_min": "4705.00", + "cost_max": 5474.2608695652, + "cost_mean": "4775.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 7, + "baseConsumptionQty": 278.4, + "capacity": 310572, + "buyPrice": 0, + "sellPrice": 5430, + "meanPrice": 4775, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 5749, + "consumptionQty": 304823, + "targetStock": 81954, + "stock": 0, + "demand": 222958, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2000", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.24", + "stolenmod": "0.7500" + }, + { + "id": "128049171", + "name": "Tantalum", + "cost_min": "3858.00", + "cost_max": 4553.8573043478, + "cost_mean": "3962.00", + "homebuy": "89", + "homesell": "88", + "consumebuy": "1", + "baseCreationQty": 8.2, + "baseConsumptionQty": 486.4, + "capacity": 539297, + "buyPrice": 0, + "sellPrice": 4484, + "meanPrice": 3962, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 6734, + "consumptionQty": 532563, + "targetStock": 139874, + "stock": 0, + "demand": 374507, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.2600", + "sec_illegal_min": "1.04", + "sec_illegal_max": "1.29", + "stolenmod": "0.7500" + }, + { + "id": "128049174", + "name": "Titanium", + "cost_min": "1004.00", + "cost_max": 1342.4050869565, + "cost_mean": "1006.00", + "homebuy": "77", + "homesell": "75", + "consumebuy": "2", + "baseCreationQty": 119, + "baseConsumptionQty": 667.2, + "capacity": 828244, + "buyPrice": 0, + "sellPrice": 1183, + "meanPrice": 1006, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 97721, + "consumptionQty": 730523, + "targetStock": 280351, + "stock": 0, + "demand": 406425, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3600", + "sec_illegal_min": "1.11", + "sec_illegal_max": "1.92", + "stolenmod": "0.7500" + }, + { + "id": "128049172", + "name": "Uranium", + "cost_min": "2603.00", + "cost_max": 3169.14, + "cost_mean": "2705.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 110.4, + "baseConsumptionQty": 662.4, + "capacity": 815925, + "buyPrice": 0, + "sellPrice": 2944, + "meanPrice": 2705, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 90658, + "consumptionQty": 725267, + "targetStock": 271974, + "stock": 0, + "demand": 433164, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Metals", + "volumescale": "1.3800", + "sec_illegal_min": "1.05", + "sec_illegal_max": "1.39", + "stolenmod": "0.7500" + }, + { + "id": "128049165", + "name": "Bauxite", + "cost_min": 116.11547826087, + "cost_max": 311.88452173913, + "cost_mean": "120.00", + "homebuy": "35", + "homesell": "29", + "consumebuy": "7", + "baseCreationQty": 0, + "baseConsumptionQty": 292.6, + "capacity": 320370, + "buyPrice": 0, + "sellPrice": 312, + "meanPrice": 120, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 320370, + "targetStock": 80092, + "stock": 0, + "demand": 240278, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000", + "sec_illegal_min": "1.24", + "sec_illegal_max": "2.93", + "stolenmod": "0.7500" + }, + { + "id": "128049156", + "name": "Bertrandite", + "cost_min": 2334.1883478261, + "cost_max": 2985.8116521739, + "cost_mean": "2374.00", + "homebuy": "85", + "homesell": "84", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 116.2, + "capacity": 127229, + "buyPrice": 0, + "sellPrice": 2954, + "meanPrice": 2374, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 127229, + "targetStock": 31807, + "stock": 0, + "demand": 91940, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4000", + "sec_illegal_min": "1.07", + "sec_illegal_max": "1.57", + "stolenmod": "0.7500" + }, + { + "id": "128049159", + "name": "Coltan", + "cost_min": 1286.7254782609, + "cost_max": 1771.2745217391, + "cost_mean": "1319.00", + "homebuy": "80", + "homesell": "78", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 184.2, + "capacity": 201682, + "buyPrice": 0, + "sellPrice": 1768, + "meanPrice": 1319, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 201682, + "targetStock": 50420, + "stock": 0, + "demand": 150342, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4100", + "sec_illegal_min": "1.10", + "sec_illegal_max": "1.79", + "stolenmod": "0.7500" + }, + { + "id": "128672294", + "name": "Cryolite", + "cost_min": 2041.3407391304, + "cost_max": 2653.6592608696, + "cost_mean": "2266.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 128.6, + "capacity": 140806, + "buyPrice": 0, + "sellPrice": 2654, + "meanPrice": 2266, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 140806, + "targetStock": 35201, + "stock": 0, + "demand": 105605, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4400", + "sec_illegal_min": "1.07", + "sec_illegal_max": "1.61", + "stolenmod": "0.7500" + }, + { + "id": "128049158", + "name": "Gallite", + "cost_min": 1788.6279565217, + "cost_max": 2358.3720434783, + "cost_mean": "1819.00", + "homebuy": "83", + "homesell": "81", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 142.6, + "capacity": 156134, + "buyPrice": 0, + "sellPrice": 2321, + "meanPrice": 1819, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 156134, + "targetStock": 39033, + "stock": 0, + "demand": 111398, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4600", + "sec_illegal_min": "1.08", + "sec_illegal_max": "1.66", + "stolenmod": "0.7500" + }, + { + "id": "128672295", + "name": "Goslarite", + "cost_min": 770.73408695652, + "cost_max": 1145.2659130435, + "cost_mean": "916.00", + "homebuy": "75", + "homesell": "73", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 138.8, + "capacity": 151974, + "buyPrice": 0, + "sellPrice": 1146, + "meanPrice": 916, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 151974, + "targetStock": 37993, + "stock": 0, + "demand": 113981, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.3300", + "sec_illegal_min": "1.12", + "sec_illegal_max": "2.01", + "stolenmod": "0.7500" + }, + { + "id": "128049157", + "name": "Indite", + "cost_min": 2041.3407391304, + "cost_max": 2653.6592608696, + "cost_mean": "2088.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 128.6, + "capacity": 140806, + "buyPrice": 0, + "sellPrice": 2649, + "meanPrice": 2088, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 140806, + "targetStock": 35201, + "stock": 0, + "demand": 104965, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4400", + "sec_illegal_min": "1.07", + "sec_illegal_max": "1.61", + "stolenmod": "0.7500" + }, + { + "id": "128049161", + "name": "Lepidolite", + "cost_min": 532.67630434783, + "cost_max": 846.32369565217, + "cost_mean": "544.00", + "homebuy": "70", + "homesell": "67", + "consumebuy": "3", + "baseCreationQty": 0, + "baseConsumptionQty": 189, + "capacity": 206938, + "buyPrice": 0, + "sellPrice": 842, + "meanPrice": 544, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 206938, + "targetStock": 51734, + "stock": 0, + "demand": 153313, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.2700", + "sec_illegal_min": "1.14", + "sec_illegal_max": "2.19", + "stolenmod": "0.7500" + }, + { + "id": "128673853", + "name": "Lithium Hydroxide", + "cost_min": 4585.7391304348, + "cost_max": 5474.2608695652, + "cost_mean": "5646.00", + "homebuy": "90", + "homesell": "89", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 10.4, + "capacity": 11388, + "buyPrice": 0, + "sellPrice": 5475, + "meanPrice": 5646, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 11388, + "targetStock": 2847, + "stock": 0, + "demand": 8541, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.2000", + "sec_illegal_min": "1.04", + "sec_illegal_max": "1.35", + "stolenmod": "0.7500" + }, + { + "id": "128673848", + "name": "Low Temperature Diamond", + "cost_min": "54000.00", + "cost_max": 57594.79173913, + "cost_mean": "57445.00", + "homebuy": "97", + "homesell": "97", + "consumebuy": "0", + "baseCreationQty": 0, + "baseConsumptionQty": 5, + "capacity": 5475, + "buyPrice": 0, + "sellPrice": 57595, + "meanPrice": 57445, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 5475, + "targetStock": 1368, + "stock": 0, + "demand": 4107, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000", + "sec_illegal_min": "1.00", + "sec_illegal_max": "1.03", + "stolenmod": "0.7500" + }, + { + "id": "128673854", + "name": "Methane Clathrate", + "cost_min": 319.003, + "cost_max": 567.997, + "cost_mean": "629.00", + "homebuy": "63", + "homesell": "59", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 90, + "capacity": 98542, + "buyPrice": 0, + "sellPrice": 568, + "meanPrice": 629, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 98542, + "targetStock": 24635, + "stock": 0, + "demand": 73907, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.1800", + "sec_illegal_min": "1.19", + "sec_illegal_max": "2.52", + "stolenmod": "0.7500" + }, + { + "id": "128668550", + "name": "Painite", + "cost_min": "35000.00", + "cost_max": 40834.347826087, + "cost_mean": "40508.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 5, + "capacity": 1369, + "buyPrice": 0, + "sellPrice": 40835, + "meanPrice": 40508, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1369, + "targetStock": 341, + "stock": 0, + "demand": 1028, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.0000", + "sec_illegal_min": "1.01", + "sec_illegal_max": "1.04", + "stolenmod": "0.7500" + }, + { + "id": "128672297", + "name": "Pyrophyllite", + "cost_min": 1374.2330434783, + "cost_max": 1873.7669565217, + "cost_mean": "1565.00", + "homebuy": "81", + "homesell": "79", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 119, + "capacity": 130294, + "buyPrice": 0, + "sellPrice": 1874, + "meanPrice": 1565, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 130294, + "targetStock": 32573, + "stock": 0, + "demand": 97721, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.4200", + "sec_illegal_min": "1.09", + "sec_illegal_max": "1.76", + "stolenmod": "0.7500" + }, + { + "id": "128049163", + "name": "Rutile", + "cost_min": 286.77252173913, + "cost_max": 525.22747826087, + "cost_mean": "299.00", + "homebuy": "61", + "homesell": "57", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 99.6, + "capacity": 109053, + "buyPrice": 0, + "sellPrice": 513, + "meanPrice": 299, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 109053, + "targetStock": 27263, + "stock": 0, + "demand": 78468, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.1600", + "sec_illegal_min": "1.20", + "sec_illegal_max": "2.60", + "stolenmod": "0.7500" + }, + { + "id": "128049160", + "name": "Uraninite", + "cost_min": 820.89130434783, + "cost_max": 1207.1086956522, + "cost_mean": "836.00", + "homebuy": "76", + "homesell": "74", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 132, + "capacity": 144528, + "buyPrice": 0, + "sellPrice": 1208, + "meanPrice": 836, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 144528, + "targetStock": 36132, + "stock": 0, + "demand": 108396, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Minerals", + "volumescale": "1.3400", + "sec_illegal_min": "1.12", + "sec_illegal_max": "1.98", + "stolenmod": "0.7500" + }, + { + "id": "128049214", + "name": "Beer", + "cost_min": "175.00", + "cost_max": 334.88452173913, + "cost_mean": "186.00", + "homebuy": "42", + "homesell": "36", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 755, + "capacity": 132393, + "buyPrice": 0, + "sellPrice": 175, + "meanPrice": 186, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 132393, + "targetStock": 33097, + "stock": 0, + "demand": 24824, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.0000", + "sec_illegal_min": "1.25", + "sec_illegal_max": "3.04", + "stolenmod": "0.7500" + }, + { + "id": "128049216", + "name": "Liquor", + "cost_min": 566.742, + "cost_max": "831.00", + "cost_mean": "587.00", + "homebuy": "71", + "homesell": "68", + "consumebuy": "3", + "baseCreationQty": 72, + "baseConsumptionQty": 35.8, + "capacity": 1847, + "buyPrice": 0, + "sellPrice": 567, + "meanPrice": 587, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 277, + "consumptionQty": 1570, + "targetStock": 669, + "stock": 0, + "demand": 294.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.2800", + "sec_illegal_min": "1.14", + "sec_illegal_max": "2.16", + "stolenmod": "0.7500" + }, + { + "id": "128049215", + "name": "Wine", + "cost_min": "252.00", + "cost_max": 426.6772173913, + "cost_mean": "260.00", + "homebuy": "54", + "homesell": "49", + "consumebuy": "5", + "baseCreationQty": 0, + "baseConsumptionQty": 452, + "capacity": 106759, + "buyPrice": 0, + "sellPrice": 252, + "meanPrice": 260, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 106759, + "targetStock": 26689, + "stock": 0, + "demand": 20017.5, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Narcotics", + "volumescale": "1.1000", + "sec_illegal_min": "1.23", + "sec_illegal_max": "2.88", + "stolenmod": "0.7500" + }, + { + "id": "128066403", + "name": "Drones", + "cost_min": "100.00", + "cost_max": "100.00", + "cost_mean": "101.00", + "homebuy": "100", + "homesell": "100", + "consumebuy": "1", + "baseCreationQty": 200, + "baseConsumptionQty": 0, + "capacity": 54874, + "buyPrice": 101, + "sellPrice": 100, + "meanPrice": 101, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 54874, + "consumptionQty": 0, + "targetStock": 54874, + "stock": 54874, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "NonMarketable", + "volumescale": "1.0000", + "sec_illegal_min": "1.00", + "sec_illegal_max": "0.99", + "stolenmod": "0.7500" + }, + { + "id": "128049231", + "name": "Advanced Catalysers", + "cost_min": 2669.0367826087, + "cost_max": 3364.9632173913, + "cost_mean": "2947.00", + "homebuy": "86", + "homesell": "85", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 104.8, + "capacity": 114748, + "buyPrice": 0, + "sellPrice": 3365, + "meanPrice": 2947, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 114748, + "targetStock": 28687, + "stock": 0, + "demand": 86061, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3600", + "sec_illegal_min": "1.05", + "sec_illegal_max": "1.39", + "stolenmod": "0.7500" + }, + { + "id": "128049228", + "name": "Auto Fabricators", + "cost_min": "3612.00", + "cost_max": 4285.7520434783, + "cost_mean": "3734.00", + "homebuy": "88", + "homesell": "87", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 34.4, + "capacity": 37666, + "buyPrice": 0, + "sellPrice": 4153, + "meanPrice": 3734, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 37666, + "targetStock": 9416, + "stock": 0, + "demand": 24146, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2800", + "sec_illegal_min": "1.03", + "sec_illegal_max": "1.28", + "stolenmod": "0.7500" + }, + { + "id": "128049225", + "name": "Computer Components", + "cost_min": 473.77595652174, + "cost_max": "716.00", + "cost_mean": "513.00", + "homebuy": "69", + "homesell": "66", + "consumebuy": "3", + "baseCreationQty": 167.2, + "baseConsumptionQty": 0, + "capacity": 45768, + "buyPrice": 402, + "sellPrice": 383, + "meanPrice": 513, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 45768, + "consumptionQty": 0, + "targetStock": 45768, + "stock": 25630, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.2500", + "sec_illegal_min": "1.15", + "sec_illegal_max": "2.26", + "stolenmod": "0.7500" + }, + { + "id": "128049226", + "name": "Hazardous Environment Suits", + "cost_min": "274.00", + "cost_max": 455.09917391304, + "cost_mean": "340.00", + "homebuy": "56", + "homesell": "52", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 367.2, + "capacity": 402055, + "buyPrice": 0, + "sellPrice": 456, + "meanPrice": 340, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 402055, + "targetStock": 100513, + "stock": 0, + "demand": 301542, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1200", + "sec_illegal_min": "1.22", + "sec_illegal_max": "2.78", + "stolenmod": "0.7500" + }, + { + "id": "128673873", + "name": "Micro Controllers", + "cost_min": "3167.00", + "cost_max": 3794.6730434783, + "cost_mean": "3274.00", + "homebuy": "87", + "homesell": "86", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 19.2, + "capacity": 21023, + "buyPrice": 0, + "sellPrice": 3546, + "meanPrice": 3274, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 21023, + "targetStock": 5255, + "stock": 0, + "demand": 11181, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.3200", + "sec_illegal_min": "1.05", + "sec_illegal_max": "1.37", + "stolenmod": "0.7500" + }, + { + "id": "128049671", + "name": "Resonating Separators", + "cost_min": 5647.8460869565, + "cost_max": 6568.1539130435, + "cost_mean": "5958.00", + "homebuy": "91", + "homesell": "90", + "consumebuy": "1", + "baseCreationQty": 0, + "baseConsumptionQty": 59.6, + "capacity": 65258, + "buyPrice": 0, + "sellPrice": 5648, + "meanPrice": 5958, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 65258, + "targetStock": 16314, + "stock": 0, + "demand": 12651.77928, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.1400", + "sec_illegal_min": "1.02", + "sec_illegal_max": "1.18", + "stolenmod": "0.7500" + }, + { + "id": "128049227", + "name": "Robotics", + "cost_min": "1766.00", + "cost_max": 2226.992, + "cost_mean": "1856.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 60, + "capacity": 98543, + "buyPrice": 0, + "sellPrice": 2197, + "meanPrice": 1856, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 98543, + "targetStock": 24635, + "stock": 0, + "demand": 70287, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Technology", + "volumescale": "1.4500", + "sec_illegal_min": "1.08", + "sec_illegal_max": "1.69", + "stolenmod": "0.7500" + }, + { + "id": "128682044", + "name": "Conductive Fabrics", + "cost_min": "472.00", + "cost_max": 702.68956521739, + "cost_mean": "507.00", + "homebuy": "67", + "homesell": "64", + "consumebuy": "3", + "baseCreationQty": 4.6, + "baseConsumptionQty": 185.6, + "capacity": 206996, + "buyPrice": 0, + "sellPrice": 602, + "meanPrice": 507, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 3778, + "consumptionQty": 203218, + "targetStock": 54582, + "stock": 0, + "demand": 105126, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.2300", + "sec_illegal_min": "1.16", + "sec_illegal_max": "2.33", + "stolenmod": "0.7500" + }, + { + "id": "128049190", + "name": "Leather", + "cost_min": "175.00", + "cost_max": 334.88452173913, + "cost_mean": "205.00", + "homebuy": "42", + "homesell": "36", + "consumebuy": "6", + "baseCreationQty": 0, + "baseConsumptionQty": 1207.2, + "capacity": 1321788, + "buyPrice": 0, + "sellPrice": 290, + "meanPrice": 205, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1321788, + "targetStock": 330447, + "stock": 0, + "demand": 785652, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0000", + "sec_illegal_min": "1.23", + "sec_illegal_max": "2.88", + "stolenmod": "0.7500" + }, + { + "id": "128682045", + "name": "Military Grade Fabrics", + "cost_min": 723.65086956522, + "cost_max": 1087.3491304348, + "cost_mean": "708.00", + "homebuy": "74", + "homesell": "71", + "consumebuy": "3", + "baseCreationQty": 3, + "baseConsumptionQty": 0, + "capacity": 2464, + "buyPrice": 538, + "sellPrice": 514, + "meanPrice": 708, + "demandBracket": 0, + "stockBracket": 3, + "creationQty": 2464, + "consumptionQty": 0, + "targetStock": 2464, + "stock": 2464, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.3200", + "sec_illegal_min": "1.13", + "sec_illegal_max": "2.04", + "stolenmod": "0.7500" + }, + { + "id": "128049191", + "name": "Natural Fabrics", + "cost_min": "403.00", + "cost_max": 615.978, + "cost_mean": "439.00", + "homebuy": "64", + "homesell": "60", + "consumebuy": "4", + "baseCreationQty": 0, + "baseConsumptionQty": 324.8, + "capacity": 355631, + "buyPrice": 0, + "sellPrice": 403, + "meanPrice": 439, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 355631, + "targetStock": 88907, + "stock": 0, + "demand": 66681, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.2000", + "sec_illegal_min": "1.18", + "sec_illegal_max": "2.44", + "stolenmod": "0.7500" + }, + { + "id": "128049193", + "name": "Synthetic Fabrics", + "cost_min": "186.00", + "cost_max": 348.46330434783, + "cost_mean": "211.00", + "homebuy": "45", + "homesell": "40", + "consumebuy": "6", + "baseCreationQty": 13.6, + "baseConsumptionQty": 544.8, + "capacity": 607682, + "buyPrice": 0, + "sellPrice": 263, + "meanPrice": 211, + "demandBracket": 2, + "stockBracket": 0, + "creationQty": 11169, + "consumptionQty": 596513, + "targetStock": 160297, + "stock": 0, + "demand": 278051, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Textiles", + "volumescale": "1.0200", + "sec_illegal_min": "1.29", + "sec_illegal_max": "3.34", + "stolenmod": "0.7500" + }, + { + "id": "128049244", + "name": "Biowaste", + "cost_min": 36.267826086957, + "cost_max": "97.00", + "cost_mean": "63.00", + "homebuy": "27", + "homesell": "20", + "consumebuy": "7", + "baseCreationQty": 162, + "baseConsumptionQty": 0, + "capacity": 11087, + "buyPrice": 18, + "sellPrice": 13, + "meanPrice": 63, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 11087, + "consumptionQty": 0, + "targetStock": 11087, + "stock": 6207, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000", + "sec_illegal_min": "1.44", + "sec_illegal_max": "4.47", + "stolenmod": "0.7500" + }, + { + "id": "128049246", + "name": "Chemical Waste", + "cost_min": 38.897391304348, + "cost_max": 118.10260869565, + "cost_mean": "131.00", + "homebuy": "18", + "homesell": "10", + "consumebuy": "8", + "baseCreationQty": 0, + "baseConsumptionQty": 72.2, + "capacity": 19810, + "buyPrice": 0, + "sellPrice": 119, + "meanPrice": 131, + "demandBracket": 3, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 19810, + "targetStock": 4952, + "stock": 0, + "demand": 14858, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000", + "sec_illegal_min": "1.48", + "sec_illegal_max": "4.78", + "stolenmod": "0.7500" + }, + { + "id": "128049248", + "name": "Scrap", + "cost_min": 55.460869565217, + "cost_max": "120.00", + "cost_mean": "48.00", + "homebuy": "42", + "homesell": "36", + "consumebuy": "6", + "baseCreationQty": 362.4, + "baseConsumptionQty": 30.2, + "capacity": 132266, + "buyPrice": 40, + "sellPrice": 34, + "meanPrice": 48, + "demandBracket": 0, + "stockBracket": 2, + "creationQty": 99199, + "consumptionQty": 33067, + "targetStock": 107465, + "stock": 63813, + "demand": 1, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Waste ", + "volumescale": "1.0000", + "sec_illegal_min": "1.31", + "sec_illegal_max": "3.48", + "stolenmod": "0.7500" + }, + { + "id": "128049236", + "name": "Non Lethal Weapons", + "cost_min": "1766.00", + "cost_max": 2226.992, + "cost_mean": "1837.00", + "homebuy": "82", + "homesell": "80", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 75, + "capacity": 1443, + "buyPrice": 0, + "sellPrice": 1766, + "meanPrice": 1837, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 1443, + "targetStock": 360, + "stock": 0, + "demand": 279.950085, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4500", + "sec_illegal_min": "1.08", + "sec_illegal_max": "1.69", + "stolenmod": "0.7500" + }, + { + "id": "128049235", + "name": "Reactive Armour", + "cost_min": "2008.00", + "cost_max": 2501.5365217391, + "cost_mean": "2113.00", + "homebuy": "84", + "homesell": "82", + "consumebuy": "2", + "baseCreationQty": 0, + "baseConsumptionQty": 68, + "capacity": 3924, + "buyPrice": 0, + "sellPrice": 2008, + "meanPrice": 2113, + "demandBracket": 1, + "stockBracket": 0, + "creationQty": 0, + "consumptionQty": 3924, + "targetStock": 980, + "stock": 0, + "demand": 761.00928, + "rare_min_stock": "0", + "rare_max_stock": "0", + "market_id": null, + "parent_id": null, + "statusFlags": [], + "categoryname": "Weapons", + "volumescale": "1.4600", + "sec_illegal_min": "1.08", + "sec_illegal_max": "1.64", + "stolenmod": "0.7500" + } + ], + "modules": { + "128049488": { + "id": 128049488, + "category": "weapon", + "name": "Hpt_Railgun_Fixed_Small", + "cost": 51600, + "sku": null + }, + "128049493": { + "id": 128049493, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "cost": 512400, + "sku": null + }, + "128049492": { + "id": 128049492, + "category": "weapon", + "name": "Hpt_BasicMissileRack_Fixed_Small", + "cost": 72600, + "sku": null + }, + "128049501": { + "id": 128049501, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Medium", + "cost": 294080, + "sku": null + }, + "128671448": { + "id": 128671448, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small_Impulse", + "cost": 36390, + "sku": null + }, + "128049500": { + "id": 128049500, + "category": "weapon", + "name": "Hpt_MineLauncher_Fixed_Small", + "cost": 24260, + "sku": null + }, + "128049510": { + "id": 128049510, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "cost": 44800, + "sku": null + }, + "128049509": { + "id": 128049509, + "category": "weapon", + "name": "Hpt_AdvancedTorpPylon_Fixed_Small", + "cost": 11200, + "sku": null + }, + "128666725": { + "id": 128666725, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Medium", + "cost": 240400, + "sku": null + }, + "128666724": { + "id": 128666724, + "category": "weapon", + "name": "Hpt_DumbfireMissileRack_Fixed_Small", + "cost": 32175, + "sku": null + }, + "128049458": { + "id": 128049458, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Huge", + "cost": 1177600, + "sku": null + }, + "128681996": { + "id": 128681996, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Huge", + "cost": 6377600, + "sku": null + }, + "128049461": { + "id": 128049461, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Large", + "cost": 578436, + "sku": null + }, + "128049457": { + "id": 128049457, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Large", + "cost": 140400, + "sku": null + }, + "128049463": { + "id": 128049463, + "category": "weapon", + "name": "Hpt_MultiCannon_Turret_Medium", + "cost": 1292800, + "sku": null + }, + "128049459": { + "id": 128049459, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Small", + "cost": 14250, + "sku": null + }, + "128049460": { + "id": 128049460, + "category": "weapon", + "name": "Hpt_MultiCannon_Gimbal_Medium", + "cost": 57000, + "sku": null + }, + "128049444": { + "id": 128049444, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Huge", + "cost": 5401600, + "sku": null + }, + "128049441": { + "id": 128049441, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Huge", + "cost": 2700800, + "sku": null + }, + "128049447": { + "id": 128049447, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Large", + "cost": 16204800, + "sku": null + }, + "128671120": { + "id": 128671120, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Large", + "cost": 1350400, + "sku": null + }, + "128049445": { + "id": 128049445, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Small", + "cost": 506400, + "sku": null + }, + "128049446": { + "id": 128049446, + "category": "weapon", + "name": "Hpt_Cannon_Turret_Medium", + "cost": 4051200, + "sku": null + }, + "128671321": { + "id": 128671321, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Large", + "cost": 1751040, + "sku": null + }, + "128671322": { + "id": 128671322, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Large", + "cost": 5836800, + "sku": null + }, + "128049454": { + "id": 128049454, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Medium", + "cost": 1459200, + "sku": null + }, + "128049450": { + "id": 128049450, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Large", + "cost": 1167360, + "sku": null + }, + "128049453": { + "id": 128049453, + "category": "weapon", + "name": "Hpt_Slugshot_Turret_Small", + "cost": 182400, + "sku": null + }, + "128049467": { + "id": 128049467, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Huge", + "cost": 13793600, + "sku": null + }, + "128049466": { + "id": 128049466, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Large", + "cost": 3051200, + "sku": null + }, + "128049465": { + "id": 128049465, + "category": "weapon", + "name": "Hpt_PlasmaAccelerator_Fixed_Medium", + "cost": 834200, + "sku": null + }, + "128049384": { + "id": 128049384, + "category": "weapon", + "name": "Hpt_PulseLaser_Fixed_Huge", + "cost": 177600, + "sku": null + }, + "128681995": { + "id": 128681995, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Huge", + "cost": 877600, + "sku": null + }, + "128049389": { + "id": 128049389, + "category": "weapon", + "name": "Hpt_PulseLaser_Turret_Medium", + "cost": 132800, + "sku": null + }, + "128049388": { + "id": 128049388, + "category": "weapon", + "name": "Hpt_PulseLaser_Turret_Small", + "cost": 26000, + "sku": null + }, + "128049386": { + "id": 128049386, + "category": "weapon", + "name": "Hpt_PulseLaser_Gimbal_Medium", + "cost": 35400, + "sku": null + }, + "128049431": { + "id": 128049431, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Huge", + "cost": 2396160, + "sku": null + }, + "128681994": { + "id": 128681994, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Huge", + "cost": 8746160, + "sku": null + }, + "128049434": { + "id": 128049434, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Large", + "cost": 2396160, + "sku": null + }, + "128049437": { + "id": 128049437, + "category": "weapon", + "name": "Hpt_BeamLaser_Turret_Large", + "cost": 19399600, + "sku": null + }, + "128049409": { + "id": 128049409, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Turret_Large", + "cost": 800400, + "sku": null + }, + "128727920": { + "id": 128727920, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Gimbal_Huge", + "cost": 1245600, + "sku": null + }, + "128049408": { + "id": 128049408, + "category": "weapon", + "name": "Hpt_PulseLaserBurst_Turret_Medium", + "cost": 162800, + "sku": null + }, + "128049440": { + "id": 128049440, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Large", + "cost": 675200, + "sku": null + }, + "128049442": { + "id": 128049442, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Small", + "cost": 42200, + "sku": null + }, + "128049443": { + "id": 128049443, + "category": "weapon", + "name": "Hpt_Cannon_Gimbal_Medium", + "cost": 337600, + "sku": null + }, + "128049439": { + "id": 128049439, + "category": "weapon", + "name": "Hpt_Cannon_Fixed_Medium", + "cost": 168430, + "sku": null + }, + "128049430": { + "id": 128049430, + "category": "weapon", + "name": "Hpt_BeamLaser_Fixed_Large", + "cost": 1177600, + "sku": null + }, + "128049433": { + "id": 128049433, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Medium", + "cost": 500600, + "sku": null + }, + "128049432": { + "id": 128049432, + "category": "weapon", + "name": "Hpt_BeamLaser_Gimbal_Small", + "cost": 74650, + "sku": null + }, + "128049451": { + "id": 128049451, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Small", + "cost": 54720, + "sku": null + }, + "128049452": { + "id": 128049452, + "category": "weapon", + "name": "Hpt_Slugshot_Gimbal_Medium", + "cost": 437760, + "sku": null + }, + "128049448": { + "id": 128049448, + "category": "weapon", + "name": "Hpt_Slugshot_Fixed_Small", + "cost": 36000, + "sku": null + }, + "128049456": { + "id": 128049456, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Medium", + "cost": 38000, + "sku": null + }, + "128049455": { + "id": 128049455, + "category": "weapon", + "name": "Hpt_MultiCannon_Fixed_Small", + "cost": 9500, + "sku": null + }, + "128049522": { + "id": 128049522, + "category": "utility", + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "cost": 18546, + "sku": null + }, + "128049513": { + "id": 128049513, + "category": "utility", + "name": "Hpt_ChaffLauncher_Tiny", + "cost": 8500, + "sku": null + }, + "128049519": { + "id": 128049519, + "category": "utility", + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "cost": 3500, + "sku": null + }, + "128049525": { + "id": 128049525, + "category": "utility", + "name": "Hpt_MiningLaser_Fixed_Small", + "cost": 6800, + "sku": null + }, + "128049516": { + "id": 128049516, + "category": "utility", + "name": "Hpt_ElectronicCountermeasure_Tiny", + "cost": 12500, + "sku": null + }, + "128049549": { + "id": 128049549, + "category": "utility", + "name": "Int_DockingComputer_Standard", + "cost": 4500, + "sku": null + }, + "128662527": { + "id": 128662527, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662526": { + "id": 128662526, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662528": { + "id": 128662528, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662534": { + "id": 128662534, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662533": { + "id": 128662533, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662532": { + "id": 128662532, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662531": { + "id": 128662531, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662523": { + "id": 128662523, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class4", + "cost": 365698, + "sku": null + }, + "128662522": { + "id": 128662522, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class3", + "cost": 121899, + "sku": null + }, + "128662521": { + "id": 128662521, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class2", + "cost": 40633, + "sku": null + }, + "128662520": { + "id": 128662520, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662530": { + "id": 128662530, + "category": "utility", + "name": "Hpt_CrimeScanner_Size0_Class1", + "cost": 13544, + "sku": null + }, + "128662524": { + "id": 128662524, + "category": "utility", + "name": "Hpt_CargoScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128662529": { + "id": 128662529, + "category": "utility", + "name": "Hpt_CloudScanner_Size0_Class5", + "cost": 1097095, + "sku": null + }, + "128049252": { + "id": 128049252, + "category": "module", + "name": "SideWinder_Armour_Grade3", + "cost": 80320, + "sku": null + }, + "128049251": { + "id": 128049251, + "category": "module", + "name": "SideWinder_Armour_Grade2", + "cost": 25600, + "sku": null + }, + "128049250": { + "id": 128049250, + "category": "module", + "name": "SideWinder_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049253": { + "id": 128049253, + "category": "module", + "name": "SideWinder_Armour_Mirrored", + "cost": 132064, + "sku": null + }, + "128049254": { + "id": 128049254, + "category": "module", + "name": "SideWinder_Armour_Reactive", + "cost": 139424, + "sku": null + }, + "128049300": { + "id": 128049300, + "category": "module", + "name": "Type7_Armour_Grade3", + "cost": 15725026, + "sku": null + }, + "128049299": { + "id": 128049299, + "category": "module", + "name": "Type7_Armour_Grade2", + "cost": 6988900, + "sku": null + }, + "128049298": { + "id": 128049298, + "category": "module", + "name": "Type7_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049301": { + "id": 128049301, + "category": "module", + "name": "Type7_Armour_Mirrored", + "cost": 37163480, + "sku": null + }, + "128049302": { + "id": 128049302, + "category": "module", + "name": "Type7_Armour_Reactive", + "cost": 41182097, + "sku": null + }, + "128671219": { + "id": 128671219, + "category": "module", + "name": "DiamondBack_Armour_Grade2", + "cost": 225731, + "sku": null + }, + "128671220": { + "id": 128671220, + "category": "module", + "name": "DiamondBack_Armour_Grade3", + "cost": 507896, + "sku": null + }, + "128671218": { + "id": 128671218, + "category": "module", + "name": "DiamondBack_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128671221": { + "id": 128671221, + "category": "module", + "name": "DiamondBack_Armour_Mirrored", + "cost": 1185090, + "sku": null + }, + "128671222": { + "id": 128671222, + "category": "module", + "name": "DiamondBack_Armour_Reactive", + "cost": 1330123, + "sku": null + }, + "128671834": { + "id": 128671834, + "category": "module", + "name": "DiamondBackXL_Armour_Grade3", + "cost": 1705284, + "sku": null + }, + "128671833": { + "id": 128671833, + "category": "module", + "name": "DiamondBackXL_Armour_Grade2", + "cost": 757904, + "sku": null + }, + "128671832": { + "id": 128671832, + "category": "module", + "name": "DiamondBackXL_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128671836": { + "id": 128671836, + "category": "module", + "name": "DiamondBackXL_Armour_Reactive", + "cost": 4465949, + "sku": null + }, + "128671835": { + "id": 128671835, + "category": "module", + "name": "DiamondBackXL_Armour_Mirrored", + "cost": 3978996, + "sku": null + }, + "128049264": { + "id": 128049264, + "category": "module", + "name": "Hauler_Armour_Grade3", + "cost": 185047, + "sku": null + }, + "128049263": { + "id": 128049263, + "category": "module", + "name": "Hauler_Armour_Grade2", + "cost": 42176, + "sku": null + }, + "128049262": { + "id": 128049262, + "category": "module", + "name": "Hauler_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049265": { + "id": 128049265, + "category": "module", + "name": "Hauler_Armour_Mirrored", + "cost": 270295, + "sku": null + }, + "128049266": { + "id": 128049266, + "category": "module", + "name": "Hauler_Armour_Reactive", + "cost": 282421, + "sku": null + }, + "128049336": { + "id": 128049336, + "category": "module", + "name": "Type9_Armour_Grade3", + "cost": 68900257, + "sku": null + }, + "128049335": { + "id": 128049335, + "category": "module", + "name": "Type9_Armour_Grade2", + "cost": 30622336, + "sku": null + }, + "128049334": { + "id": 128049334, + "category": "module", + "name": "Type9_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049337": { + "id": 128049337, + "category": "module", + "name": "Type9_Armour_Mirrored", + "cost": 162834275, + "sku": null + }, + "128049338": { + "id": 128049338, + "category": "module", + "name": "Type9_Armour_Reactive", + "cost": 180442119, + "sku": null + }, + "128049258": { + "id": 128049258, + "category": "module", + "name": "Eagle_Armour_Grade3", + "cost": 90048, + "sku": null + }, + "128049257": { + "id": 128049257, + "category": "module", + "name": "Eagle_Armour_Grade2", + "cost": 26880, + "sku": null + }, + "128049256": { + "id": 128049256, + "category": "module", + "name": "Eagle_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049259": { + "id": 128049259, + "category": "module", + "name": "Eagle_Armour_Mirrored", + "cost": 140089, + "sku": null + }, + "128049260": { + "id": 128049260, + "category": "module", + "name": "Eagle_Armour_Reactive", + "cost": 150393, + "sku": null + }, + "128049276": { + "id": 128049276, + "category": "module", + "name": "Viper_Armour_Grade3", + "cost": 128637, + "sku": null + }, + "128049275": { + "id": 128049275, + "category": "module", + "name": "Viper_Armour_Grade2", + "cost": 57172, + "sku": null + }, + "128049274": { + "id": 128049274, + "category": "module", + "name": "Viper_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049277": { + "id": 128049277, + "category": "module", + "name": "Viper_Armour_Mirrored", + "cost": 304014, + "sku": null + }, + "128049278": { + "id": 128049278, + "category": "module", + "name": "Viper_Armour_Reactive", + "cost": 336888, + "sku": null + }, + "128662535": { + "id": 128662535, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "cost": 1000, + "sku": null + }, + "128064338": { + "id": 128064338, + "category": "module", + "name": "Int_CargoRack_Size1_Class1", + "cost": 1000, + "sku": null + }, + "128666684": { + "id": 128666684, + "category": "module", + "name": "Int_Refinery_Size1_Class1", + "cost": 6000, + "sku": null + }, + "128666644": { + "id": 128666644, + "category": "module", + "name": "Int_FuelScoop_Size1_Class1", + "cost": 309, + "sku": null + }, + "128672317": { + "id": 128672317, + "category": "module", + "name": "Int_PlanetApproachSuite", + "cost": 500, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128666704": { + "id": 128666704, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class1", + "cost": 12000, + "sku": null + }, + "128066532": { + "id": 128066532, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064263": { + "id": 128064263, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064272": { + "id": 128064272, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064267": { + "id": 128064267, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064271": { + "id": 128064271, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064266": { + "id": 128064266, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128671333": { + "id": 128671333, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3_Fast", + "cost": 84653, + "sku": null + }, + "128671332": { + "id": 128671332, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3_Fast", + "cost": 26705, + "sku": null + }, + "128671331": { + "id": 128671331, + "category": "module", + "name": "Int_ShieldGenerator_Size1_Class3_Fast", + "cost": 7713, + "sku": null + }, + "128064270": { + "id": 128064270, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064265": { + "id": 128064265, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064269": { + "id": 128064269, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064264": { + "id": 128064264, + "category": "module", + "name": "Int_ShieldGenerator_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064268": { + "id": 128064268, + "category": "module", + "name": "Int_ShieldGenerator_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128666721": { + "id": 128666721, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class5", + "cost": 2721600, + "sku": null + }, + "128666717": { + "id": 128666717, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class4", + "cost": 907200, + "sku": null + }, + "128666713": { + "id": 128666713, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class3", + "cost": 302400, + "sku": null + }, + "128666716": { + "id": 128666716, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class4", + "cost": 324000, + "sku": null + }, + "128666712": { + "id": 128666712, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class3", + "cost": 108000, + "sku": null + }, + "128666709": { + "id": 128666709, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class2", + "cost": 100800, + "sku": null + }, + "128666708": { + "id": 128666708, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class2", + "cost": 36000, + "sku": null + }, + "128666705": { + "id": 128666705, + "category": "module", + "name": "Int_FSDInterdictor_Size2_Class1", + "cost": 33600, + "sku": null + }, + "128672293": { + "id": 128672293, + "category": "module", + "name": "Int_BuggyBay_Size6_Class2", + "cost": 691200, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128672291": { + "id": 128672291, + "category": "module", + "name": "Int_BuggyBay_Size4_Class2", + "cost": 86400, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128672292": { + "id": 128672292, + "category": "module", + "name": "Int_BuggyBay_Size6_Class1", + "cost": 576000, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128672289": { + "id": 128672289, + "category": "module", + "name": "Int_BuggyBay_Size2_Class2", + "cost": 21600, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128672290": { + "id": 128672290, + "category": "module", + "name": "Int_BuggyBay_Size4_Class1", + "cost": 72000, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128672288": { + "id": 128672288, + "category": "module", + "name": "Int_BuggyBay_Size2_Class1", + "cost": 18000, + "sku": "ELITE_HORIZONS_V_PLANETARY_LANDINGS" + }, + "128666697": { + "id": 128666697, + "category": "module", + "name": "Int_Refinery_Size2_Class4", + "cost": 340200, + "sku": null + }, + "128666693": { + "id": 128666693, + "category": "module", + "name": "Int_Refinery_Size2_Class3", + "cost": 113400, + "sku": null + }, + "128666696": { + "id": 128666696, + "category": "module", + "name": "Int_Refinery_Size1_Class4", + "cost": 162000, + "sku": null + }, + "128666689": { + "id": 128666689, + "category": "module", + "name": "Int_Refinery_Size2_Class2", + "cost": 37800, + "sku": null + }, + "128666692": { + "id": 128666692, + "category": "module", + "name": "Int_Refinery_Size1_Class3", + "cost": 54000, + "sku": null + }, + "128666688": { + "id": 128666688, + "category": "module", + "name": "Int_Refinery_Size1_Class2", + "cost": 18000, + "sku": null + }, + "128666685": { + "id": 128666685, + "category": "module", + "name": "Int_Refinery_Size2_Class1", + "cost": 12600, + "sku": null + }, + "128064072": { + "id": 128064072, + "category": "module", + "name": "Int_Engine_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064076": { + "id": 128064076, + "category": "module", + "name": "Int_Engine_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064071": { + "id": 128064071, + "category": "module", + "name": "Int_Engine_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064070": { + "id": 128064070, + "category": "module", + "name": "Int_Engine_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064074": { + "id": 128064074, + "category": "module", + "name": "Int_Engine_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064069": { + "id": 128064069, + "category": "module", + "name": "Int_Engine_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064073": { + "id": 128064073, + "category": "module", + "name": "Int_Engine_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064068": { + "id": 128064068, + "category": "module", + "name": "Int_Engine_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064042": { + "id": 128064042, + "category": "module", + "name": "Int_Powerplant_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064037": { + "id": 128064037, + "category": "module", + "name": "Int_Powerplant_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064041": { + "id": 128064041, + "category": "module", + "name": "Int_Powerplant_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064040": { + "id": 128064040, + "category": "module", + "name": "Int_Powerplant_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064035": { + "id": 128064035, + "category": "module", + "name": "Int_Powerplant_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064039": { + "id": 128064039, + "category": "module", + "name": "Int_Powerplant_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064034": { + "id": 128064034, + "category": "module", + "name": "Int_Powerplant_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064038": { + "id": 128064038, + "category": "module", + "name": "Int_Powerplant_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064033": { + "id": 128064033, + "category": "module", + "name": "Int_Powerplant_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128663561": { + "id": 128663561, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "cost": 1545000, + "sku": null + }, + "128663560": { + "id": 128663560, + "category": "module", + "name": "Int_StellarBodyDiscoveryScanner_Intermediate", + "cost": 505000, + "sku": null + }, + "128666634": { + "id": 128666634, + "category": "module", + "name": "Int_DetailedSurfaceScanner_Tiny", + "cost": 250000, + "sku": null + }, + "128064112": { + "id": 128064112, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064107": { + "id": 128064107, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class5", + "cost": 160224, + "sku": null + }, + "128064106": { + "id": 128064106, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064110": { + "id": 128064110, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064105": { + "id": 128064105, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128064109": { + "id": 128064109, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class2", + "cost": 18812, + "sku": null + }, + "128064104": { + "id": 128064104, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class2", + "cost": 5934, + "sku": null + }, + "128064108": { + "id": 128064108, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class1", + "cost": 6271, + "sku": null + }, + "128064103": { + "id": 128064103, + "category": "module", + "name": "Int_Hyperdrive_Size2_Class1", + "cost": 1978, + "sku": null + }, + "128064187": { + "id": 128064187, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064182": { + "id": 128064182, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064191": { + "id": 128064191, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064181": { + "id": 128064181, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064186": { + "id": 128064186, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064190": { + "id": 128064190, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064185": { + "id": 128064185, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064180": { + "id": 128064180, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064189": { + "id": 128064189, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064179": { + "id": 128064179, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064184": { + "id": 128064184, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064188": { + "id": 128064188, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064183": { + "id": 128064183, + "category": "module", + "name": "Int_PowerDistributor_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064178": { + "id": 128064178, + "category": "module", + "name": "Int_PowerDistributor_Size1_Class1", + "cost": 517, + "sku": null + }, + "128671272": { + "id": 128671272, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671284": { + "id": 128671284, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671280": { + "id": 128671280, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671276": { + "id": 128671276, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671271": { + "id": 128671271, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671279": { + "id": 128671279, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671275": { + "id": 128671275, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671270": { + "id": 128671270, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128671274": { + "id": 128671274, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128671269": { + "id": 128671269, + "category": "module", + "name": "Int_DroneControl_Prospector_Size1_Class1", + "cost": 600, + "sku": null + }, + "128064345": { + "id": 128064345, + "category": "module", + "name": "Int_CargoRack_Size8_Class1", + "cost": 3829866, + "sku": null + }, + "128064344": { + "id": 128064344, + "category": "module", + "name": "Int_CargoRack_Size7_Class1", + "cost": 1178420, + "sku": null + }, + "128064343": { + "id": 128064343, + "category": "module", + "name": "Int_CargoRack_Size6_Class1", + "cost": 362591, + "sku": null + }, + "128064342": { + "id": 128064342, + "category": "module", + "name": "Int_CargoRack_Size5_Class1", + "cost": 111566, + "sku": null + }, + "128064341": { + "id": 128064341, + "category": "module", + "name": "Int_CargoRack_Size4_Class1", + "cost": 34328, + "sku": null + }, + "128064340": { + "id": 128064340, + "category": "module", + "name": "Int_CargoRack_Size3_Class1", + "cost": 10563, + "sku": null + }, + "128064339": { + "id": 128064339, + "category": "module", + "name": "Int_CargoRack_Size2_Class1", + "cost": 3250, + "sku": null + }, + "128064147": { + "id": 128064147, + "category": "module", + "name": "Int_LifeSupport_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064142": { + "id": 128064142, + "category": "module", + "name": "Int_LifeSupport_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064151": { + "id": 128064151, + "category": "module", + "name": "Int_LifeSupport_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064141": { + "id": 128064141, + "category": "module", + "name": "Int_LifeSupport_Size1_Class4", + "cost": 8078, + "sku": null + }, + "128064150": { + "id": 128064150, + "category": "module", + "name": "Int_LifeSupport_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064145": { + "id": 128064145, + "category": "module", + "name": "Int_LifeSupport_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064140": { + "id": 128064140, + "category": "module", + "name": "Int_LifeSupport_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064149": { + "id": 128064149, + "category": "module", + "name": "Int_LifeSupport_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064139": { + "id": 128064139, + "category": "module", + "name": "Int_LifeSupport_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064144": { + "id": 128064144, + "category": "module", + "name": "Int_LifeSupport_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064148": { + "id": 128064148, + "category": "module", + "name": "Int_LifeSupport_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064143": { + "id": 128064143, + "category": "module", + "name": "Int_LifeSupport_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064138": { + "id": 128064138, + "category": "module", + "name": "Int_LifeSupport_Size1_Class1", + "cost": 517, + "sku": null + }, + "128667605": { + "id": 128667605, + "category": "module", + "name": "Int_Repairer_Size8_Class1", + "cost": 612220, + "sku": null + }, + "128667611": { + "id": 128667611, + "category": "module", + "name": "Int_Repairer_Size6_Class2", + "cost": 566870, + "sku": null + }, + "128667604": { + "id": 128667604, + "category": "module", + "name": "Int_Repairer_Size7_Class1", + "cost": 340122, + "sku": null + }, + "128667610": { + "id": 128667610, + "category": "module", + "name": "Int_Repairer_Size5_Class2", + "cost": 314928, + "sku": null + }, + "128667616": { + "id": 128667616, + "category": "module", + "name": "Int_Repairer_Size3_Class3", + "cost": 291600, + "sku": null + }, + "128667615": { + "id": 128667615, + "category": "module", + "name": "Int_Repairer_Size2_Class3", + "cost": 162000, + "sku": null + }, + "128667622": { + "id": 128667622, + "category": "module", + "name": "Int_Repairer_Size1_Class4", + "cost": 270000, + "sku": null + }, + "128667609": { + "id": 128667609, + "category": "module", + "name": "Int_Repairer_Size4_Class2", + "cost": 174960, + "sku": null + }, + "128667603": { + "id": 128667603, + "category": "module", + "name": "Int_Repairer_Size6_Class1", + "cost": 188957, + "sku": null + }, + "128667602": { + "id": 128667602, + "category": "module", + "name": "Int_Repairer_Size5_Class1", + "cost": 104976, + "sku": null + }, + "128667608": { + "id": 128667608, + "category": "module", + "name": "Int_Repairer_Size3_Class2", + "cost": 97200, + "sku": null + }, + "128667614": { + "id": 128667614, + "category": "module", + "name": "Int_Repairer_Size1_Class3", + "cost": 90000, + "sku": null + }, + "128667601": { + "id": 128667601, + "category": "module", + "name": "Int_Repairer_Size4_Class1", + "cost": 58320, + "sku": null + }, + "128667607": { + "id": 128667607, + "category": "module", + "name": "Int_Repairer_Size2_Class2", + "cost": 54000, + "sku": null + }, + "128064101": { + "id": 128064101, + "category": "module", + "name": "Int_Engine_Size8_Class4", + "cost": 54195495, + "sku": null + }, + "128064096": { + "id": 128064096, + "category": "module", + "name": "Int_Engine_Size7_Class4", + "cost": 17096371, + "sku": null + }, + "128064100": { + "id": 128064100, + "category": "module", + "name": "Int_Engine_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064095": { + "id": 128064095, + "category": "module", + "name": "Int_Engine_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064099": { + "id": 128064099, + "category": "module", + "name": "Int_Engine_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064094": { + "id": 128064094, + "category": "module", + "name": "Int_Engine_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064098": { + "id": 128064098, + "category": "module", + "name": "Int_Engine_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064093": { + "id": 128064093, + "category": "module", + "name": "Int_Engine_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128671288": { + "id": 128671288, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128671278": { + "id": 128671278, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671287": { + "id": 128671287, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671282": { + "id": 128671282, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671286": { + "id": 128671286, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671277": { + "id": 128671277, + "category": "module", + "name": "Int_DroneControl_Prospector_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671285": { + "id": 128671285, + "category": "module", + "name": "Int_DroneControl_Prospector_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671281": { + "id": 128671281, + "category": "module", + "name": "Int_DroneControl_Prospector_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128066536": { + "id": 128066536, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128066540": { + "id": 128066540, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128066535": { + "id": 128066535, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128066539": { + "id": 128066539, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128066534": { + "id": 128066534, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128066538": { + "id": 128066538, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128066533": { + "id": 128066533, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066537": { + "id": 128066537, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class1", + "cost": 5400, + "sku": null + }, + "128064065": { + "id": 128064065, + "category": "module", + "name": "Int_Powerplant_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128064060": { + "id": 128064060, + "category": "module", + "name": "Int_Powerplant_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064064": { + "id": 128064064, + "category": "module", + "name": "Int_Powerplant_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064059": { + "id": 128064059, + "category": "module", + "name": "Int_Powerplant_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064063": { + "id": 128064063, + "category": "module", + "name": "Int_Powerplant_Size8_Class1", + "cost": 2007241, + "sku": null + }, + "128064058": { + "id": 128064058, + "category": "module", + "name": "Int_Powerplant_Size7_Class1", + "cost": 633199, + "sku": null + }, + "128671243": { + "id": 128671243, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128671238": { + "id": 128671238, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671233": { + "id": 128671233, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671247": { + "id": 128671247, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671242": { + "id": 128671242, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128671237": { + "id": 128671237, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671245": { + "id": 128671245, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671241": { + "id": 128671241, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064312": { + "id": 128064312, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064302": { + "id": 128064302, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class5", + "cost": 20195, + "sku": null + }, + "128064311": { + "id": 128064311, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class4", + "cost": 63333, + "sku": null + }, + "128064306": { + "id": 128064306, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064310": { + "id": 128064310, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064305": { + "id": 128064305, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064300": { + "id": 128064300, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064309": { + "id": 128064309, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064299": { + "id": 128064299, + "category": "module", + "name": "Int_ShieldCellBank_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064304": { + "id": 128064304, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064308": { + "id": 128064308, + "category": "module", + "name": "Int_ShieldCellBank_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064303": { + "id": 128064303, + "category": "module", + "name": "Int_ShieldCellBank_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128064176": { + "id": 128064176, + "category": "module", + "name": "Int_LifeSupport_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064170": { + "id": 128064170, + "category": "module", + "name": "Int_LifeSupport_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064174": { + "id": 128064174, + "category": "module", + "name": "Int_LifeSupport_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064169": { + "id": 128064169, + "category": "module", + "name": "Int_LifeSupport_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064173": { + "id": 128064173, + "category": "module", + "name": "Int_LifeSupport_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064168": { + "id": 128064168, + "category": "module", + "name": "Int_LifeSupport_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128064232": { + "id": 128064232, + "category": "module", + "name": "Int_Sensors_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064227": { + "id": 128064227, + "category": "module", + "name": "Int_Sensors_Size2_Class5", + "cost": 56547, + "sku": null + }, + "128064226": { + "id": 128064226, + "category": "module", + "name": "Int_Sensors_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064230": { + "id": 128064230, + "category": "module", + "name": "Int_Sensors_Size3_Class3", + "cost": 25333, + "sku": null + }, + "128064225": { + "id": 128064225, + "category": "module", + "name": "Int_Sensors_Size2_Class3", + "cost": 9048, + "sku": null + }, + "128064220": { + "id": 128064220, + "category": "module", + "name": "Int_Sensors_Size1_Class3", + "cost": 3231, + "sku": null + }, + "128064229": { + "id": 128064229, + "category": "module", + "name": "Int_Sensors_Size3_Class2", + "cost": 10133, + "sku": null + }, + "128064219": { + "id": 128064219, + "category": "module", + "name": "Int_Sensors_Size1_Class2", + "cost": 1293, + "sku": null + }, + "128064224": { + "id": 128064224, + "category": "module", + "name": "Int_Sensors_Size2_Class2", + "cost": 3619, + "sku": null + }, + "128064228": { + "id": 128064228, + "category": "module", + "name": "Int_Sensors_Size3_Class1", + "cost": 4053, + "sku": null + }, + "128064223": { + "id": 128064223, + "category": "module", + "name": "Int_Sensors_Size2_Class1", + "cost": 1448, + "sku": null + }, + "128066551": { + "id": 128066551, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128066546": { + "id": 128066546, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class5", + "cost": 777600, + "sku": null + }, + "128066550": { + "id": 128066550, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128066545": { + "id": 128066545, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128066549": { + "id": 128066549, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128066548": { + "id": 128066548, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128066544": { + "id": 128066544, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128066547": { + "id": 128066547, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128066543": { + "id": 128066543, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128066542": { + "id": 128066542, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128064336": { + "id": 128064336, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064331": { + "id": 128064331, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064330": { + "id": 128064330, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064333": { + "id": 128064333, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064328": { + "id": 128064328, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128666675": { + "id": 128666675, + "category": "module", + "name": "Int_FuelScoop_Size8_Class4", + "cost": 72260660, + "sku": null + }, + "128666674": { + "id": 128666674, + "category": "module", + "name": "Int_FuelScoop_Size7_Class4", + "cost": 22795161, + "sku": null + }, + "128666667": { + "id": 128666667, + "category": "module", + "name": "Int_FuelScoop_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128666666": { + "id": 128666666, + "category": "module", + "name": "Int_FuelScoop_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128666659": { + "id": 128666659, + "category": "module", + "name": "Int_FuelScoop_Size8_Class2", + "cost": 4516291, + "sku": null + }, + "128666658": { + "id": 128666658, + "category": "module", + "name": "Int_FuelScoop_Size7_Class2", + "cost": 1424698, + "sku": null + }, + "128666651": { + "id": 128666651, + "category": "module", + "name": "Int_FuelScoop_Size8_Class1", + "cost": 1083910, + "sku": null + }, + "128666650": { + "id": 128666650, + "category": "module", + "name": "Int_FuelScoop_Size7_Class1", + "cost": 341927, + "sku": null + }, + "128666678": { + "id": 128666678, + "category": "module", + "name": "Int_FuelScoop_Size3_Class5", + "cost": 902954, + "sku": null + }, + "128666677": { + "id": 128666677, + "category": "module", + "name": "Int_FuelScoop_Size2_Class5", + "cost": 284844, + "sku": null + }, + "128666662": { + "id": 128666662, + "category": "module", + "name": "Int_FuelScoop_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128666669": { + "id": 128666669, + "category": "module", + "name": "Int_FuelScoop_Size2_Class4", + "cost": 71211, + "sku": null + }, + "128666676": { + "id": 128666676, + "category": "module", + "name": "Int_FuelScoop_Size1_Class5", + "cost": 82270, + "sku": null + }, + "128666668": { + "id": 128666668, + "category": "module", + "name": "Int_FuelScoop_Size1_Class4", + "cost": 20568, + "sku": null + }, + "128666661": { + "id": 128666661, + "category": "module", + "name": "Int_FuelScoop_Size2_Class3", + "cost": 17803, + "sku": null + }, + "128666660": { + "id": 128666660, + "category": "module", + "name": "Int_FuelScoop_Size1_Class3", + "cost": 5142, + "sku": null + }, + "128666654": { + "id": 128666654, + "category": "module", + "name": "Int_FuelScoop_Size3_Class2", + "cost": 14109, + "sku": null + }, + "128666715": { + "id": 128666715, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class3", + "cost": 2370816, + "sku": null + }, + "128666718": { + "id": 128666718, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class4", + "cost": 2540160, + "sku": null + }, + "128666714": { + "id": 128666714, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class3", + "cost": 846720, + "sku": null + }, + "128666711": { + "id": 128666711, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class2", + "cost": 790272, + "sku": null + }, + "128666707": { + "id": 128666707, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class1", + "cost": 263424, + "sku": null + }, + "128666710": { + "id": 128666710, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class2", + "cost": 282240, + "sku": null + }, + "128666706": { + "id": 128666706, + "category": "module", + "name": "Int_FSDInterdictor_Size3_Class1", + "cost": 94080, + "sku": null + }, + "128064353": { + "id": 128064353, + "category": "module", + "name": "Int_FuelTank_Size8_Class3", + "cost": 5428429, + "sku": null + }, + "128064352": { + "id": 128064352, + "category": "module", + "name": "Int_FuelTank_Size7_Class3", + "cost": 1780914, + "sku": null + }, + "128064351": { + "id": 128064351, + "category": "module", + "name": "Int_FuelTank_Size6_Class3", + "cost": 341577, + "sku": null + }, + "128064350": { + "id": 128064350, + "category": "module", + "name": "Int_FuelTank_Size5_Class3", + "cost": 97754, + "sku": null + }, + "128064349": { + "id": 128064349, + "category": "module", + "name": "Int_FuelTank_Size4_Class3", + "cost": 24734, + "sku": null + }, + "128064348": { + "id": 128064348, + "category": "module", + "name": "Int_FuelTank_Size3_Class3", + "cost": 7063, + "sku": null + }, + "128064347": { + "id": 128064347, + "category": "module", + "name": "Int_FuelTank_Size2_Class3", + "cost": 3750, + "sku": null + }, + "128064346": { + "id": 128064346, + "category": "module", + "name": "Int_FuelTank_Size1_Class3", + "cost": 1000, + "sku": null + }, + "128671232": { + "id": 128671232, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671244": { + "id": 128671244, + "category": "module", + "name": "Int_DroneControl_Collection_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671240": { + "id": 128671240, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671236": { + "id": 128671236, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671231": { + "id": 128671231, + "category": "module", + "name": "Int_DroneControl_Collection_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671239": { + "id": 128671239, + "category": "module", + "name": "Int_DroneControl_Collection_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671235": { + "id": 128671235, + "category": "module", + "name": "Int_DroneControl_Collection_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128666695": { + "id": 128666695, + "category": "module", + "name": "Int_Refinery_Size4_Class3", + "cost": 500094, + "sku": null + }, + "128666702": { + "id": 128666702, + "category": "module", + "name": "Int_Refinery_Size3_Class5", + "cost": 2143260, + "sku": null + }, + "128666698": { + "id": 128666698, + "category": "module", + "name": "Int_Refinery_Size3_Class4", + "cost": 714420, + "sku": null + }, + "128666694": { + "id": 128666694, + "category": "module", + "name": "Int_Refinery_Size3_Class3", + "cost": 238140, + "sku": null + }, + "128666691": { + "id": 128666691, + "category": "module", + "name": "Int_Refinery_Size4_Class2", + "cost": 166698, + "sku": null + }, + "128666687": { + "id": 128666687, + "category": "module", + "name": "Int_Refinery_Size4_Class1", + "cost": 55566, + "sku": null + }, + "128666690": { + "id": 128666690, + "category": "module", + "name": "Int_Refinery_Size3_Class2", + "cost": 79380, + "sku": null + }, + "128667629": { + "id": 128667629, + "category": "module", + "name": "Int_Repairer_Size8_Class4", + "cost": 16529941, + "sku": null + }, + "128667636": { + "id": 128667636, + "category": "module", + "name": "Int_Repairer_Size7_Class5", + "cost": 27549901, + "sku": null + }, + "128667621": { + "id": 128667621, + "category": "module", + "name": "Int_Repairer_Size8_Class3", + "cost": 5509980, + "sku": null + }, + "128667628": { + "id": 128667628, + "category": "module", + "name": "Int_Repairer_Size7_Class4", + "cost": 9183300, + "sku": null + }, + "128667634": { + "id": 128667634, + "category": "module", + "name": "Int_Repairer_Size5_Class5", + "cost": 8503056, + "sku": null + }, + "128667633": { + "id": 128667633, + "category": "module", + "name": "Int_Repairer_Size4_Class5", + "cost": 4723920, + "sku": null + }, + "128064217": { + "id": 128064217, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064211": { + "id": 128064211, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064210": { + "id": 128064210, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class3", + "cost": 1557108, + "sku": null + }, + "128064214": { + "id": 128064214, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064209": { + "id": 128064209, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064213": { + "id": 128064213, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128064252": { + "id": 128064252, + "category": "module", + "name": "Int_Sensors_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064251": { + "id": 128064251, + "category": "module", + "name": "Int_Sensors_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064254": { + "id": 128064254, + "category": "module", + "name": "Int_Sensors_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064249": { + "id": 128064249, + "category": "module", + "name": "Int_Sensors_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064253": { + "id": 128064253, + "category": "module", + "name": "Int_Sensors_Size8_Class1", + "cost": 697584, + "sku": null + }, + "128671258": { + "id": 128671258, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128671253": { + "id": 128671253, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class5", + "cost": 9600, + "sku": null + }, + "128671267": { + "id": 128671267, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class4", + "cost": 3499200, + "sku": null + }, + "128671262": { + "id": 128671262, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class4", + "cost": 388800, + "sku": null + }, + "128064287": { + "id": 128064287, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064282": { + "id": 128064282, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064277": { + "id": 128064277, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064281": { + "id": 128064281, + "category": "module", + "name": "Int_ShieldGenerator_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064127": { + "id": 128064127, + "category": "module", + "name": "Int_Hyperdrive_Size6_Class5", + "cost": 16179531, + "sku": null + }, + "128064122": { + "id": 128064122, + "category": "module", + "name": "Int_Hyperdrive_Size5_Class5", + "cost": 5103953, + "sku": null + }, + "128064117": { + "id": 128064117, + "category": "module", + "name": "Int_Hyperdrive_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128668535": { + "id": 128668535, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class4", + "cost": 122000, + "sku": null + }, + "128668534": { + "id": 128668534, + "category": "module", + "name": "Hpt_ShieldBooster_Size0_Class3", + "cost": 53000, + "sku": null + }, + "128064297": { + "id": 128064297, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064292": { + "id": 128064292, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128049288": { + "id": 128049288, + "category": "module", + "name": "Type6_Armour_Grade3", + "cost": 941350, + "sku": null + }, + "128049287": { + "id": 128049287, + "category": "module", + "name": "Type6_Armour_Grade2", + "cost": 418378, + "sku": null + }, + "128049286": { + "id": 128049286, + "category": "module", + "name": "Type6_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049289": { + "id": 128049289, + "category": "module", + "name": "Type6_Armour_Mirrored", + "cost": 2224725, + "sku": null + }, + "128049290": { + "id": 128049290, + "category": "module", + "name": "Type6_Armour_Reactive", + "cost": 2465292, + "sku": null + }, + "128049312": { + "id": 128049312, + "category": "module", + "name": "Vulture_Armour_Grade3", + "cost": 4433053, + "sku": null + }, + "128049311": { + "id": 128049311, + "category": "module", + "name": "Vulture_Armour_Grade2", + "cost": 1970246, + "sku": null + }, + "128049310": { + "id": 128049310, + "category": "module", + "name": "Vulture_Armour_Grade1", + "cost": 0, + "sku": null + }, + "128049313": { + "id": 128049313, + "category": "module", + "name": "Vulture_Armour_Mirrored", + "cost": 10476783, + "sku": null + }, + "128049314": { + "id": 128049314, + "category": "module", + "name": "Vulture_Armour_Reactive", + "cost": 11609674, + "sku": null + }, + "128666701": { + "id": 128666701, + "category": "module", + "name": "Int_Refinery_Size2_Class5", + "cost": 1020600, + "sku": null + }, + "128666700": { + "id": 128666700, + "category": "module", + "name": "Int_Refinery_Size1_Class5", + "cost": 486000, + "sku": null + }, + "128666653": { + "id": 128666653, + "category": "module", + "name": "Int_FuelScoop_Size2_Class2", + "cost": 4451, + "sku": null + }, + "128666646": { + "id": 128666646, + "category": "module", + "name": "Int_FuelScoop_Size3_Class1", + "cost": 3386, + "sku": null + }, + "128666652": { + "id": 128666652, + "category": "module", + "name": "Int_FuelScoop_Size1_Class2", + "cost": 1285, + "sku": null + }, + "128666645": { + "id": 128666645, + "category": "module", + "name": "Int_FuelScoop_Size2_Class1", + "cost": 1068, + "sku": null + }, + "128064111": { + "id": 128064111, + "category": "module", + "name": "Int_Hyperdrive_Size3_Class4", + "cost": 169304, + "sku": null + }, + "128064212": { + "id": 128064212, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064216": { + "id": 128064216, + "category": "module", + "name": "Int_PowerDistributor_Size8_Class4", + "cost": 10899756, + "sku": null + }, + "128064208": { + "id": 128064208, + "category": "module", + "name": "Int_PowerDistributor_Size7_Class1", + "cost": 249137, + "sku": null + }, + "128671252": { + "id": 128671252, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class4", + "cost": 4800, + "sku": null + }, + "128671264": { + "id": 128671264, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class1", + "cost": 437400, + "sku": null + }, + "128671260": { + "id": 128671260, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class2", + "cost": 97200, + "sku": null + }, + "128671256": { + "id": 128671256, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class3", + "cost": 21600, + "sku": null + }, + "128671251": { + "id": 128671251, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class3", + "cost": 2400, + "sku": null + }, + "128671259": { + "id": 128671259, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class1", + "cost": 48600, + "sku": null + }, + "128671255": { + "id": 128671255, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class2", + "cost": 10800, + "sku": null + }, + "128671250": { + "id": 128671250, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size1_Class2", + "cost": 1200, + "sku": null + }, + "128066541": { + "id": 128066541, + "category": "module", + "name": "Int_DroneControl_ResourceSiphon_Size3_Class5", + "cost": 86400, + "sku": null + }, + "128666719": { + "id": 128666719, + "category": "module", + "name": "Int_FSDInterdictor_Size4_Class4", + "cost": 7112448, + "sku": null + }, + "128671268": { + "id": 128671268, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class5", + "cost": 6998400, + "sku": null + }, + "128671266": { + "id": 128671266, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class3", + "cost": 1749600, + "sku": null + }, + "128671257": { + "id": 128671257, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size3_Class4", + "cost": 43200, + "sku": null + }, + "128671265": { + "id": 128671265, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size7_Class2", + "cost": 874800, + "sku": null + }, + "128671261": { + "id": 128671261, + "category": "module", + "name": "Int_DroneControl_FuelTransfer_Size5_Class3", + "cost": 194400, + "sku": null + }, + "128064337": { + "id": 128064337, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064334": { + "id": 128064334, + "category": "module", + "name": "Int_ShieldCellBank_Size8_Class2", + "cost": 1743961, + "sku": null + }, + "128064329": { + "id": 128064329, + "category": "module", + "name": "Int_ShieldCellBank_Size7_Class2", + "cost": 622843, + "sku": null + }, + "128064036": { + "id": 128064036, + "category": "module", + "name": "Int_Powerplant_Size2_Class4", + "cost": 53408, + "sku": null + }, + "128064146": { + "id": 128064146, + "category": "module", + "name": "Int_LifeSupport_Size2_Class4", + "cost": 22619, + "sku": null + }, + "128064077": { + "id": 128064077, + "category": "module", + "name": "Int_Engine_Size3_Class5", + "cost": 507912, + "sku": null + }, + "128064075": { + "id": 128064075, + "category": "module", + "name": "Int_Engine_Size3_Class3", + "cost": 56435, + "sku": null + }, + "128064177": { + "id": 128064177, + "category": "module", + "name": "Int_LifeSupport_Size8_Class5", + "cost": 27249391, + "sku": null + }, + "128064172": { + "id": 128064172, + "category": "module", + "name": "Int_LifeSupport_Size7_Class5", + "cost": 9731925, + "sku": null + }, + "128064171": { + "id": 128064171, + "category": "module", + "name": "Int_LifeSupport_Size7_Class4", + "cost": 3892770, + "sku": null + }, + "128064175": { + "id": 128064175, + "category": "module", + "name": "Int_LifeSupport_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128064102": { + "id": 128064102, + "category": "module", + "name": "Int_Engine_Size8_Class5", + "cost": 162586486, + "sku": null + }, + "128064097": { + "id": 128064097, + "category": "module", + "name": "Int_Engine_Size7_Class5", + "cost": 51289112, + "sku": null + }, + "128064295": { + "id": 128064295, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3", + "cost": 18065165, + "sku": null + }, + "128671338": { + "id": 128671338, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class3_Fast", + "cost": 27097748, + "sku": null + }, + "128671337": { + "id": 128671337, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class3_Fast", + "cost": 8548185, + "sku": null + }, + "128064290": { + "id": 128064290, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class3", + "cost": 5698790, + "sku": null + }, + "128064294": { + "id": 128064294, + "category": "module", + "name": "Int_ShieldGenerator_Size8_Class2", + "cost": 6021722, + "sku": null + }, + "128064289": { + "id": 128064289, + "category": "module", + "name": "Int_ShieldGenerator_Size7_Class2", + "cost": 1899597, + "sku": null + }, + "128064192": { + "id": 128064192, + "category": "module", + "name": "Int_PowerDistributor_Size3_Class5", + "cost": 158331, + "sku": null + }, + "128064247": { + "id": 128064247, + "category": "module", + "name": "Int_Sensors_Size6_Class5", + "cost": 3475688, + "sku": null + }, + "128064237": { + "id": 128064237, + "category": "module", + "name": "Int_Sensors_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064246": { + "id": 128064246, + "category": "module", + "name": "Int_Sensors_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064241": { + "id": 128064241, + "category": "module", + "name": "Int_Sensors_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064236": { + "id": 128064236, + "category": "module", + "name": "Int_Sensors_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064245": { + "id": 128064245, + "category": "module", + "name": "Int_Sensors_Size6_Class3", + "cost": 556110, + "sku": null + }, + "128666680": { + "id": 128666680, + "category": "module", + "name": "Int_FuelScoop_Size5_Class5", + "cost": 9073694, + "sku": null + }, + "128666673": { + "id": 128666673, + "category": "module", + "name": "Int_FuelScoop_Size6_Class4", + "cost": 7190903, + "sku": null + }, + "128666665": { + "id": 128666665, + "category": "module", + "name": "Int_FuelScoop_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128666679": { + "id": 128666679, + "category": "module", + "name": "Int_FuelScoop_Size4_Class5", + "cost": 2862364, + "sku": null + }, + "128666664": { + "id": 128666664, + "category": "module", + "name": "Int_FuelScoop_Size5_Class3", + "cost": 567106, + "sku": null + }, + "128668545": { + "id": 128668545, + "category": "module", + "name": "Int_HullReinforcement_Size5_Class1", + "cost": 150000, + "sku": null + }, + "128668541": { + "id": 128668541, + "category": "module", + "name": "Int_HullReinforcement_Size3_Class1", + "cost": 28000, + "sku": null + }, + "128668539": { + "id": 128668539, + "category": "module", + "name": "Int_HullReinforcement_Size2_Class1", + "cost": 12000, + "sku": null + }, + "128668537": { + "id": 128668537, + "category": "module", + "name": "Int_HullReinforcement_Size1_Class1", + "cost": 5000, + "sku": null + }, + "128064157": { + "id": 128064157, + "category": "module", + "name": "Int_LifeSupport_Size4_Class5", + "cost": 443328, + "sku": null + }, + "128064166": { + "id": 128064166, + "category": "module", + "name": "Int_LifeSupport_Size6_Class4", + "cost": 1390275, + "sku": null + }, + "128064161": { + "id": 128064161, + "category": "module", + "name": "Int_LifeSupport_Size5_Class4", + "cost": 496527, + "sku": null + }, + "128064156": { + "id": 128064156, + "category": "module", + "name": "Int_LifeSupport_Size4_Class4", + "cost": 177331, + "sku": null + }, + "128064082": { + "id": 128064082, + "category": "module", + "name": "Int_Engine_Size4_Class5", + "cost": 1610080, + "sku": null + }, + "128064086": { + "id": 128064086, + "category": "module", + "name": "Int_Engine_Size5_Class4", + "cost": 1701318, + "sku": null + }, + "128064090": { + "id": 128064090, + "category": "module", + "name": "Int_Engine_Size6_Class3", + "cost": 1797726, + "sku": null + }, + "128064286": { + "id": 128064286, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class4", + "cost": 5393177, + "sku": null + }, + "128064276": { + "id": 128064276, + "category": "module", + "name": "Int_ShieldGenerator_Size4_Class4", + "cost": 536693, + "sku": null + }, + "128671336": { + "id": 128671336, + "category": "module", + "name": "Int_ShieldGenerator_Size6_Class3_Fast", + "cost": 2696589, + "sku": null + }, + "128666720": { + "id": 128666720, + "category": "module", + "name": "Int_FSDInterdictor_Size1_Class5", + "cost": 972000, + "sku": null + }, + "128064255": { + "id": 128064255, + "category": "module", + "name": "Int_Sensors_Size8_Class3", + "cost": 4359903, + "sku": null + }, + "128672783": { + "id": 128672783, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1076" + }, + "128667727": { + "id": 128667727, + "category": "paintjob", + "name": "PaintJob_CobraMkiii_Default_52", + "cost": 0, + "sku": "" + }, + "128672343": { + "id": 128672343, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Horizons_Polar", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1058" + }, + "128672344": { + "id": 128672344, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Horizons_Desert", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1062" + }, + "128672345": { + "id": 128672345, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Horizons_Lunar", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1063" + }, + "128666726": { + "id": 128666726, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo1_02", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1003" + }, + "128666727": { + "id": 128666727, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Camo2_03", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1004" + }, + "128666728": { + "id": 128666728, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_02", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1005" + }, + "128666729": { + "id": 128666729, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe1_03", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1006" + }, + "128666730": { + "id": 128666730, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_02", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1007" + }, + "128666731": { + "id": 128666731, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Stripe2_03", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1008" + }, + "128667639": { + "id": 128667639, + "category": "paintjob", + "name": "PaintJob_CobraMkIII_Merc", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_PAINTJOB_1001" + }, + "128672779": { + "id": 128672779, + "category": "paintjob", + "name": "PaintJob_Eagle_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_EAGLE_1033" + }, + "128668019": { + "id": 128668019, + "category": "paintjob", + "name": "PaintJob_Eagle_Crimson", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_PAINTJOB_1003" + }, + "128681642": { + "id": 128681642, + "category": "paintjob", + "name": "PaintJob_Eagle_Pax_South_Pax_South", + "cost": 0, + "sku": "FORC_FDEV_V_EAGLE_1034" + }, + "128672802": { + "id": 128672802, + "category": "paintjob", + "name": "PaintJob_Sidewinder_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_SIDEWINDER_1042" + }, + "128066404": { + "id": 128066404, + "category": "paintjob", + "name": "PaintJob_sidewinder_default_02", + "cost": 0, + "sku": "" + }, + "128066408": { + "id": 128066408, + "category": "paintjob", + "name": "PaintJob_sidewinder_default_03", + "cost": 0, + "sku": "" + }, + "128066448": { + "id": 128066448, + "category": "paintjob", + "name": "PaintJob_sidewinder_default_04", + "cost": 0, + "sku": "" + }, + "128667638": { + "id": 128667638, + "category": "paintjob", + "name": "PaintJob_Sidewinder_Merc", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_PAINTJOB_1000" + }, + "128667667": { + "id": 128667667, + "category": "paintjob", + "name": "PaintJob_Viper_Merc", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_PAINTJOB_1002" + }, + "128672796": { + "id": 128672796, + "category": "paintjob", + "name": "PaintJob_Viper_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_VIPER_1049" + }, + "128066411": { + "id": 128066411, + "category": "paintjob", + "name": "PaintJob_viper_default_01", + "cost": 0, + "sku": "" + }, + "128066429": { + "id": 128066429, + "category": "paintjob", + "name": "PaintJob_viper_default_03", + "cost": 0, + "sku": "" + }, + "128672806": { + "id": 128672806, + "category": "paintjob", + "name": "PaintJob_Asp_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_ASP_1043" + }, + "128672419": { + "id": 128672419, + "category": "paintjob", + "name": "PaintJob_Asp_Metallic_Gold", + "cost": 0, + "sku": "FORC_FDEV_V_ASP_1038" + }, + "128672805": { + "id": 128672805, + "category": "paintjob", + "name": "PaintJob_FedDropship_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_FEDDROP_1019" + }, + "128672788": { + "id": 128672788, + "category": "paintjob", + "name": "PaintJob_Python_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_PYTHON_1020" + }, + "128672807": { + "id": 128672807, + "category": "paintjob", + "name": "PaintJob_Adder_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_ADDER_1019" + }, + "128672798": { + "id": 128672798, + "category": "paintjob", + "name": "PaintJob_EmpireTrader_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_CLIPPER_1019" + }, + "128672795": { + "id": 128672795, + "category": "paintjob", + "name": "PaintJob_FerDeLance_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_FERDELANCE_1019" + }, + "128672789": { + "id": 128672789, + "category": "paintjob", + "name": "PaintJob_Hauler_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_HAULER_1024" + }, + "128672797": { + "id": 128672797, + "category": "paintjob", + "name": "PaintJob_Orca_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_ORCA_1018" + }, + "128672800": { + "id": 128672800, + "category": "paintjob", + "name": "PaintJob_Type6_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_TYPE6_1024" + }, + "128672799": { + "id": 128672799, + "category": "paintjob", + "name": "PaintJob_Type7_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_TYPE7_1018" + }, + "128672793": { + "id": 128672793, + "category": "paintjob", + "name": "PaintJob_Type9_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_TYPE9_1018" + }, + "128672801": { + "id": 128672801, + "category": "paintjob", + "name": "PaintJob_Vulture_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1030" + }, + "128672236": { + "id": 128672236, + "category": "paintjob", + "name": "PaintJob_Vulture_Synth_Blue", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1023" + }, + "128672237": { + "id": 128672237, + "category": "paintjob", + "name": "PaintJob_Vulture_Synth_Lime", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1024" + }, + "128672238": { + "id": 128672238, + "category": "paintjob", + "name": "PaintJob_Vulture_Synth_Orange", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1025" + }, + "128672239": { + "id": 128672239, + "category": "paintjob", + "name": "PaintJob_Vulture_Synth_Red", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1026" + }, + "128672240": { + "id": 128672240, + "category": "paintjob", + "name": "PaintJob_Vulture_Synth_Rose", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1027" + }, + "128672241": { + "id": 128672241, + "category": "paintjob", + "name": "PaintJob_Vulture_Synth_White", + "cost": 0, + "sku": "FORC_FDEV_V_VULTURE_1028" + }, + "128672782": { + "id": 128672782, + "category": "paintjob", + "name": "PaintJob_Anaconda_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_ANACONDA_1027" + }, + "128672804": { + "id": 128672804, + "category": "paintjob", + "name": "PaintJob_DiamondBack_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_DIAMOND_SCOUT_1018" + }, + "128672784": { + "id": 128672784, + "category": "paintjob", + "name": "PaintJob_DiamondBackXL_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_DIAMOND_EXPLORER_1020" + }, + "128672786": { + "id": 128672786, + "category": "paintjob", + "name": "PaintJob_Federation_Corvette_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_FEDERAL_CORVETTE_1000" + }, + "128672781": { + "id": 128672781, + "category": "paintjob", + "name": "PaintJob_Cutter_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_IMPERIAL_CUTTER_1000" + }, + "128672792": { + "id": 128672792, + "category": "paintjob", + "name": "PaintJob_Empire_Courier_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_IMPERIAL_COURIER_1018" + }, + "128672791": { + "id": 128672791, + "category": "paintjob", + "name": "PaintJob_Federation_Gunship_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_FEDERAL_GUNSHIP_1000" + }, + "128672794": { + "id": 128672794, + "category": "paintjob", + "name": "PaintJob_FedDropship_MkII_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_FEDERAL_ASSAULT_1000" + }, + "128672778": { + "id": 128672778, + "category": "paintjob", + "name": "PaintJob_Empire_Eagle_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_IMPERIAL_EAGLE_1000" + }, + "128672780": { + "id": 128672780, + "category": "paintjob", + "name": "PaintJob_Viper_MkIV_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_VIPER_1050" + }, + "128672790": { + "id": 128672790, + "category": "paintjob", + "name": "PaintJob_CobraMkIV_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_COBRA_1075" + }, + "128672785": { + "id": 128672785, + "category": "paintjob", + "name": "PaintJob_Independant_Trader_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_KEELBACK_1000" + }, + "128672803": { + "id": 128672803, + "category": "paintjob", + "name": "PaintJob_Asp_Scout_BlackFriday_01", + "cost": 0, + "sku": "FORC_FDEV_V_ASP_SCOUT_1000" + }, + "128728191": { + "id": 128728191, + "category": "paintjob", + "name": "PaintJob_TestBuggy_Camo_01", + "cost": 0, + "sku": "" + }, + "128728192": { + "id": 128728192, + "category": "paintjob", + "name": "PaintJob_TestBuggy_CHK_01", + "cost": 0, + "sku": "" + }, + "128728193": { + "id": 128728193, + "category": "paintjob", + "name": "PaintJob_TestBuggy_IM_01", + "cost": 0, + "sku": "" + }, + "128728194": { + "id": 128728194, + "category": "paintjob", + "name": "PaintJob_TestBuggy_JCB_01", + "cost": 0, + "sku": "" + }, + "128667655": { + "id": 128667655, + "category": "decal", + "name": "Decal_Skull3", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_MERCENARY_DECAL_1000" + }, + "128667736": { + "id": 128667736, + "category": "decal", + "name": "Decal_Combat_Mostly_Harmless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1001" + }, + "128667737": { + "id": 128667737, + "category": "decal", + "name": "Decal_Combat_Novice", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1002" + }, + "128667738": { + "id": 128667738, + "category": "decal", + "name": "Decal_Combat_Competent", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1003" + }, + "128667739": { + "id": 128667739, + "category": "decal", + "name": "Decal_Combat_Expert", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1004" + }, + "128667740": { + "id": 128667740, + "category": "decal", + "name": "Decal_Combat_Master", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1005" + }, + "128667741": { + "id": 128667741, + "category": "decal", + "name": "Decal_Combat_Dangerous", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_COMBAT_DECAL_1006" + }, + "128667744": { + "id": 128667744, + "category": "decal", + "name": "Decal_Trade_Mostly_Penniless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1001" + }, + "128667745": { + "id": 128667745, + "category": "decal", + "name": "Decal_Trade_Peddler", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1002" + }, + "128667746": { + "id": 128667746, + "category": "decal", + "name": "Decal_Trade_Dealer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1003" + }, + "128667747": { + "id": 128667747, + "category": "decal", + "name": "Decal_Trade_Merchant", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1004" + }, + "128667748": { + "id": 128667748, + "category": "decal", + "name": "Decal_Trade_Broker", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1005" + }, + "128667749": { + "id": 128667749, + "category": "decal", + "name": "Decal_Trade_Entrepeneur", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1006" + }, + "128667750": { + "id": 128667750, + "category": "decal", + "name": "Decal_Trade_Tycoon", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_TRADE_DECAL_1007" + }, + "128667752": { + "id": 128667752, + "category": "decal", + "name": "Decal_Explorer_Mostly_Aimless", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1001" + }, + "128667753": { + "id": 128667753, + "category": "decal", + "name": "Decal_Explorer_Scout", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1002" + }, + "128667754": { + "id": 128667754, + "category": "decal", + "name": "Decal_Explorer_Surveyor", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1003" + }, + "128667755": { + "id": 128667755, + "category": "decal", + "name": "Decal_Explorer_Trailblazer", + "cost": 0, + "sku": "ELITE_SPECIFIC_V_EXPLORE_DECAL_1004" + }, + "128732526": { + "id": 128732526, + "category": "decal", + "name": "Decal_PlayerGroup_AEDC", + "cost": 0, + "sku": "FORC_FDEV_V_DECAL_1048" + }, + "128732531": { + "id": 128732531, + "category": "decal", + "name": "Decal_PlayerGroup_Interstellar_Communist_Union", + "cost": 0, + "sku": "FORC_FDEV_V_DECAL_1053" + }, + "128732547": { + "id": 128732547, + "category": "decal", + "name": "Decal_PowerPlay_YuriGrom", + "cost": 0, + "sku": "FORC_FDEV_V_DECAL_1069" + }, + "128672246": { + "id": 128672246, + "category": "decal", + "name": "Decal_PaxPrime", + "cost": 0, + "sku": "FORC_FDEV_V_DECAL_1036" + } + } + }, + "ship": { + "name": "Federation_Dropship_MkII", + "modules": { + "LargeHardpoint1": { + "module": { + "id": 128049461, + "name": "Hpt_MultiCannon_Gimbal_Large", + "value": 578436, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + }, + "recipeName": "Weapon_Sturdy", + "recipeValue": 0, + "recipeLevel": 3, + "modifiers": { + "id": 2226, + "engineerID": 300260, + "recipeID": 128673517, + "slotIndex": 17, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_mass", + "value": 1.3981062173843, + "type": 1 + }, + { + "name": "mod_health", + "value": 0.67017734050751, + "type": 1 + }, + { + "name": "mod_weapon_hardness_piercing", + "value": 0.11474433541298, + "type": 1 + }, + { + "name": "mod_weapon_damage", + "value": 0.014515729621053, + "type": 2 + }, + { + "name": "trade_mass_health", + "value": -0.11064418405294, + "type": 2 + } + ] + } + } + }, + "LargeHardpoint2": { + "module": { + "id": 128049461, + "name": "Hpt_MultiCannon_Gimbal_Large", + "value": 578436, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + }, + "recipeName": "Weapon_Sturdy", + "recipeValue": 0, + "recipeLevel": 3, + "modifiers": { + "id": 2230, + "engineerID": 300260, + "recipeID": 128673517, + "slotIndex": 18, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_mass", + "value": 1.1518269777298, + "type": 1 + }, + { + "name": "mod_health", + "value": 0.32722419500351, + "type": 1 + }, + { + "name": "mod_weapon_hardness_piercing", + "value": 0.14759336411953, + "type": 1 + }, + { + "name": "trade_mass_health", + "value": 0.025720566511154, + "type": 2 + }, + { + "name": "mod_weapon_active_power", + "value": 0.014362432062626, + "type": 2 + } + ] + } + } + }, + "MediumHardpoint1": { + "module": { + "id": 128049429, + "name": "Hpt_BeamLaser_Fixed_Medium", + "value": 299520, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 0 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049429, + "name": "Hpt_BeamLaser_Fixed_Medium", + "value": 299520, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 0 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049522, + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "value": 18546, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 12, + "hopper": 10000 + } + } + }, + "TinyHardpoint3": { + "module": { + "id": 128049522, + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "value": 18546, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 12, + "hopper": 10000 + } + } + }, + "TinyHardpoint4": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "PaintJob": { + "module": { + "id": 128672794, + "name": "PaintJob_FedDropship_MkII_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Armour": { + "module": { + "id": 128672149, + "name": "Federation_Dropship_MkII_Armour_Grade3", + "value": 17832784, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064057, + "name": "Int_Powerplant_Size6_Class5", + "value": 16179531, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064092, + "name": "Int_Engine_Size6_Class5", + "value": 16179531, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064122, + "name": "Int_Hyperdrive_Size5_Class5", + "value": 5103953, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "LifeSupport": { + "module": { + "id": 128064162, + "name": "Int_LifeSupport_Size5_Class5", + "value": 1117186, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "id": 128064207, + "name": "Int_PowerDistributor_Size6_Class5", + "value": 3475688, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "recipeValue": 0, + "recipeName": "PowerDistributor_HighCapacity", + "recipeLevel": 3, + "modifiers": { + "id": 2220, + "engineerID": 300180, + "recipeID": 128673732, + "slotIndex": 33, + "moduleTags": [ + 19 + ], + "modifiers": [ + { + "name": "mod_powerdistributor_global_charge", + "value": 0.15000000596046, + "type": 1 + }, + { + "name": "mod_powerdistributor_global_rate", + "value": -0.11777171492577, + "type": 1 + }, + { + "name": "mod_powerdistributor_system_charge", + "value": 0.048378746956587, + "type": 2 + }, + { + "name": "mod_mass", + "value": 0.032525517046452, + "type": 2 + } + ] + } + } + }, + "Radar": { + "module": { + "id": 128064234, + "name": "Int_Sensors_Size4_Class2", + "value": 28373, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size4_Class3", + "id": 128064349, + "value": 24734, + "unloaned": 24734, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": [], + "Decal3": [], + "Slot01_Size5": { + "module": { + "id": 128671335, + "name": "Int_ShieldGenerator_Size5_Class3_Fast", + "value": 850659, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot02_Size5": { + "module": { + "id": 128668546, + "name": "Int_HullReinforcement_Size5_Class2", + "value": 450000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot03_Size4": { + "module": { + "id": 128064341, + "name": "Int_CargoRack_Size4_Class1", + "value": 34328, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size3": { + "module": { + "id": 128671238, + "name": "Int_DroneControl_Collection_Size3_Class5", + "value": 86400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4 + } + }, + "Slot05_Size2": { + "module": { + "id": 128667623, + "name": "Int_Repairer_Size2_Class4", + "value": 486000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 2800, + "hopper": 0 + } + } + }, + "Slot06_Size2": { + "module": { + "id": 128666721, + "name": "Int_FSDInterdictor_Size2_Class5", + "value": 2721600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4 + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 19070494, + "modules": 66381271, + "cargo": 0, + "total": 85451765, + "unloaned": 25234 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 122, + "paintwork": 121 + }, + "cockpitBreached": false, + "oxygenRemaining": 1500000, + "fuel": { + "main": { + "capacity": 16, + "level": 16 + }, + "reserve": { + "capacity": 0.72, + "level": 0.72 + }, + "superchargedFSD": 0 + }, + "cargo": { + "capacity": 16, + "qty": 0, + "items": [], + "lock": 997382324, + "ts": { + "sec": 1477504798, + "usec": 665000 + } + }, + "refinery": null, + "passengers": [], + "id": 27 + }, + "ships": { + "0": { + "name": "SideWinder", + "modules": { + "SmallHardpoint1": { + "module": { + "name": "Hpt_PulseLaser_Fixed_SmallFree", + "id": 128049673, + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + }, + "free": true, + "unloaned": 0 + } + }, + "SmallHardpoint2": { + "module": { + "name": "Hpt_PulseLaser_Fixed_SmallFree", + "id": 128049673, + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + }, + "free": true, + "unloaned": 0 + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "health": "1000000", + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 10 + }, + "free": false, + "unloaned": 8500 + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049519, + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "value": 3500, + "health": "1000000", + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 2 + }, + "free": false, + "unloaned": 3500 + } + }, + "Armour": { + "module": { + "id": 128049250, + "name": "SideWinder_Armour_Grade1", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "PaintJob": [], + "PowerPlant": { + "module": { + "id": 128064035, + "name": "Int_Powerplant_Size2_Class3", + "value": 17803, + "health": "1000000", + "on": true, + "priority": 0, + "free": false, + "unloaned": 17803 + } + }, + "MainEngines": { + "module": { + "id": 128666636, + "name": "Int_Engine_Size2_Class1_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128666637, + "name": "Int_Hyperdrive_Size2_Class1_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "LifeSupport": { + "module": { + "id": 128666638, + "name": "Int_LifeSupport_Size1_Class1_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "PowerDistributor": { + "module": { + "id": 128064182, + "name": "Int_PowerDistributor_Size1_Class5", + "value": 20195, + "health": "1000000", + "on": true, + "priority": 0, + "free": false, + "unloaned": 20195 + } + }, + "Radar": { + "module": { + "id": 128666640, + "name": "Int_Sensors_Size1_Class1_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "FuelTank": { + "module": { + "id": 128667018, + "name": "Int_FuelTank_Size1_Class3_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Decal1": [], + "Slot01_Size2": { + "module": { + "id": 128666641, + "name": "Int_ShieldGenerator_Size2_Class1_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Slot02_Size2": { + "module": { + "id": 128666643, + "name": "Int_CargoRack_Size2_Class1_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Slot03_Size1": { + "module": { + "id": 128666642, + "name": "Int_StellarBodyDiscoveryScanner_Standard_free", + "value": 0, + "health": "1000000", + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Slot04_Size1": [], + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "unloaned": 500, + "free": true, + "value": 0, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 0, + "modules": 49998, + "cargo": 0, + "total": 49998, + "unloaned": 50498 + }, + "free": true, + "health": { + "hull": "1000000", + "shield": "31250", + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "level": 2, + "capacity": 2 + }, + "reserve": { + "level": 0.3, + "capacity": 0.3 + } + }, + "cargo": { + "capacity": 4, + "qty": 0, + "items": [], + "lock": 395216282, + "ts": { + "sec": 1477420538, + "usec": 48000 + } + }, + "passengers": [], + "station": { + "id": 3228338688, + "name": "Nicollet City" + }, + "starsystem": { + "id": "8055378940618", + "name": "Chang Yeh", + "systemaddress": "8055378940618" + }, + "id": 0 + }, + "2": { + "name": "CobraMkIII", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049460, + "name": "Hpt_MultiCannon_Gimbal_Medium", + "value": 57000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 72, + "hopper": 2100 + }, + "recipeName": "Weapon_Overcharged", + "recipeLevel": 1, + "modifiers": { + "id": 884, + "engineerID": 300260, + "recipeID": 128673500, + "slotIndex": 25, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_weapon_damage", + "value": 0.14685271680355, + "type": 1 + }, + { + "name": "mod_weapon_active_power", + "value": 0.78359436988831, + "type": 1 + }, + { + "name": "mod_weapon_burst_interval", + "value": 0.053466953337193, + "type": 1 + }, + { + "name": "mod_weapon_jitter_radius", + "value": 1.6548764705658, + "type": 1 + }, + { + "name": "mod_weapon_active_heat", + "value": 0.37666243314743, + "type": 1 + }, + { + "name": "special_auto_loader", + "value": 1, + "type": 3 + } + ] + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049382, + "name": "Hpt_PulseLaser_Fixed_Medium", + "value": 17600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049385, + "name": "Hpt_PulseLaser_Gimbal_Small", + "value": 6600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 1 + }, + "recipeName": "Weapon_Overcharged", + "recipeLevel": 1, + "modifiers": { + "id": 868, + "engineerID": 300180, + "recipeID": 128673580, + "slotIndex": 24, + "moduleTags": [ + 1, + 2 + ], + "modifiers": [ + { + "name": "mod_weapon_damage", + "value": 0.13281893730164, + "type": 1 + }, + { + "name": "mod_weapon_active_power", + "value": 0.7729954123497, + "type": 1 + }, + { + "name": "mod_weapon_burst_interval", + "value": 0.072083078324795, + "type": 1 + }, + { + "name": "mod_weapon_jitter_radius", + "value": 1.7314255237579, + "type": 1 + }, + { + "name": "mod_weapon_active_heat", + "value": 0.36206698417664, + "type": 1 + } + ] + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Decal1": { + "module": { + "id": 128667739, + "name": "Decal_Combat_Expert", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": { + "module": { + "id": 128666731, + "name": "PaintJob_CobraMkIII_Stripe2_03", + "value": 0, + "health": 1000000, + "on": true, + "priority": 1, + "free": true, + "unloaned": 0 + } + }, + "Armour": { + "module": { + "id": 128049282, + "name": "CobraMkIII_Armour_Grade3", + "value": 341746, + "unloaned": 341746, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064047, + "name": "Int_Powerplant_Size4_Class5", + "value": 1610080, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1610080, + "unloaned": 1610080, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "unloaned": 10133 + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "unloaned": 158331 + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 10133, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "health": 1000000, + "on": true, + "priority": 1, + "free": false, + "unloaned": 24734 + } + }, + "Slot01_Size4": { + "module": { + "id": 128064341, + "name": "Int_CargoRack_Size4_Class1", + "value": 34328, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size4": { + "module": { + "id": 128064341, + "name": "Int_CargoRack_Size4_Class1", + "value": 34328, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size4": { + "module": { + "id": 128064277, + "name": "Int_ShieldGenerator_Size4_Class5", + "value": 1610080, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 36000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot05_Size2": { + "module": { + "id": 128672289, + "name": "Int_BuggyBay_Size2_Class2", + "value": 21600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size2": { + "module": { + "id": 128663561, + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "value": 1545000, + "unloaned": 1545000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": null, + "hopper": null + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "unloaned": 500, + "free": false, + "value": 500, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 235787, + "modules": 8769603, + "cargo": 0, + "total": 9005390, + "unloaned": 5377987 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "main": { + "level": 16, + "capacity": 16 + }, + "reserve": { + "level": 0.49, + "capacity": 0.49 + } + }, + "cargo": { + "capacity": 32, + "qty": 0, + "items": [], + "lock": 620590890, + "ts": { + "sec": 1467828958, + "usec": 308000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 128055562, + "name": "Highbanks" + }, + "starsystem": { + "id": "4997", + "name": "Te Uira", + "systemaddress": "358797513426" + }, + "id": 2 + }, + "3": { + "name": "DiamondBack", + "modules": { + "SmallHardpoint1": [], + "SmallHardpoint2": [], + "MediumHardpoint1": { + "module": { + "name": "Hpt_PulseLaser_Fixed_Small", + "id": 128049381, + "value": 2200, + "unloaned": 2200, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "MediumHardpoint2": { + "module": { + "name": "Hpt_PulseLaser_Fixed_Small", + "id": 128049381, + "value": 2200, + "unloaned": 2200, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "TinyHardpoint3": [], + "TinyHardpoint4": [], + "PaintJob": [], + "Armour": { + "module": { + "id": 128671218, + "name": "DiamondBack_Armour_Grade1", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064043, + "name": "Int_PowerPlant_Size4_Class1", + "value": 19878, + "unloaned": 19878, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064078, + "name": "Int_Engine_Size4_Class1", + "value": 19878, + "unloaned": 19878, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064113, + "name": "Int_Hyperdrive_Size4_Class1", + "value": 19878, + "unloaned": 19878, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "LifeSupport": { + "module": { + "id": 128064143, + "name": "Int_LifeSupport_Size2_Class1", + "value": 1448, + "unloaned": 1448, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "id": 128064188, + "name": "Int_PowerDistributor_Size3_Class1", + "value": 4053, + "unloaned": 4053, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Radar": { + "module": { + "id": 128064223, + "name": "Int_Sensors_Size2_Class1", + "value": 1448, + "unloaned": 1448, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "id": 128064349, + "name": "Int_FuelTank_Size4_Class3", + "value": 24734, + "unloaned": 24734, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Decal2": [], + "Decal3": [], + "Slot01_Size3": { + "module": { + "id": 128064268, + "name": "Int_ShieldGenerator_Size3_Class1", + "value": 6271, + "unloaned": 6271, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size3": [], + "Slot03_Size3": [], + "Slot04_Size2": { + "module": { + "id": 128662535, + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "unloaned": 500, + "free": false, + "value": 500, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 461341, + "modules": 103488, + "cargo": 0, + "total": 564829, + "unloaned": 103488 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "level": 16, + "capacity": 16 + }, + "reserve": { + "level": 0.49, + "capacity": 0.49 + } + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [], + "lock": 896744649, + "ts": { + "sec": 1477420538, + "usec": 91000 + } + }, + "passengers": [], + "station": { + "id": 3223873280, + "name": "Meade Ring" + }, + "starsystem": { + "id": "63318", + "name": "CD-58 538", + "systemaddress": "5031721931474" + }, + "id": 3 + }, + "4": { + "name": "Asp", + "modules": { + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 8500, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint3": { + "module": { + "id": 128668536, + "name": "Hpt_ShieldBooster_Size0_Class5", + "value": 252900, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + }, + "recipeValue": 0, + "recipeName": "ShieldBooster_Resistive", + "recipeLevel": 1, + "modifiers": { + "id": 99, + "engineerID": 300100, + "recipeID": 128673790, + "slotIndex": 29, + "moduleTags": [ + 22 + ], + "modifiers": [ + { + "name": "mod_passive_power", + "value": 0.036145430058241, + "type": 1 + }, + { + "name": "mod_defencemodifier_global_shield_mult", + "value": -0.0070372382178903, + "type": 1 + }, + { + "name": "mod_health", + "value": -0.017022727057338, + "type": 1 + } + ] + } + } + }, + "TinyHardpoint4": { + "module": { + "id": 128668536, + "name": "Hpt_ShieldBooster_Size0_Class5", + "value": 281000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + }, + "recipeValue": 0, + "recipeName": "ShieldBooster_Resistive", + "recipeLevel": 1, + "modifiers": { + "id": 2243, + "engineerID": 300100, + "recipeID": 128673790, + "slotIndex": 30, + "moduleTags": [ + 22 + ], + "modifiers": [ + { + "name": "mod_passive_power", + "value": 0.072755053639412, + "type": 1 + }, + { + "name": "mod_defencemodifier_global_shield_mult", + "value": -0.022925449535251, + "type": 1 + }, + { + "name": "mod_health", + "value": -0.037675559520721, + "type": 1 + } + ] + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049435, + "name": "Hpt_BeamLaser_Turret_Small", + "value": 500000, + "unloaned": 500000, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049435, + "name": "Hpt_BeamLaser_Turret_Small", + "value": 500000, + "unloaned": 500000, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint3": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 90, + "hopper": 2100 + }, + "recipeValue": 0, + "recipeName": "Weapon_Sturdy", + "recipeLevel": 1, + "modifiers": { + "id": 70, + "engineerID": 300260, + "recipeID": 128673515, + "slotIndex": 23, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_mass", + "value": 0.39797794818878, + "type": 1 + }, + { + "name": "mod_health", + "value": 0.2305294573307, + "type": 1 + } + ] + } + } + }, + "SmallHardpoint4": { + "module": { + "id": 128049459, + "name": "Hpt_MultiCannon_Gimbal_Small", + "value": 14250, + "unloaned": 14250, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 72, + "hopper": 2100 + }, + "recipeValue": 0, + "recipeName": "Weapon_LightWeight", + "recipeLevel": 1, + "modifiers": { + "id": 63, + "engineerID": 300260, + "recipeID": 128673490, + "slotIndex": 24, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_mass", + "value": -0.065476827323437, + "type": 1 + }, + { + "name": "mod_health", + "value": -0.1615110039711, + "type": 1 + }, + { + "name": "mod_weapon_damage", + "value": -0.0071419146843255, + "type": 1 + }, + { + "name": "special_auto_loader", + "value": 1, + "type": 3 + } + ] + } + } + }, + "MediumHardpoint1": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 31860, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 31860, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "PaintJob": { + "module": { + "id": 128672806, + "name": "PaintJob_Asp_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": null, + "hopper": null + } + } + }, + "Armour": { + "module": { + "id": 128049306, + "name": "Asp_Armour_Grade3", + "value": 5995040, + "unloaned": 5995040, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": null, + "hopper": null + } + } + }, + "PowerPlant": { + "module": { + "id": 128064052, + "name": "Int_Powerplant_Size5_Class5", + "value": 5103953, + "unloaned": 5103953, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": null, + "hopper": null + }, + "recipeValue": 0, + "recipeName": "PowerPlant_Armoured", + "recipeLevel": 1, + "modifiers": { + "id": 2247, + "engineerID": 300100, + "recipeID": 128673760, + "slotIndex": 34, + "moduleTags": [ + 18 + ], + "modifiers": [ + { + "name": "mod_health", + "value": 0.146653175354, + "type": 1 + }, + { + "name": "mod_mass", + "value": 0.020805982872844, + "type": 1 + }, + { + "name": "mod_powerplant_heat", + "value": 0.00077260285615921, + "type": 1 + } + ] + } + } + }, + "MainEngines": { + "module": { + "id": 128064087, + "name": "Int_Engine_Size5_Class5", + "value": 4593558, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064122, + "name": "Int_Hyperdrive_Size5_Class5", + "value": 5103950, + "unloaned": 5103950, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": null, + "hopper": null + } + } + }, + "LifeSupport": { + "module": { + "id": 128064154, + "name": "Int_LifeSupport_Size4_Class2", + "value": 28370, + "unloaned": 28370, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": null, + "hopper": null + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064197, + "name": "Int_PowerDistributor_Size4_Class5", + "value": 443330, + "unloaned": 443330, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": null, + "hopper": null + }, + "recipeValue": 0, + "recipeName": "PowerDistributor_HighCapacity", + "recipeLevel": 1, + "modifiers": { + "id": 76, + "engineerID": 300180, + "recipeID": 128673730, + "slotIndex": 38, + "moduleTags": [ + 19 + ], + "modifiers": [ + { + "name": "mod_powerdistributor_global_charge", + "value": 0.040247052907944, + "type": 1 + }, + { + "name": "mod_powerdistributor_global_rate", + "value": -0.045272272080183, + "type": 1 + } + ] + } + } + }, + "Radar": { + "module": { + "id": 128064242, + "name": "Int_Sensors_Size5_Class5", + "value": 1241320, + "unloaned": 1241320, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": null, + "hopper": null + } + } + }, + "FuelTank": { + "module": { + "id": 128064350, + "name": "Int_FuelTank_Size5_Class3", + "value": 97750, + "unloaned": 97750, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": { + "module": { + "id": 128667748, + "name": "Decal_Trade_Broker", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal3": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot01_Size6": { + "module": { + "id": 128064343, + "name": "Int_CargoRack_Size6_Class1", + "value": 326332, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size5": { + "module": { + "id": 128666680, + "name": "Int_FuelScoop_Size5_Class5", + "value": 9073694, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size3": { + "module": { + "id": 128064272, + "name": "Int_ShieldGenerator_Size3_Class5", + "value": 457121, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size3": { + "module": { + "id": 128668542, + "name": "Int_HullReinforcement_Size3_Class2", + "value": 75600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot05_Size3": { + "module": { + "id": 128663561, + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "value": 1545000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size2": { + "module": { + "id": 128666634, + "name": "Int_DetailedSurfaceScanner_Tiny", + "value": 250000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot07_Size2": { + "module": { + "id": 128672289, + "name": "Int_BuggyBay_Size2_Class2", + "value": 21600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "unloaned": 500, + "free": false, + "value": 500, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 6135660, + "modules": 36000238, + "cargo": 0, + "total": 42135898, + "unloaned": 19059713 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "main": { + "capacity": 32, + "level": 32 + }, + "reserve": { + "capacity": 0.63, + "level": 0.63 + } + }, + "cargo": { + "capacity": 64, + "qty": 0, + "items": [], + "lock": 632306515, + "ts": { + "sec": 1464718328, + "usec": 850000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223909120, + "name": "Brand Hub" + }, + "starsystem": { + "id": "76688", + "name": "LTT 9387", + "systemaddress": "5856355652314" + }, + "id": 4 + }, + "6": { + "name": "Vulture", + "modules": { + "LargeHardpoint1": { + "module": { + "id": 128049387, + "name": "Hpt_PulseLaser_Gimbal_Large", + "value": 140600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "LargeHardpoint2": { + "module": { + "id": 128049387, + "name": "Hpt_PulseLaser_Gimbal_Large", + "value": 140600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 7650, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128662531, + "name": "Hpt_CrimeScanner_Size0_Class2", + "value": 40633, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "TinyHardpoint3": { + "module": { + "id": 128049522, + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "value": 18546, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 12, + "hopper": 10000 + } + } + }, + "TinyHardpoint4": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 7650, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Armour": { + "module": { + "id": 128049312, + "name": "Vulture_Armour_Grade3", + "value": 3989748, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PaintJob": { + "module": { + "id": 128672241, + "name": "PaintJob_Vulture_Synth_White", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerPlant": { + "module": { + "id": 128064047, + "name": "Int_Powerplant_Size4_Class5", + "value": 1449072, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064087, + "name": "Int_Engine_Size5_Class5", + "value": 4593558, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064117, + "name": "Int_Hyperdrive_Size4_Class5", + "value": 1449072, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "id": 128064149, + "name": "Int_LifeSupport_Size3_Class2", + "value": 9120, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064202, + "name": "Int_PowerDistributor_Size5_Class5", + "value": 1117186, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "id": 128064234, + "name": "Int_Sensors_Size4_Class2", + "value": 25536, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size3_Class3", + "id": 128064348, + "value": 6356, + "unloaned": 6356, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot01_Size5": { + "module": { + "id": 128671335, + "name": "Int_ShieldGenerator_Size5_Class3_Fast", + "value": 765594, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size4": { + "module": { + "id": 128064341, + "name": "Int_CargoRack_Size4_Class1", + "value": 34328, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 32400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot05_Size1": { + "module": { + "id": 128671233, + "name": "Int_DroneControl_Collection_Size1_Class5", + "value": 9600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size1": { + "module": { + "id": 128667630, + "name": "Int_Repairer_Size1_Class5", + "value": 729000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1100, + "hopper": 0 + } + } + }, + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 450, + "unloaned": 450, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 4220221, + "modules": 14566699, + "cargo": 0, + "total": 18786920, + "unloaned": 6806 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "main": { + "capacity": 8, + "level": 5.336818 + }, + "reserve": { + "capacity": 0.57, + "level": 0.45183843 + } + }, + "cargo": { + "capacity": 16, + "qty": 0, + "items": [], + "lock": 1515542620, + "ts": { + "sec": 1467309218, + "usec": 94000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 128032512, + "name": "EG Main HQ" + }, + "starsystem": { + "id": "1780", + "name": "Euryale", + "systemaddress": "79213611371" + }, + "id": 6 + }, + "7": { + "name": "SideWinder", + "modules": { + "SmallHardpoint1": [], + "SmallHardpoint2": [], + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "Armour": { + "module": { + "name": "SideWinder_Armour_Grade1", + "id": 128049250, + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": [], + "PowerPlant": { + "module": { + "id": 128064033, + "name": "Int_Powerplant_Size2_Class1", + "value": 1781, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064068, + "name": "Int_Engine_Size2_Class1", + "value": 1781, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064103, + "name": "Int_Hyperdrive_Size2_Class1", + "value": 1781, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "name": "Int_LifeSupport_Size1_Class1", + "id": 128064138, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "id": 128064178, + "name": "Int_PowerDistributor_Size1_Class1", + "value": 466, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "name": "Int_Sensors_Size1_Class1", + "id": 128064218, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size1_Class3", + "id": 128064346, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Slot01_Size2": [], + "Slot02_Size2": [], + "Slot03_Size1": [], + "Slot04_Size1": [], + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 3587, + "modules": 8343, + "cargo": 0, + "total": 11930, + "unloaned": 2534 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 0, + "shieldup": false, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "capacity": 2, + "level": 2 + }, + "reserve": { + "capacity": 0.3, + "level": 0.3 + } + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [], + "lock": 426209775, + "ts": { + "sec": 1477420538, + "usec": 152000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 128666762, + "name": "Jameson Memorial" + }, + "starsystem": { + "id": "69268", + "name": "Shinrarta Dezhra", + "systemaddress": "3932277478106" + }, + "id": 7 + }, + "11": { + "name": "Python", + "modules": { + "LargeHardpoint1": { + "module": { + "id": 128049461, + "name": "Hpt_MultiCannon_Gimbal_Large", + "value": 578436, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "LargeHardpoint2": { + "module": { + "id": 128049461, + "name": "Hpt_MultiCannon_Gimbal_Large", + "value": 578436, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "LargeHardpoint3": { + "module": { + "id": 128671120, + "name": "Hpt_Cannon_Gimbal_Large", + "value": 1350400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 5, + "hopper": 100 + } + } + }, + "MediumHardpoint1": { + "module": { + "id": 128049435, + "name": "Hpt_BeamLaser_Turret_Small", + "value": 500000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049435, + "name": "Hpt_BeamLaser_Turret_Small", + "value": 500000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128662521, + "name": "Hpt_CargoScanner_Size0_Class2", + "value": 40633, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "TinyHardpoint3": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint4": { + "module": { + "id": 128668536, + "name": "Hpt_ShieldBooster_Size0_Class5", + "value": 281000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + }, + "recipeValue": 0, + "recipeName": "ShieldBooster_Resistive", + "recipeLevel": 1, + "modifiers": { + "id": 7086, + "engineerID": 300120, + "recipeID": 128673790, + "slotIndex": 13, + "moduleTags": [ + 22 + ], + "modifiers": [ + { + "name": "mod_passive_power", + "value": 0.058115970343351, + "type": 1 + }, + { + "name": "mod_defencemodifier_global_shield_mult", + "value": -0.047888934612274, + "type": 1 + }, + { + "name": "mod_health", + "value": -0.029402615502477, + "type": 1 + }, + { + "name": "mod_defencemodifier_global_shield_mult", + "value": -0.0099430344998837, + "type": 2 + } + ] + } + } + }, + "PaintJob": { + "module": { + "id": 128672788, + "name": "PaintJob_Python_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal3": { + "module": { + "id": 128667655, + "name": "Decal_Skull3", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Armour": { + "module": { + "id": 128049341, + "name": "Python_Armour_Grade2", + "value": 22791271, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerPlant": { + "module": { + "id": 128064057, + "name": "Int_Powerplant_Size6_Class5", + "value": 16179531, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064092, + "name": "Int_Engine_Size6_Class5", + "value": 16179531, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064122, + "name": "Int_Hyperdrive_Size5_Class5", + "value": 5103953, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "id": 128064154, + "name": "Int_LifeSupport_Size4_Class2", + "value": 28373, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064212, + "name": "Int_PowerDistributor_Size7_Class5", + "value": 9731925, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "id": 128064244, + "name": "Int_Sensors_Size6_Class2", + "value": 222444, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size5_Class3", + "id": 128064350, + "value": 97754, + "unloaned": 97754, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot01_Size6": { + "module": { + "id": 128671336, + "name": "Int_ShieldGenerator_Size6_Class3_Fast", + "value": 2696589, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + }, + "recipeValue": 0, + "recipeName": "ShieldGenerator_Thermic", + "recipeLevel": 1, + "modifiers": { + "id": 7052, + "engineerID": 300120, + "recipeID": 128673840, + "slotIndex": 38, + "moduleTags": [ + 15 + ], + "modifiers": [ + { + "name": "mod_shield_thermal_mult", + "value": -0.077897496521473, + "type": 1 + }, + { + "name": "mod_shield_kinetic_mult", + "value": 0.0099332025274634, + "type": 1 + }, + { + "name": "trade_shield_curve_shield_curve_mult", + "value": -0.047018818557262, + "type": 2 + } + ] + } + } + }, + "Slot02_Size6": { + "module": { + "id": 128064343, + "name": "Int_CargoRack_Size6_Class1", + "value": 362591, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size6": { + "module": { + "id": 128064343, + "name": "Int_CargoRack_Size6_Class1", + "value": 362591, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size5": { + "module": { + "id": 128064342, + "name": "Int_CargoRack_Size5_Class1", + "value": 111566, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot05_Size5": { + "module": { + "id": 128064342, + "name": "Int_CargoRack_Size5_Class1", + "value": 111566, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size4": { + "module": { + "id": 128064317, + "name": "Int_ShieldCellBank_Size4_Class5", + "value": 443328, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 3 + } + } + }, + "Slot07_Size3": { + "module": { + "id": 128671236, + "name": "Int_DroneControl_Collection_Size3_Class3", + "value": 21600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot08_Size3": { + "module": { + "id": 128672289, + "name": "Int_BuggyBay_Size2_Class2", + "value": 21600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot09_Size2": { + "module": { + "id": 128663561, + "name": "Int_StellarBodyDiscoveryScanner_Advanced", + "value": 1545000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 55170896, + "modules": 79857618, + "cargo": 0, + "total": 135028514, + "unloaned": 98254 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "main": { + "capacity": 32, + "level": 32 + }, + "reserve": { + "capacity": 0.83, + "level": 0.83 + }, + "superchargedFSD": 0 + }, + "cargo": { + "capacity": 192, + "qty": 0, + "items": [], + "lock": 1811234449, + "ts": { + "sec": 1477423539, + "usec": 263000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223902976, + "name": "Vardeman Gateway" + }, + "starsystem": { + "id": "76198", + "name": "Veroandi", + "systemaddress": "5581477745370" + }, + "id": 11 + }, + "12": { + "name": "SideWinder", + "modules": { + "SmallHardpoint1": { + "module": { + "name": "Hpt_PulseLaser_Gimbal_Small", + "id": 128049385, + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "name": "Hpt_PulseLaser_Gimbal_Small", + "id": 128049385, + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "Armour": { + "module": { + "name": "SideWinder_Armour_Grade1", + "id": 128049250, + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": [], + "PowerPlant": { + "module": { + "name": "Int_PowerPlant_Size2_Class1", + "id": 128064033, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "name": "Int_Engine_Size2_Class1", + "id": 128064068, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FrameShiftDrive": { + "module": { + "name": "Int_Hyperdrive_Size2_Class1", + "id": 128064103, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "LifeSupport": { + "module": { + "name": "Int_LifeSupport_Size1_Class1", + "id": 128064138, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "name": "Int_PowerDistributor_Size1_Class1", + "id": 128064178, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Radar": { + "module": { + "name": "Int_Sensors_Size1_Class1", + "id": 128064218, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size1_Class3", + "id": 128064346, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Slot01_Size2": { + "module": { + "name": "Int_ShieldGenerator_Size2_Class1", + "id": 128064263, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size2": { + "module": { + "name": "Int_CargoRack_Size2_Class1", + "id": 128064339, + "value": 3250, + "unloaned": 3250, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot03_Size1": { + "module": { + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "id": 128662535, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size1": [], + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 3587, + "modules": 28413, + "cargo": 0, + "total": 32000, + "unloaned": 28413 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "capacity": 2, + "level": 1.786676 + }, + "reserve": { + "capacity": 0.3, + "level": 0.2548194 + } + }, + "cargo": { + "capacity": 4, + "qty": 0, + "items": [], + "lock": 708295981, + "ts": { + "sec": 1477420538, + "usec": 200000 + } + }, + "passengers": [], + "station": { + "id": 3224129280, + "name": "Hirase Horizons" + }, + "starsystem": { + "id": "4207021101786", + "name": "Nemet", + "systemaddress": "4207021101786" + }, + "id": 12 + }, + "18": { + "name": "SideWinder", + "modules": { + "SmallHardpoint1": { + "module": { + "name": "Hpt_PulseLaser_Gimbal_Small", + "id": 128049385, + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint2": { + "module": { + "name": "Hpt_PulseLaser_Gimbal_Small", + "id": 128049385, + "value": 6600, + "unloaned": 6600, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "Armour": { + "module": { + "name": "SideWinder_Armour_Grade1", + "id": 128049250, + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": [], + "PowerPlant": { + "module": { + "name": "Int_PowerPlant_Size2_Class1", + "id": 128064033, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "name": "Int_Engine_Size2_Class1", + "id": 128064068, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FrameShiftDrive": { + "module": { + "name": "Int_Hyperdrive_Size2_Class1", + "id": 128064103, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "LifeSupport": { + "module": { + "name": "Int_LifeSupport_Size1_Class1", + "id": 128064138, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "name": "Int_PowerDistributor_Size1_Class1", + "id": 128064178, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Radar": { + "module": { + "name": "Int_Sensors_Size1_Class1", + "id": 128064218, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size1_Class3", + "id": 128064346, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Slot01_Size2": { + "module": { + "name": "Int_ShieldGenerator_Size2_Class1", + "id": 128064263, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size2": { + "module": { + "name": "Int_CargoRack_Size2_Class1", + "id": 128064339, + "value": 3250, + "unloaned": 3250, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot03_Size1": { + "module": { + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "id": 128662535, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size1": [], + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 3587, + "modules": 28413, + "cargo": 0, + "total": 32000, + "unloaned": 28413 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "capacity": 2, + "level": 2 + }, + "reserve": { + "capacity": 0.3, + "level": 0.3 + } + }, + "cargo": { + "capacity": 4, + "qty": 0, + "items": [], + "lock": 1233300453, + "ts": { + "sec": 1477420538, + "usec": 216000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223823104, + "name": "Weil Orbital" + }, + "starsystem": { + "id": "7505623061210", + "name": "Putamasin", + "systemaddress": "7505623061210" + }, + "id": 18 + }, + "19": { + "name": "Adder", + "modules": { + "MediumHardpoint1": [], + "SmallHardpoint1": [], + "SmallHardpoint2": [], + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "Armour": { + "module": { + "name": "Adder_Armour_Grade1", + "id": 128049268, + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Decal2": [], + "Decal3": [], + "PaintJob": [], + "PowerPlant": { + "module": { + "id": 128064034, + "name": "Int_Powerplant_Size2_Class2", + "value": 5934, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064076, + "name": "Int_Engine_Size3_Class4", + "value": 169304, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064111, + "name": "Int_Hyperdrive_Size3_Class4", + "value": 169304, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "name": "Int_LifeSupport_Size1_Class1", + "id": 128064138, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "id": 128064184, + "name": "Int_PowerDistributor_Size2_Class2", + "value": 3619, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "name": "Int_Sensors_Size3_Class1", + "id": 128064228, + "value": 4053, + "unloaned": 4053, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size3_Class3", + "id": 128064348, + "value": 7063, + "unloaned": 7063, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot01_Size3": { + "module": { + "name": "Int_CargoRack_Size2_Class1", + "id": 128064339, + "value": 3250, + "unloaned": 3250, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size3": { + "module": { + "id": 128671331, + "name": "Int_ShieldGenerator_Size1_Class3_Fast", + "value": 7713, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size2": { + "module": { + "name": "Int_CargoRack_Size1_Class1", + "id": 128064338, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size2": [], + "Slot05_Size1": [], + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 39493, + "modules": 372257, + "cargo": 0, + "total": 411750, + "unloaned": 16383 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "capacity": 8, + "level": 6.681073 + }, + "reserve": { + "capacity": 0.36, + "level": 0.16906644 + } + }, + "cargo": { + "capacity": 6, + "qty": 0, + "items": [], + "lock": 476190466, + "ts": { + "sec": 1477420538, + "usec": 229000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223823104, + "name": "Weil Orbital" + }, + "starsystem": { + "id": "7505623061210", + "name": "Putamasin", + "systemaddress": "7505623061210" + }, + "id": 19 + }, + "20": { + "name": "SideWinder", + "modules": { + "SmallHardpoint1": [], + "SmallHardpoint2": [], + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "Armour": { + "module": { + "name": "SideWinder_Armour_Grade1", + "id": 128049250, + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": [], + "PowerPlant": { + "module": { + "name": "Int_PowerPlant_Size2_Class1", + "id": 128064033, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "name": "Int_Engine_Size2_Class1", + "id": 128064068, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064107, + "name": "Int_Hyperdrive_Size2_Class5", + "value": 160224, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "name": "Int_LifeSupport_Size1_Class1", + "id": 128064138, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "name": "Int_PowerDistributor_Size1_Class1", + "id": 128064178, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Radar": { + "module": { + "name": "Int_Sensors_Size1_Class1", + "id": 128064218, + "value": 517, + "unloaned": 517, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size1_Class3", + "id": 128064346, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Slot01_Size2": { + "module": { + "name": "Int_ShieldGenerator_Size2_Class1", + "id": 128064263, + "value": 1978, + "unloaned": 1978, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size2": { + "module": { + "name": "Int_CargoRack_Size2_Class1", + "id": 128064339, + "value": 3250, + "unloaned": 3250, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot03_Size1": { + "module": { + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "id": 128662535, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size1": [], + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitTail": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 3587, + "modules": 173459, + "cargo": 0, + "total": 177046, + "unloaned": 13235 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "capacity": 2, + "level": 1.352443 + }, + "reserve": { + "capacity": 0.3, + "level": 0.1929897 + } + }, + "cargo": { + "capacity": 4, + "qty": 0, + "items": [], + "lock": 1708344063, + "ts": { + "sec": 1477420538, + "usec": 245000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223913216, + "name": "Wolf Platform" + }, + "starsystem": { + "id": "78353", + "name": "Mamaragan", + "systemaddress": "7268292502961" + }, + "id": 20 + }, + "22": { + "name": "Eagle", + "modules": { + "SmallHardpoint1": { + "module": { + "id": 128049492, + "name": "Hpt_BasicMissileRack_Fixed_Small", + "value": 72600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 6, + "hopper": 6 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049455, + "name": "Hpt_MultiCannon_Fixed_Small", + "value": 9500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "SmallHardpoint3": { + "module": { + "id": 128049455, + "name": "Hpt_MultiCannon_Fixed_Small", + "value": 9500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 90, + "hopper": 2100 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049519, + "name": "Hpt_HeatSinkLauncher_Turret_Tiny", + "value": 3500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 2 + } + } + }, + "Armour": { + "module": { + "id": 128049258, + "name": "Eagle_Armour_Grade3", + "value": 90048, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal3": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PaintJob": { + "module": { + "id": 128672779, + "name": "PaintJob_Eagle_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerPlant": { + "module": { + "id": 128064037, + "name": "Int_Powerplant_Size2_Class5", + "value": 160224, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064077, + "name": "Int_Engine_Size3_Class5", + "value": 507912, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064112, + "name": "Int_Hyperdrive_Size3_Class5", + "value": 507912, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "id": 128064139, + "name": "Int_LifeSupport_Size1_Class2", + "value": 1293, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064187, + "name": "Int_PowerDistributor_Size2_Class5", + "value": 56547, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "id": 128064224, + "name": "Int_Sensors_Size2_Class2", + "value": 3619, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size2_Class3", + "id": 128064347, + "value": 3750, + "unloaned": 3750, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot01_Size3": { + "module": { + "id": 128064272, + "name": "Int_ShieldGenerator_Size3_Class5", + "value": 507912, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size1": { + "module": { + "id": 128668538, + "name": "Int_HullReinforcement_Size1_Class2", + "value": 15000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size1": { + "module": { + "id": 128668538, + "name": "Int_HullReinforcement_Size1_Class2", + "value": 15000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitBumper": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 9946, + "modules": 2000817, + "cargo": 0, + "total": 2010763, + "unloaned": 4250 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 450000, + "fuel": { + "main": { + "capacity": 4, + "level": 4 + }, + "reserve": { + "capacity": 0.34, + "level": 0.34 + } + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [], + "lock": 426305257, + "ts": { + "sec": 1477420538, + "usec": 265000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223919872, + "name": "Lloyd Wright Orbital" + }, + "starsystem": { + "id": "78275", + "name": "HDS 3215", + "systemaddress": "9467315758521" + }, + "id": 22 + }, + "24": { + "name": "Viper_MkIV", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049510, + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "value": 44800, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 2, + "hopper": 0 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049429, + "name": "Hpt_BeamLaser_Fixed_Medium", + "value": 299520, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 0 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049488, + "name": "Hpt_Railgun_Fixed_Small", + "value": 51600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 30 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049488, + "name": "Hpt_Railgun_Fixed_Small", + "value": 51600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 30 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 7225, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049516, + "name": "Hpt_ElectronicCountermeasure_Tiny", + "value": 12500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Armour": { + "module": { + "id": 128672259, + "name": "Viper_MkIV_Armour_Grade3", + "value": 335017, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PaintJob": { + "module": { + "id": 128672780, + "name": "PaintJob_Viper_MkIV_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerPlant": { + "module": { + "id": 128064047, + "name": "Int_Powerplant_Size4_Class5", + "value": 1368568, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1368568, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064115, + "name": "Int_Hyperdrive_Size4_Class3", + "value": 152064, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "id": 128064147, + "name": "Int_LifeSupport_Size2_Class5", + "value": 48065, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 134582, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 8614, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FuelTank": { + "module": { + "id": 128064348, + "name": "Int_FuelTank_Size3_Class3", + "value": 6004, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": [], + "Decal3": [], + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 165750, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size3": { + "module": { + "id": 128671333, + "name": "Int_ShieldGenerator_Size3_Class3_Fast", + "value": 71956, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 30600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot05_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 30600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size1": { + "module": { + "id": 128666708, + "name": "Int_FSDInterdictor_Size1_Class2", + "value": 30600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 425, + "unloaned": 425, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 263260, + "modules": 4413658, + "cargo": 0, + "total": 4676918, + "unloaned": 425 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 1500000, + "fuel": { + "main": { + "capacity": 8, + "level": 8 + }, + "reserve": { + "capacity": 0.46, + "level": 0.46 + } + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [], + "lock": 2012237870, + "ts": { + "sec": 1466538206, + "usec": 625000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3223713024, + "name": "Bakewell Platform" + }, + "starsystem": { + "id": "78360", + "name": "Beta-3 Tucani", + "systemaddress": "2827992680811" + }, + "id": 24 + }, + "27": { + "name": "Federation_Dropship_MkII", + "modules": { + "LargeHardpoint1": { + "module": { + "id": 128049461, + "name": "Hpt_MultiCannon_Gimbal_Large", + "value": 578436, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + }, + "recipeName": "Weapon_Sturdy", + "recipeValue": 0, + "recipeLevel": 3, + "modifiers": { + "id": 2226, + "engineerID": 300260, + "recipeID": 128673517, + "slotIndex": 17, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_mass", + "value": 1.3981062173843, + "type": 1 + }, + { + "name": "mod_health", + "value": 0.67017734050751, + "type": 1 + }, + { + "name": "mod_weapon_hardness_piercing", + "value": 0.11474433541298, + "type": 1 + }, + { + "name": "mod_weapon_damage", + "value": 0.014515729621053, + "type": 2 + }, + { + "name": "trade_mass_health", + "value": -0.11064418405294, + "type": 2 + } + ] + } + } + }, + "LargeHardpoint2": { + "module": { + "id": 128049461, + "name": "Hpt_MultiCannon_Gimbal_Large", + "value": 578436, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 90, + "hopper": 2100 + }, + "recipeName": "Weapon_Sturdy", + "recipeValue": 0, + "recipeLevel": 3, + "modifiers": { + "id": 2230, + "engineerID": 300260, + "recipeID": 128673517, + "slotIndex": 18, + "moduleTags": [ + 1, + 8 + ], + "modifiers": [ + { + "name": "mod_mass", + "value": 1.1518269777298, + "type": 1 + }, + { + "name": "mod_health", + "value": 0.32722419500351, + "type": 1 + }, + { + "name": "mod_weapon_hardness_piercing", + "value": 0.14759336411953, + "type": 1 + }, + { + "name": "trade_mass_health", + "value": 0.025720566511154, + "type": 2 + }, + { + "name": "mod_weapon_active_power", + "value": 0.014362432062626, + "type": 2 + } + ] + } + } + }, + "MediumHardpoint1": { + "module": { + "id": 128049429, + "name": "Hpt_BeamLaser_Fixed_Medium", + "value": 299520, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 0 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049429, + "name": "Hpt_BeamLaser_Fixed_Medium", + "value": 299520, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 0 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049522, + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "value": 18546, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 12, + "hopper": 10000 + } + } + }, + "TinyHardpoint3": { + "module": { + "id": 128049522, + "name": "Hpt_PlasmaPointDefence_Turret_Tiny", + "value": 18546, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 12, + "hopper": 10000 + } + } + }, + "TinyHardpoint4": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "PaintJob": { + "module": { + "id": 128672794, + "name": "PaintJob_FedDropship_MkII_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Armour": { + "module": { + "id": 128672149, + "name": "Federation_Dropship_MkII_Armour_Grade3", + "value": 17832784, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerPlant": { + "module": { + "id": 128064057, + "name": "Int_Powerplant_Size6_Class5", + "value": 16179531, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "id": 128064092, + "name": "Int_Engine_Size6_Class5", + "value": 16179531, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064122, + "name": "Int_Hyperdrive_Size5_Class5", + "value": 5103953, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0 + } + }, + "LifeSupport": { + "module": { + "id": 128064162, + "name": "Int_LifeSupport_Size5_Class5", + "value": 1117186, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "id": 128064207, + "name": "Int_PowerDistributor_Size6_Class5", + "value": 3475688, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "recipeValue": 0, + "recipeName": "PowerDistributor_HighCapacity", + "recipeLevel": 3, + "modifiers": { + "id": 2220, + "engineerID": 300180, + "recipeID": 128673732, + "slotIndex": 33, + "moduleTags": [ + 19 + ], + "modifiers": [ + { + "name": "mod_powerdistributor_global_charge", + "value": 0.15000000596046, + "type": 1 + }, + { + "name": "mod_powerdistributor_global_rate", + "value": -0.11777171492577, + "type": 1 + }, + { + "name": "mod_powerdistributor_system_charge", + "value": 0.048378746956587, + "type": 2 + }, + { + "name": "mod_mass", + "value": 0.032525517046452, + "type": 2 + } + ] + } + } + }, + "Radar": { + "module": { + "id": 128064234, + "name": "Int_Sensors_Size4_Class2", + "value": 28373, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size4_Class3", + "id": 128064349, + "value": 24734, + "unloaned": 24734, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal2": [], + "Decal3": [], + "Slot01_Size5": { + "module": { + "id": 128671335, + "name": "Int_ShieldGenerator_Size5_Class3_Fast", + "value": 850659, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3 + } + }, + "Slot02_Size5": { + "module": { + "id": 128668546, + "name": "Int_HullReinforcement_Size5_Class2", + "value": 450000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot03_Size4": { + "module": { + "id": 128064341, + "name": "Int_CargoRack_Size4_Class1", + "value": 34328, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot04_Size3": { + "module": { + "id": 128671238, + "name": "Int_DroneControl_Collection_Size3_Class5", + "value": 86400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4 + } + }, + "Slot05_Size2": { + "module": { + "id": 128667623, + "name": "Int_Repairer_Size2_Class4", + "value": 486000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 2800, + "hopper": 0 + } + } + }, + "Slot06_Size2": { + "module": { + "id": 128666721, + "name": "Int_FSDInterdictor_Size2_Class5", + "value": 2721600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 4 + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 19070494, + "modules": 66381271, + "cargo": 0, + "total": 85451765, + "unloaned": 25234 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 122, + "paintwork": 121 + }, + "cockpitBreached": false, + "oxygenRemaining": 1500000, + "fuel": { + "main": { + "capacity": 16, + "level": 16 + }, + "reserve": { + "capacity": 0.72, + "level": 0.72 + }, + "superchargedFSD": 0 + }, + "cargo": { + "capacity": 16, + "qty": 0, + "items": [], + "lock": 997382324, + "ts": { + "sec": 1477504798, + "usec": 665000 + } + }, + "refinery": null, + "passengers": [], + "station": { + "id": 3223903232, + "name": "Panshin Hub" + }, + "starsystem": { + "id": "76198", + "name": "Veroandi", + "systemaddress": "5581477745370" + }, + "id": 27 + }, + "28": { + "name": "Viper", + "modules": { + "MediumHardpoint1": [], + "MediumHardpoint2": [], + "SmallHardpoint1": [], + "SmallHardpoint2": [], + "TinyHardpoint1": [], + "TinyHardpoint2": [], + "Armour": { + "module": { + "name": "Viper_Armour_Grade1", + "id": 128049274, + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PaintJob": [], + "PowerPlant": { + "module": { + "name": "Int_PowerPlant_Size3_Class1", + "id": 128064038, + "value": 6271, + "unloaned": 6271, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "MainEngines": { + "module": { + "name": "Int_Engine_Size3_Class1", + "id": 128064073, + "value": 6271, + "unloaned": 6271, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FrameShiftDrive": { + "module": { + "name": "Int_Hyperdrive_Size3_Class1", + "id": 128064108, + "value": 6271, + "unloaned": 6271, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "LifeSupport": { + "module": { + "name": "Int_LifeSupport_Size2_Class1", + "id": 128064143, + "value": 1448, + "unloaned": 1448, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PowerDistributor": { + "module": { + "name": "Int_PowerDistributor_Size3_Class1", + "id": 128064188, + "value": 4053, + "unloaned": 4053, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Radar": { + "module": { + "name": "Int_Sensors_Size3_Class1", + "id": 128064228, + "value": 4053, + "unloaned": 4053, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size2_Class3", + "id": 128064347, + "value": 3750, + "unloaned": 3750, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Decal1": [], + "Decal2": [], + "Decal3": [], + "Slot01_Size3": { + "module": { + "name": "Int_CargoRack_Size2_Class1", + "id": 128064339, + "value": 3250, + "unloaned": 3250, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot02_Size3": { + "module": { + "name": "Int_ShieldGenerator_Size3_Class1", + "id": 128064268, + "value": 6271, + "unloaned": 6271, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot03_Size2": [], + "Slot04_Size1": { + "module": { + "name": "Int_StellarBodyDiscoveryScanner_Standard", + "id": 128662535, + "value": 1000, + "unloaned": 1000, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "ShipKitSpoiler": [], + "ShipKitWings": [], + "ShipKitBumper": [], + "ShipKitTail": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 95393, + "modules": 43138, + "cargo": 0, + "total": 138531, + "unloaned": 43138 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 300000, + "fuel": { + "main": { + "capacity": 4, + "level": 4 + }, + "reserve": { + "capacity": 0.41, + "level": 0.41 + } + }, + "cargo": { + "capacity": 4, + "qty": 0, + "items": [], + "lock": 217860893, + "ts": { + "sec": 1468345044, + "usec": 941000 + } + }, + "passengers": [], + "tag": "861x25nc1vg4", + "refinery": null, + "station": { + "id": 3221524992, + "name": "Savitskaya Vision" + }, + "starsystem": { + "id": "2518721481067", + "name": "Nervi", + "systemaddress": "2518721481067" + }, + "id": 28 + }, + "29": { + "name": "Viper_MkIV", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049510, + "name": "Hpt_AdvancedTorpPylon_Fixed_Medium", + "value": 44800, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 2, + "hopper": 0 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049433, + "name": "Hpt_BeamLaser_Gimbal_Medium", + "value": 500600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 1 + } + } + }, + "SmallHardpoint1": { + "module": { + "id": 128049488, + "name": "Hpt_Railgun_Fixed_Small", + "value": 51600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 30 + } + } + }, + "SmallHardpoint2": { + "module": { + "id": 128049488, + "name": "Hpt_Railgun_Fixed_Small", + "value": 51600, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 30 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "Armour": { + "module": { + "id": 128672261, + "name": "Viper_MkIV_Armour_Reactive", + "value": 1032203, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PaintJob": { + "module": { + "id": 128672780, + "name": "PaintJob_Viper_MkIV_BlackFriday_01", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerPlant": { + "module": { + "id": 128064047, + "name": "Int_Powerplant_Size4_Class5", + "value": 1610080, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064082, + "name": "Int_Engine_Size4_Class5", + "value": 1610080, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064114, + "name": "Int_Hyperdrive_Size4_Class2", + "value": 59633, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "id": 128064145, + "name": "Int_LifeSupport_Size2_Class3", + "value": 9048, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "id": 128064229, + "name": "Int_Sensors_Size3_Class2", + "value": 10133, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FuelTank": { + "module": { + "id": 128064348, + "name": "Int_FuelTank_Size3_Class3", + "value": 7063, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal1": [], + "Decal2": [], + "Decal3": [], + "Slot01_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size4": { + "module": { + "id": 128668544, + "name": "Int_HullReinforcement_Size4_Class2", + "value": 195000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot03_Size3": { + "module": { + "id": 128671333, + "name": "Int_ShieldGenerator_Size3_Class3_Fast", + "value": 84653, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size2": { + "module": { + "id": 128668538, + "name": "Int_HullReinforcement_Size1_Class2", + "value": 15000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot05_Size2": { + "module": { + "id": 128668538, + "name": "Int_HullReinforcement_Size1_Class2", + "value": 15000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size1": { + "module": { + "id": 128666708, + "name": "Int_FSDInterdictor_Size1_Class2", + "value": 36000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 309712, + "modules": 5703324, + "cargo": 0, + "total": 6013036, + "unloaned": 500 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 600000, + "fuel": { + "main": { + "capacity": 8, + "level": 8 + }, + "reserve": { + "capacity": 0.46, + "level": 0.46 + } + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [], + "lock": 869152066, + "ts": { + "sec": 1468949244, + "usec": 164000 + } + }, + "passengers": [], + "refinery": null, + "station": { + "id": 3224998400, + "name": "Pons Dock" + }, + "starsystem": { + "id": "4064960022899", + "name": "Namniez", + "systemaddress": "4064960022899" + }, + "id": 29 + }, + "31": { + "name": "Empire_Courier", + "modules": { + "MediumHardpoint1": { + "module": { + "id": 128049493, + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "value": 512400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 6, + "hopper": 18 + } + } + }, + "MediumHardpoint2": { + "module": { + "id": 128049493, + "name": "Hpt_BasicMissileRack_Fixed_Medium", + "value": 512400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 6, + "hopper": 18 + } + } + }, + "MediumHardpoint3": { + "module": { + "id": 128049386, + "name": "Hpt_PulseLaser_Gimbal_Medium", + "value": 35400, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 0 + } + } + }, + "TinyHardpoint1": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint2": { + "module": { + "id": 128049513, + "name": "Hpt_ChaffLauncher_Tiny", + "value": 8500, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 2, + "ammo": { + "clip": 1, + "hopper": 10 + } + } + }, + "TinyHardpoint3": { + "module": { + "id": 128668536, + "name": "Hpt_ShieldBooster_Size0_Class5", + "value": 281000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "TinyHardpoint4": { + "module": { + "id": 128668536, + "name": "Hpt_ShieldBooster_Size0_Class5", + "value": 281000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PaintJob": [], + "Decal1": { + "module": { + "id": 128667741, + "name": "Decal_Combat_Dangerous", + "value": 0, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Decal2": [], + "Decal3": [], + "Armour": { + "module": { + "id": 128671226, + "name": "Empire_Courier_Armour_Grade3", + "value": 2288637, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerPlant": { + "module": { + "id": 128064047, + "name": "Int_Powerplant_Size4_Class5", + "value": 1610080, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "MainEngines": { + "module": { + "id": 128064077, + "name": "Int_Engine_Size3_Class5", + "value": 507912, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FrameShiftDrive": { + "module": { + "id": 128064112, + "name": "Int_Hyperdrive_Size3_Class5", + "value": 507912, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "LifeSupport": { + "module": { + "id": 128064142, + "name": "Int_LifeSupport_Size1_Class5", + "value": 20195, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PowerDistributor": { + "module": { + "id": 128064192, + "name": "Int_PowerDistributor_Size3_Class5", + "value": 158331, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 0, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Radar": { + "module": { + "id": 128064225, + "name": "Int_Sensors_Size2_Class3", + "value": 9048, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "FuelTank": { + "module": { + "name": "Int_FuelTank_Size3_Class3", + "id": 128064348, + "value": 7063, + "unloaned": 7063, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Slot01_Size3": { + "module": { + "id": 128064272, + "name": "Int_ShieldGenerator_Size3_Class5", + "value": 507912, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot02_Size3": { + "module": { + "id": 128064311, + "name": "Int_ShieldCellBank_Size3_Class4", + "value": 63333, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 3, + "ammo": { + "clip": 1, + "hopper": 4 + } + } + }, + "Slot03_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot04_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot05_Size2": { + "module": { + "id": 128668540, + "name": "Int_HullReinforcement_Size2_Class2", + "value": 36000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "Slot06_Size1": { + "module": { + "id": 128668538, + "name": "Int_HullReinforcement_Size1_Class2", + "value": 15000, + "unloaned": 0, + "free": false, + "health": 1000000, + "on": true, + "priority": 1, + "ammo": { + "clip": 0, + "hopper": 0 + } + } + }, + "PlanetaryApproachSuite": { + "module": { + "name": "Int_PlanetApproachSuite", + "id": 128672317, + "value": 500, + "unloaned": 500, + "free": false, + "health": 1000000, + "on": true, + "priority": 1 + } + }, + "Bobble01": [], + "Bobble02": [], + "Bobble03": [], + "Bobble04": [], + "Bobble05": [], + "Bobble06": [], + "Bobble07": [], + "Bobble08": [], + "Bobble09": [], + "Bobble10": [], + "WeaponColour": [], + "EngineColour": [] + }, + "value": { + "hull": 2481052, + "modules": 7443123, + "cargo": 0, + "total": 9924175, + "unloaned": 7563 + }, + "free": false, + "health": { + "hull": 1000000, + "shield": 1000000, + "shieldup": true, + "integrity": 0, + "paintwork": 0 + }, + "cockpitBreached": false, + "oxygenRemaining": 1500000, + "fuel": { + "main": { + "capacity": 8, + "level": 8 + }, + "reserve": { + "capacity": 0.41, + "level": 0.41 + } + }, + "cargo": { + "capacity": 0, + "qty": 0, + "items": [], + "lock": 775749144, + "ts": { + "sec": 1469294563, + "usec": 387000 + } + }, + "passengers": [], + "tag": "8smjrkmbr9tg", + "refinery": null, + "station": { + "id": 3223924480, + "name": "Liebig Station" + }, + "starsystem": { + "id": "75590", + "name": "Ehecatl", + "systemaddress": "3932210303706" + }, + "id": 31 + } + } +} \ No newline at end of file From 7273c457716447ce65b008bfde7b8864ea5cea94 Mon Sep 17 00:00:00 2001 From: Mo Date: Sat, 29 Oct 2016 23:07:35 +0300 Subject: [PATCH 2/3] fix stock and demand import --- .../ru/trader/emdn/entities/EDDNItemData.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java b/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java index 25bc8ec..1494608 100644 --- a/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java +++ b/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java @@ -67,18 +67,25 @@ public class EDDNItemData extends ItemDataBase { @Override public long getSupply() { JsonNode n; + JsonNode ln; switch (version) { case V1: n = node.get("stationStock"); + ln = node.get("supplyLevel"); break; case V2: n = node.get("supply"); + ln = node.get("supplyLevel"); break; default: n = node.get("stock"); + ln = node.get("stockBracket"); break; } if (n != null && n.isNumber()){ + if (ln == null || ln.isNumber() && ln.asInt() == 0 || ln.asText().isEmpty()){ + return 0; + } return n.asLong(); } else { throw new ImportDataError("EDDN message don't have commodity supply"); @@ -88,7 +95,20 @@ public class EDDNItemData extends ItemDataBase { @Override public long getDemand() { JsonNode n = node.get("demand"); + JsonNode ln; + switch (version) { + case V1: + case V2: + ln = node.get("demandLevel"); + break; + default: + ln = node.get("demandBracket"); + break; + } if (n != null && n.isNumber()){ + if (ln == null || ln.isNumber() && ln.asInt() == 0 || ln.asText().isEmpty()){ + return 0; + } return n.asLong(); } else { throw new ImportDataError("EDDN message don't have commodity demand"); From 04b4bfa4ccbb5c314c2993294ce67f6260b7a9b6 Mon Sep 17 00:00:00 2001 From: Mo Date: Sat, 29 Oct 2016 23:07:35 +0300 Subject: [PATCH 3/3] fix stock and demand import --- .../ru/trader/emdn/entities/EDDNItemData.java | 20 +++++++++++++++++++ .../test/java/ru/trader/emdn/ParserTest.java | 6 ++++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java b/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java index 25bc8ec..489f593 100644 --- a/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java +++ b/utils/src/main/java/ru/trader/emdn/entities/EDDNItemData.java @@ -67,18 +67,25 @@ public class EDDNItemData extends ItemDataBase { @Override public long getSupply() { JsonNode n; + JsonNode ln; switch (version) { case V1: n = node.get("stationStock"); + ln = node.get("supplyLevel"); break; case V2: n = node.get("supply"); + ln = node.get("supplyLevel"); break; default: n = node.get("stock"); + ln = node.get("stockBracket"); break; } if (n != null && n.isNumber()){ + if (ln != null && (ln.isNumber() && ln.asInt() == 0 || ln.asText().isEmpty())){ + return 0; + } return n.asLong(); } else { throw new ImportDataError("EDDN message don't have commodity supply"); @@ -88,7 +95,20 @@ public class EDDNItemData extends ItemDataBase { @Override public long getDemand() { JsonNode n = node.get("demand"); + JsonNode ln; + switch (version) { + case V1: + case V2: + ln = node.get("demandLevel"); + break; + default: + ln = node.get("demandBracket"); + break; + } if (n != null && n.isNumber()){ + if (ln != null && (ln.isNumber() && ln.asInt() == 0 || ln.asText().isEmpty())){ + return 0; + } return n.asLong(); } else { throw new ImportDataError("EDDN message don't have commodity demand"); diff --git a/utils/src/test/java/ru/trader/emdn/ParserTest.java b/utils/src/test/java/ru/trader/emdn/ParserTest.java index 4887fc9..9256e2b 100644 --- a/utils/src/test/java/ru/trader/emdn/ParserTest.java +++ b/utils/src/test/java/ru/trader/emdn/ParserTest.java @@ -8,7 +8,9 @@ import org.junit.rules.ExpectedException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ru.trader.TestUtils; -import ru.trader.emdn.entities.*; +import ru.trader.emdn.entities.Header; +import ru.trader.emdn.entities.Message; +import ru.trader.emdn.entities.SUPPORT_VERSIONS; import ru.trader.store.imp.ImportDataError; import ru.trader.store.imp.entities.ItemData; import ru.trader.store.imp.entities.ShipData; @@ -482,7 +484,7 @@ public class ParserTest extends Assert { assertEquals(7234, item.getSellOfferPrice()); assertEquals(24, item.getSupply()); assertEquals(7156, item.getBuyOfferPrice()); - assertEquals(1, item.getDemand()); + assertEquals(0, item.getDemand()); assertNull(item.getId()); assertNull(item.getGroup()); } else