diff --git a/.gitignore b/.gitignore index 28f160b956..8f7f3e3efc 100644 --- a/.gitignore +++ b/.gitignore @@ -220,3 +220,4 @@ Documentation.chw # AxoCover .axoCover/runs /.cr/personal +/SpeechResponder/Scripts diff --git a/ConfigService/ConfigService.cs b/ConfigService/ConfigService.cs index 0ef77b970f..3422d2d771 100644 --- a/ConfigService/ConfigService.cs +++ b/ConfigService/ConfigService.cs @@ -36,6 +36,16 @@ public CrimeMonitorConfiguration crimeMonitorConfiguration } } + public DiscoveryMonitorConfiguration discoveryMonitorConfiguration + { + get => currentConfigs[ nameof( discoveryMonitorConfiguration ) ] as DiscoveryMonitorConfiguration; + set + { + currentConfigs[ nameof( discoveryMonitorConfiguration ) ] = value; + OnPropertyChanged(); + } + } + public EDDIConfiguration eddiConfiguration { get => currentConfigs[nameof(eddiConfiguration)] as EDDIConfiguration; @@ -148,6 +158,7 @@ private ConcurrentDictionary ReadConfigurations(string directory { {nameof(cargoMonitorConfiguration), FromFile(directory)}, {nameof(crimeMonitorConfiguration), FromFile(directory)}, + {nameof(discoveryMonitorConfiguration), FromFile(directory)}, {nameof(eddiConfiguration), FromFile(directory)}, {nameof(edsmConfiguration), FromFile(directory)}, {nameof(eddpConfiguration), FromFile(directory)}, diff --git a/ConfigService/Configurations/DiscoveryMonitorConfiguration.cs b/ConfigService/Configurations/DiscoveryMonitorConfiguration.cs new file mode 100644 index 0000000000..0b5fc2e9f3 --- /dev/null +++ b/ConfigService/Configurations/DiscoveryMonitorConfiguration.cs @@ -0,0 +1,158 @@ +using Newtonsoft.Json; + +namespace EddiConfigService.Configurations +{ + /// Configuration for the Galnet monitor + [JsonObject(MemberSerialization.OptOut), RelativePath(@"\discoverymonitor.json")] + public class DiscoveryMonitorConfiguration : Config + { + // Enables the debugging messages I used to implement codex and exobiology features + // Still requires the overall verbose logging to be enabled for EDDI + // This is not available everywhere so a few things always show up with verbose logging + //public bool enableLogging; + public Exobiology exobiology = new Exobiology(); + //public Codex codex = new Codex(); + + public class Exobiology + { + //public bool reportSlowBios = false; + //public bool reportDestinationBios = true; + //public bool reportBiosInSystemReport = true; + //public bool reportBiosAfterSystemScan = true; + //public int minimumBiosForReporting = 0; + + public class Predictions + { + // Legacy + public bool skipGroundStructIce = true; // Crystalline Shards + public bool skipCone = false; // Bark Mounds + public bool skipBrancae = true; // Brain Trees + public bool skipTubers = false; // Sinuous Tubers + + // Odyssey + //public bool skipAleoids = false; // Aleoida + //public bool skipVents = false; // Amphora + //public bool skipSphere = false; // Anemone + //public bool skipBacterial = false; // Bacterium + //public bool skipCactoid = false; // Cactoida + //public bool skipClypeus = false; // Clypeus + //public bool skipConchas = false; // Concha + //public bool skipElectricae = false; // Electricae + //public bool skipFonticulus = false; // Fonticulua + //public bool skipShrubs = false; // Frutexa + //public bool skipFumerolas = false; // Fumerola + //public bool skipFungoids = false; // Fungoida + //public bool skipOsseus = false; // Osseus + //public bool skipRecepta = false; // Recepta + //public bool skipStratum = false; // Stratum + //public bool skipTubus = false; // Tubus + //public bool skipTussocks = false; // Tussock + + // Non-predictable + //public bool skipMineralSpheres = false; + //public bool skipMetallicCrystals = false; + //public bool skipSilicateCrystals = false; + //public bool skipIceCrystals = false; + //public bool skipMolluscReel = false; + //public bool skipMolluscGlobe = false; + //public bool skipMolluscBell = false; + //public bool skipMolluscUmbrella = false; + //public bool skipMolluscGourd = false; + //public bool skipMolluscTorus = false; + //public bool skipMolluscBulb = false; + //public bool skipMolluscParasol = false; + //public bool skipMolluscSquid = false; + //public bool skipMolluscBullet = false; + //public bool skipMolluscCapsule = false; + //public bool skipCollaredPod = false; + //public bool skipStolonPod = false; + //public bool skipStolonTree = false; + //public bool skipAsterPod = false; + //public bool skipChalicePod = false; + //public bool skipPedunclePod = false; + //public bool skipRhizomePod = false; + //public bool skipQuadripartitePod = false; + //public bool skipVoidPod = false; + //public bool skipAsterTree = false; + //public bool skipPeduncleTree = false; + //public bool skipGyreTree = false; + //public bool skipGyrePod = false; + //public bool skipVoidHeart = false; + //public bool skipCalcitePlates = false; + //public bool skipThargoidBarnacle = false; + } + public Predictions predictions = new Predictions(); + + // public class DataSold + // { + // public bool reportBreakdown = false; + // public bool reportTotalAlways = true; + // } + // public DataSold dataSold = new DataSold(); + + // public class Scans + // { + // public bool reportBaseValue = true; + // public bool humanizeBaseValue = true; + // public bool reportBonusValue = true; + // public bool humanizeBonusValue = true; + // public bool reportLocation = false; + // public bool recommendOtherBios = true; + // public int reportGenusOnScan = 0; + // public int reportSpeciesOnScan = 0; + // public int reportConditionsOnScan = 0; + // } + // public Scans scans = new Scans(); + } + + //public class Codex + //{ + // public bool reportAllScans = false; + // public bool reportNewEntries = true; + // public bool reportNewTraits = true; + // public bool reportVoucherAmounts = true; + // public bool reportNewDetailsOnly = true; + // public bool reportSystem = true; + // public bool reportRegion = true; + + // public class Astronomicals + // { + // public bool enable = true; + // public bool reportType = true; + // public bool reportDetails = true; + // } + // public Astronomicals astronomicals = new Astronomicals(); + + // public class Biologicals + // { + // public bool enable; + // public bool reportGenusDetails; + // public bool reportSpeciesDetails; + // public bool reportConditions; + // } + // public Biologicals biologicals = new Biologicals(); + + // public class Geologicals + // { + // public bool enable = true; + // public bool reportClass = true; + // public bool reportDetails = true; + // } + // public Geologicals geologicals = new Geologicals(); + + // public class Guardian + // { + // public bool enable = true; + // public bool reportDetails = true; + // } + // public Guardian guardian = new Guardian(); + + // public class Thargoid + // { + // public bool enable = true; + // public bool reportDetails = true; + // } + // public Thargoid thargoid = new Thargoid(); + //} + } +} diff --git a/DataDefinitions/Astronomical.cs b/DataDefinitions/Astronomical.cs new file mode 100644 index 0000000000..0c420e5860 --- /dev/null +++ b/DataDefinitions/Astronomical.cs @@ -0,0 +1,160 @@ +using System; +using System.Linq; +using Utilities; + +namespace EddiDataDefinitions +{ + public class Astronomical : ResourceBasedLocalizedEDName + { + static Astronomical () + { + resourceManager = Properties.Astronomical.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new Astronomical( edname, null, null ); + } + + public static readonly Astronomical Green_Giant_With_Ammonia_Life = new Astronomical ( "Green_Giant_With_Ammonia_Life", 1200402, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Sudarsky_Class_I = new Astronomical ( "Green_Sudarsky_Class_I", 1200502, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Sudarsky_Class_II = new Astronomical ( "Green_Sudarsky_Class_II", 1200602, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Sudarsky_Class_III = new Astronomical ( "Green_Sudarsky_Class_III", 1200702, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Sudarsky_Class_IV = new Astronomical ( "Green_Sudarsky_Class_IV", 1200802, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Sudarsky_Class_V = new Astronomical ( "Green_Sudarsky_Class_V", 1200902, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Water_Giant = new Astronomical ( "Green_Water_Giant", 1200102, AstronomicalType.GasGiants ); + public static readonly Astronomical Green_Giant_With_Water_Life = new Astronomical ( "Green_Giant_With_Water_Life", 1200302, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Giant_With_Ammonia_Life = new Astronomical ( "Standard_Giant_With_Ammonia_Life", 1200401, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Giant_With_Water_Life = new Astronomical ( "Standard_Giant_With_Water_Life", 1200301, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Helium = new Astronomical ( "Standard_Helium", null, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Helium_Rich = new Astronomical ( "Standard_Helium_Rich", 1201001, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Sudarsky_Class_I = new Astronomical ( "Standard_Sudarsky_Class_I", 1200501, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Sudarsky_Class_II = new Astronomical ( "Standard_Sudarsky_Class_II", 1200601, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Sudarsky_Class_III = new Astronomical ( "Standard_Sudarsky_Class_III", 1200701, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Sudarsky_Class_IV = new Astronomical ( "Standard_Sudarsky_Class_IV", 1200801, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Sudarsky_Class_V = new Astronomical ( "Standard_Sudarsky_Class_V", 1200901, AstronomicalType.GasGiants ); + public static readonly Astronomical Standard_Water_Giant = new Astronomical ( "Standard_Water_Giant", 1200101, AstronomicalType.GasGiants ); + + public static readonly Astronomical A_Type = new Astronomical ( "A_Type", 1100301, AstronomicalType.Stars ); + public static readonly Astronomical A_TypeGiant = new Astronomical ( "A_TypeGiant", 1100302, AstronomicalType.Stars ); + public static readonly Astronomical A_TypeSuperGiant = new Astronomical ( "A_TypeSuperGiant", 1100303, AstronomicalType.Stars ); + public static readonly Astronomical AEBE_Type = new Astronomical ( "AEBE_Type", 1101101, AstronomicalType.Stars ); + public static readonly Astronomical B_Type = new Astronomical ( "B_Type", 1100201, AstronomicalType.Stars ); + public static readonly Astronomical B_TypeGiant = new Astronomical ( "B_TypeGiant", 1100202, AstronomicalType.Stars ); + public static readonly Astronomical B_TypeSuperGiant = new Astronomical ( "B_TypeSuperGiant", 1100203, AstronomicalType.Stars ); + public static readonly Astronomical Black_Holes = new Astronomical ( "Black_Holes", 1102400, AstronomicalType.Stars ); + public static readonly Astronomical C_Type = new Astronomical ( "C_Type", 1101401, AstronomicalType.Stars ); + public static readonly Astronomical C_TypeGiant = new Astronomical ( "C_TypeGiant", 1101402, AstronomicalType.Stars ); + public static readonly Astronomical C_TypeHyperGiant = new Astronomical ( "C_TypeHyperGiant", 1101404, AstronomicalType.Stars ); + public static readonly Astronomical C_TypeSuperGiant = new Astronomical ( "C_TypeSuperGiant", 1101403, AstronomicalType.Stars ); + public static readonly Astronomical CJ_Type = new Astronomical ( "CJ_Type", null, AstronomicalType.Stars ); + public static readonly Astronomical CN_Type = new Astronomical ( "CN_Type", null, AstronomicalType.Stars ); + public static readonly Astronomical D_Type = new Astronomical ( "D_Type", 1102201, AstronomicalType.Stars ); + public static readonly Astronomical DA_Type = new Astronomical ( "DA_Type", 1102202, AstronomicalType.Stars ); + public static readonly Astronomical DAB_Type = new Astronomical ( "DAB_Type", 1102203, AstronomicalType.Stars ); + public static readonly Astronomical DAV_Type = new Astronomical ( "DAV_Type", 1102205, AstronomicalType.Stars ); + public static readonly Astronomical DAZ_Type = new Astronomical ( "DAZ_Type", 1102206, AstronomicalType.Stars ); + public static readonly Astronomical DB_Type = new Astronomical ( "DB_Type", 1102207, AstronomicalType.Stars ); + public static readonly Astronomical DBV_Type = new Astronomical ( "DBV_Type", 1102208, AstronomicalType.Stars ); + public static readonly Astronomical DBZ_Type = new Astronomical ( "DBZ_Type", null, AstronomicalType.Stars ); + public static readonly Astronomical DC_Type = new Astronomical ( "DC_Type", 1102213, AstronomicalType.Stars ); + public static readonly Astronomical DCV_Type = new Astronomical ( "DCV_Type", null, AstronomicalType.Stars ); + public static readonly Astronomical DQ_Type = new Astronomical ( "DQ_Type", 1102212, AstronomicalType.Stars ); + public static readonly Astronomical F_Type = new Astronomical ( "F_Type", 1100401, AstronomicalType.Stars ); + public static readonly Astronomical F_TypeGiant = new Astronomical ( "F_TypeGiant", 1100402, AstronomicalType.Stars ); + public static readonly Astronomical F_TypeSuperGiant = new Astronomical ( "F_TypeSuperGiant", 1100403, AstronomicalType.Stars ); + public static readonly Astronomical G_Type = new Astronomical ( "G_Type", 1100501, AstronomicalType.Stars ); + public static readonly Astronomical G_TypeGiant = new Astronomical ( "G_TypeGiant", 1100502, AstronomicalType.Stars ); + public static readonly Astronomical G_TypeSuperGiant = new Astronomical ( "G_TypeSuperGiant", 1100503, AstronomicalType.Stars ); + public static readonly Astronomical K_Type = new Astronomical ( "K_Type", 1100601, AstronomicalType.Stars ); + public static readonly Astronomical K_TypeGiant = new Astronomical ( "K_TypeGiant", 1100602, AstronomicalType.Stars ); + public static readonly Astronomical K_TypeSuperGiant = new Astronomical ( "K_TypeSuperGiant", 1100603, AstronomicalType.Stars ); + public static readonly Astronomical L_Type = new Astronomical ( "L_Type", 1100801, AstronomicalType.Stars ); + public static readonly Astronomical M_Type = new Astronomical ( "M_Type", 1100701, AstronomicalType.Stars ); + public static readonly Astronomical M_TypeGiant = new Astronomical ( "M_TypeGiant", 1100702, AstronomicalType.Stars ); + public static readonly Astronomical M_TypeSuperGiant = new Astronomical ( "M_TypeSuperGiant", 1100703, AstronomicalType.Stars ); + public static readonly Astronomical MS_Type = new Astronomical ( "MS_Type", null, AstronomicalType.Stars ); + public static readonly Astronomical Neutron_Stars = new Astronomical ( "Neutron_Stars", 1102300, AstronomicalType.Stars ); + public static readonly Astronomical O_Type = new Astronomical ( "O_Type", 1100101, AstronomicalType.Stars ); + public static readonly Astronomical O_TypeGiant = new Astronomical ( "O_TypeGiant", 1100102, AstronomicalType.Stars ); + public static readonly Astronomical O_TypeSuperGiant = new Astronomical ( "O_TypeSuperGiant", 1100103, AstronomicalType.Stars ); + public static readonly Astronomical S_Type = new Astronomical ( "S_Type", 1102001, AstronomicalType.Stars ); + public static readonly Astronomical S_TypeGiant = new Astronomical ( "S_TypeGiant", 1102002, AstronomicalType.Stars ); + public static readonly Astronomical SupermassiveBlack_Holes = new Astronomical ( "SupermassiveBlack_Holes", 1102500, AstronomicalType.Stars ); + public static readonly Astronomical T_Type = new Astronomical ( "T_Type", 1100901, AstronomicalType.Stars ); + public static readonly Astronomical TTS_Type = new Astronomical ( "TTS_Type", 1101001, AstronomicalType.Stars ); + public static readonly Astronomical W_Type = new Astronomical ( "W_Type", 1102101, AstronomicalType.Stars ); + public static readonly Astronomical WC_Type = new Astronomical ( "WC_Type", 1102102, AstronomicalType.Stars ); + public static readonly Astronomical WN_Type = new Astronomical ( "WN_Type", 1102103, AstronomicalType.Stars ); + public static readonly Astronomical WNC_Type = new Astronomical ( "WNC_Type", 1102104, AstronomicalType.Stars ); + public static readonly Astronomical WO_Type = new Astronomical ( "WO_Type", 1102105, AstronomicalType.Stars ); + public static readonly Astronomical Y_Type = new Astronomical ( "Y_Type", 1101201, AstronomicalType.Stars ); + + public static readonly Astronomical Earth_Likes = new Astronomical( "Earth_Likes", 1300100, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ammonia_Worlds = new Astronomical( "Standard_Ammonia_Worlds", 1300202, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_High_Metal_Content_No_Atmos = new Astronomical( "Standard_High_Metal_Content_No_Atmos", 1300501, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ice_No_Atmos = new Astronomical ( "Standard_Ice_No_Atmos", 1300801, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Metal_Rich_No_Atmos = new Astronomical ( "Standard_Metal_Rich_No_Atmos", 1300401, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Rocky_Ice_No_Atmos = new Astronomical ( "Standard_Rocky_Ice_No_Atmos", 1300701, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Rocky_No_Atmos = new Astronomical ( "Standard_Rocky_No_Atmos", 1300601, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ter_High_Metal_Content = new Astronomical ( "Standard_Ter_High_Metal_Content", 1301501, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ter_Ice = new Astronomical ( "Standard_Ter_Ice", 1301801, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ter_Metal_Rich = new Astronomical ( "Standard_Ter_Metal_Rich", 1301401, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ter_Rocky_Ice = new Astronomical ( "Standard_Ter_Rocky_Ice", 1301701, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Ter_Rocky = new Astronomical ( "Standard_Ter_Rocky", 1301601, AstronomicalType.Terrestrials ); + public static readonly Astronomical Standard_Water_Worlds = new Astronomical ( "Standard_Water_Worlds", 1300301, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_Ammonia_Worlds = new Astronomical ( "TRF_Ammonia_Worlds", null, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_High_Metal_Content_No_Atmos = new Astronomical ( "TRF_High_Metal_Content_No_Atmos", 1300502, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_Rocky_No_Atmos = new Astronomical ( "TRF_Rocky_No_Atmos", 1300602, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_Ter_High_Metal_Content = new Astronomical ( "TRF_Ter_High_Metal_Content", 1301502, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_Ter_Metal_Rich = new Astronomical( "TRF_Ter_Metal_Rich", null, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_Ter_Rocky = new Astronomical( "TRF_Ter_Rocky", 1301602, AstronomicalType.Terrestrials ); + public static readonly Astronomical TRF_Water_Worlds = new Astronomical ( "TRF_Water_Worlds", 1300302, AstronomicalType.Terrestrials ); + + public long? entryID { get; private set; } + + [PublicAPI] + public AstronomicalType type { get; private set; } + + [PublicAPI] + public string localizedDescription { get; private set; } + + // dummy used to ensure that the static constructor has run + public Astronomical () : this( "", null, null ) + { } + + private Astronomical ( string edname, long? entryID, AstronomicalType type ) : base( edname, edname ) + { + this.entryID = entryID; + this.type = type; + this.localizedDescription = AllOfThem.Any(a => a.edname == edname) + ? Properties.AstronomicalDesc.ResourceManager.GetString( edname ) + : string.Empty; + } + + /// + /// Try getting data from the entryid first, then use edname as a fallback + /// + public static Astronomical Lookup ( long? entryId, string edname ) + { + try + { + if ( entryId != null ) + { + return AllOfThem.Single( a => a.entryID == entryId ); + } + } + catch ( InvalidOperationException e ) + { + if ( AllOfThem.Count( a => a.entryID == entryId ) > 1 ) + { + Logging.Error( $"Duplicate EntryID value {entryId} in {nameof( Astronomical )}.", e ); + } + else if ( AllOfThem.All( a => a.entryID != entryId ) ) + { + Logging.Error( $"Unknown EntryID value {entryId} with edname {edname} in {nameof( Astronomical )}.", e ); + } + } + + return FromEDName( edname ) ?? + new Astronomical( edname, entryId, null ); // No match. + } + } +} diff --git a/DataDefinitions/AstronomicalType.cs b/DataDefinitions/AstronomicalType.cs new file mode 100644 index 0000000000..b1fdbb3e4e --- /dev/null +++ b/DataDefinitions/AstronomicalType.cs @@ -0,0 +1,27 @@ +namespace EddiDataDefinitions +{ + public class AstronomicalType : ResourceBasedLocalizedEDName + { + static AstronomicalType () + { + resourceManager = Properties.AstronomicalType.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new AstronomicalType( edname ); + + GasGiants = new AstronomicalType( "Gas_Giants" ); + Stars = new AstronomicalType( "Stars" ); + Terrestrials = new AstronomicalType( "Terrestrials" ); + } + + public static readonly AstronomicalType GasGiants; + public static readonly AstronomicalType Stars; + public static readonly AstronomicalType Terrestrials; + + // dummy used to ensure that the static constructor has run + public AstronomicalType () : this( "" ) + { } + + private AstronomicalType ( string edname ) : base( edname, edname ) + { } + } +} diff --git a/DataDefinitions/AtmosphereThickness.cs b/DataDefinitions/AtmosphereThickness.cs new file mode 100644 index 0000000000..56b1415e87 --- /dev/null +++ b/DataDefinitions/AtmosphereThickness.cs @@ -0,0 +1,96 @@ +using Newtonsoft.Json; +using Utilities; +using System.Globalization; +using System.Runtime.CompilerServices; +using System.Diagnostics.Tracing; + +namespace EddiDataDefinitions +{ + /// Atmosphere Thickness + [JsonObject(MemberSerialization.OptIn)] + public class AtmosphereThickness : ResourceBasedLocalizedEDName + { + static AtmosphereThickness() + { + resourceManager = Properties.AtmosphereThickness.ResourceManager; + resourceManager.IgnoreCase = false; + missingEDNameHandler = (edname) => new AtmosphereThickness(edname); + + None = new AtmosphereThickness("None"); + Normal = new AtmosphereThickness("Normal"); + Thin = new AtmosphereThickness("Thin"); + Thick = new AtmosphereThickness("Thick"); + HotThick = new AtmosphereThickness("HotThick"); + GasGiant = new AtmosphereThickness("GasGiant"); + } + + public static readonly AtmosphereThickness None; + public static readonly AtmosphereThickness Normal; + public static readonly AtmosphereThickness Thin; + public static readonly AtmosphereThickness Thick; + public static readonly AtmosphereThickness HotThick; + public static readonly AtmosphereThickness GasGiant; + + // dummy used to ensure that the static constructor has run + public AtmosphereThickness () : this("") + { } + + private AtmosphereThickness(string edname) : base(edname, NormalizeAtmosphereThickness(edname)) + { } + + new public static AtmosphereThickness FromName( string name ) + { + string normalizedName; + if ( name == null || name == "" ) + { + normalizedName = "None"; + } + else { + normalizedName = NormalizeAtmosphereThickness(name); + } + + return ResourceBasedLocalizedEDName.FromName( normalizedName ); + } + + new public static AtmosphereThickness FromEDName( string edname ) + { + string normalizedEDName; + if ( edname == null || edname == "" ) + { + normalizedEDName = "None"; + } + else { + normalizedEDName = NormalizeAtmosphereThickness(edname); + } + + return ResourceBasedLocalizedEDName.FromEDName( normalizedEDName ); + } + + public static string NormalizeAtmosphereThickness( string edname ) + { + string returnVal; + string normalizedThickness = edname.ToLowerInvariant() + .Replace(" ", "_") + .Replace("-", ""); + + if (normalizedThickness.Contains("no_atmosphere") || normalizedThickness=="" || normalizedThickness=="none" ) { + returnVal = "None"; + } + else if (normalizedThickness.Contains("hot_thick") || normalizedThickness.Contains("hotthick")) { + returnVal = "HotThick"; + } + else if (normalizedThickness.Contains("thick")) { + returnVal = "Thick"; + } + else if (normalizedThickness.Contains("thin")) { + returnVal = "Thin"; + } + else if (normalizedThickness.Contains("gas_giant") || normalizedThickness.Contains("gasgiant")) { + returnVal = "GasGiant"; + } + else returnVal = "Normal"; + + return returnVal; + } + } +} diff --git a/DataDefinitions/Body.cs b/DataDefinitions/Body.cs index 34573f52fa..3ba4fd4dd5 100644 --- a/DataDefinitions/Body.cs +++ b/DataDefinitions/Body.cs @@ -13,6 +13,17 @@ namespace EddiDataDefinitions /// public class Body : INotifyPropertyChanged { + /// Information for Non-Human Surface Signals (biology/geology) + [PublicAPI("Data about surface signals that have been found on the body")] + //public SurfaceSignals _surfaceSignals { get; set; } = new SurfaceSignals(); + [JsonIgnore] private SurfaceSignals _surfaceSignals = new SurfaceSignals(); + public SurfaceSignals surfaceSignals + { + get => _surfaceSignals; + set { _surfaceSignals = value; OnPropertyChanged( "SurfaceSignals" ); } + } + //[JsonIgnore] private DateTime? _mappedDateTime; + /// The ID of this body in the star system public long? bodyId { get; set; } @@ -56,7 +67,7 @@ public class Body : INotifyPropertyChanged /// The body's rings [PublicAPI] - public List rings { get; set; } + public List rings { get; set; } = new List(); // Scan data @@ -151,23 +162,20 @@ public bool mappedEfficiently public decimal? semimajoraxis { get; set; } /// The parent bodies to this body, if any - public List> parents + public List> parents { - get - { - return _parents; - } + get => _parents; set { if (bodyType == null) { if (planetClass != null) { - if (value.Exists(p => p.ContainsKey("Planet"))) + if ( value.Exists( p => p.ContainsKey( "Planet" ) ) ) { bodyType = BodyType.Moon; } - else if (value.Exists(p => p.ContainsKey("Star"))) + else if ( value.Exists( p => p.ContainsKey( "Star" ) ) ) { bodyType = BodyType.Planet; } @@ -181,7 +189,7 @@ public List> parents OnPropertyChanged(); } } - [JsonIgnore] private List> _parents; + [JsonIgnore] private List> _parents; /// Density in Kg per cubic meter [PublicAPI, JsonIgnore] @@ -284,12 +292,12 @@ public Body() (decimal?)StarClass.DistanceFromStarForTemperature(StarClass.minHabitableTempKelvin, Convert.ToDouble(radius), Convert.ToDouble(temperature)) : null; /// Star definition - public Body(string bodyName, long? bodyId, string systemName, ulong systemAddress, List> parents, decimal? distanceLs, string stellarclass, int? stellarsubclass, decimal? solarmass, decimal radiusKm, decimal? absolutemagnitude, long? ageMegaYears, decimal? temperatureKelvin, string luminosityclass, decimal? semimajoraxisLs, decimal? eccentricity, decimal? orbitalinclinationDegrees, decimal? periapsisDegrees, decimal? orbitalPeriodDays, decimal? rotationPeriodDays, decimal? axialTiltDegrees, List rings, bool? alreadydiscovered, bool? alreadymapped) + public Body(string bodyName, long? bodyId, string systemName, ulong systemAddress, List> parents, decimal? distanceLs, string stellarclass, int? stellarsubclass, decimal? solarmass, decimal radiusKm, decimal? absolutemagnitude, long? ageMegaYears, decimal? temperatureKelvin, string luminosityclass, decimal? semimajoraxisLs, decimal? eccentricity, decimal? orbitalinclinationDegrees, decimal? periapsisDegrees, decimal? orbitalPeriodDays, decimal? rotationPeriodDays, decimal? axialTiltDegrees, List rings, bool? alreadydiscovered, bool? alreadymapped) { this.bodyname = bodyName; this.radius = radiusKm; this.bodyType = BodyType.Star; - this.rings = rings ?? new List(); + this.rings = rings; this.temperature = temperatureKelvin; this.bodyId = bodyId; @@ -370,6 +378,10 @@ private long estimateStarValue() // Body-specific items + /// The atmosphere thickness + [PublicAPI] + public AtmosphereThickness atmospherethickness { get; set; } = AtmosphereThickness.None; + /// The atmosphere class public AtmosphereClass atmosphereclass { get; set; } = AtmosphereClass.None; @@ -435,12 +447,12 @@ private long estimateStarValue() public ReserveLevel reserveLevel { get; set; } = ReserveLevel.None; /// Planet or Moon definition - public Body(string bodyName, long? bodyId, string systemName, ulong systemAddress, List> parents, decimal? distanceLs, bool? tidallylocked, TerraformState terraformstate, PlanetClass planetClass, AtmosphereClass atmosphereClass, List atmosphereCompositions, Volcanism volcanism, decimal? earthmass, decimal? radiusKm, decimal gravity, decimal? temperatureKelvin, decimal? pressureAtm, bool? landable, List materials, List solidCompositions, decimal? semimajoraxisLs, decimal? eccentricity, decimal? orbitalinclinationDegrees, decimal? periapsisDegrees, decimal? orbitalPeriodDays, decimal? rotationPeriodDays, decimal? axialtiltDegrees, List rings, ReserveLevel reserveLevel, bool? alreadydiscovered, bool? alreadymapped) + public Body(string bodyName, long? bodyId, string systemName, ulong systemAddress, List> parents, decimal? distanceLs, bool? tidallylocked, TerraformState terraformstate, PlanetClass planetClass, AtmosphereThickness atmosphereThickness, AtmosphereClass atmosphereClass, List atmosphereCompositions, Volcanism volcanism, decimal? earthmass, decimal? radiusKm, decimal gravity, decimal? temperatureKelvin, decimal? pressureAtm, bool? landable, List materials, List solidCompositions, decimal? semimajoraxisLs, decimal? eccentricity, decimal? orbitalinclinationDegrees, decimal? periapsisDegrees, decimal? orbitalPeriodDays, decimal? rotationPeriodDays, decimal? axialtiltDegrees, List rings, ReserveLevel reserveLevel, bool? alreadydiscovered, bool? alreadymapped) { this.bodyname = bodyName; - this.bodyType = (bool)parents?.Exists(p => p.ContainsKey("Planet")) - ? BodyType.Moon : BodyType.Planet; - this.rings = rings ?? new List(); + this.bodyType = (bool)parents?.Exists( p => p.ContainsKey( BodyType.Planet.invariantName ) ) + ? BodyType.Moon : BodyType.Planet; + this.rings = rings; this.temperature = temperature; this.bodyId = bodyId; @@ -453,6 +465,7 @@ public Body(string bodyName, long? bodyId, string systemName, ulong systemAddres this.pressure = pressureAtm; this.tidallylocked = tidallylocked; this.landable = landable; + this.atmospherethickness = atmosphereThickness; this.atmosphereclass = atmosphereClass; this.atmospherecompositions = atmosphereCompositions; this.solidcompositions = solidCompositions; diff --git a/DataDefinitions/CodexEntry.cs b/DataDefinitions/CodexEntry.cs new file mode 100644 index 0000000000..a8c4c2611b --- /dev/null +++ b/DataDefinitions/CodexEntry.cs @@ -0,0 +1,108 @@ +using Utilities; + +namespace EddiDataDefinitions +{ + public class CodexEntry + { + public long entryId { get; } + + public string edname { get; } + + [PublicAPI] + public string entryName { get; } + + [PublicAPI] + public string subCategoryName { get; } + + [PublicAPI] + public string categoryName { get; } + + [PublicAPI] + public string localizedRegion { get; } + + [PublicAPI] + public string systemName { get; } + + public ulong systemAddress { get; } + + [PublicAPI] + public Organic organic { get; private set; } + + [PublicAPI] + public Geology geology { get; private set; } + + [PublicAPI] + public Astronomical astronomical { get; private set; } + + [PublicAPI] + public Guardian guardian { get; private set; } + + [PublicAPI] + public Thargoid thargoid { get; private set; } + + public CodexEntry ( long entryId, string edname, string subCategoryEDName, string categoryEDName, string localizedRegion, string systemName, ulong systemAddress ) + { + this.entryId = entryId; + this.edname = edname; + this.entryName = NormalizedName( edname ); + this.subCategoryName = NormalizedSubCategory( subCategoryEDName ); + this.categoryName = NormalizedCategory( categoryEDName ); + this.localizedRegion = localizedRegion; + this.systemName = systemName; + this.systemAddress = systemAddress; + + if ( categoryName == "Biology" ) + { + if ( subCategoryName == "Organic_Structures" ) + { + organic = Organic.Lookup( entryId, edname ); + } + else if ( subCategoryName == "Geology_and_Anomalies" ) + { + geology = Geology.Lookup( entryId, edname ); + } + } + else if ( categoryName == "StellarBodies" ) + { + astronomical = Astronomical.Lookup( entryId, edname ); + } + else if ( categoryName == "Civilisations" ) + { + if ( subCategoryName == "Guardian" ) + { + guardian = Guardian.Lookup( entryId, edname ); + } + else if ( subCategoryName == "Thargoid" ) + { + thargoid = Thargoid.Lookup( entryId, edname ); + } + } + } + + private static string NormalizedName ( string edname ) + { + return edname? + .Replace( "Codex_Ent_", "" ) + .Replace( "$", "" ) + .Replace( "_Name;", "" ) + .Replace( "_name;", "" ) + .Replace( ";", "" ); + } + + private static string NormalizedSubCategory ( string subcategoryEDName ) + { + return subcategoryEDName? + .Replace( "Codex_SubCategory_", "" ) + .Replace( "$", "" ) + .Replace( ";", "" ); + } + + private static string NormalizedCategory ( string categoryEDName ) + { + return categoryEDName? + .Replace( "Codex_Category_", "" ) + .Replace( "$", "" ) + .Replace( ";", "" ); + } + } +} diff --git a/DataDefinitions/EddiDataDefinitions.csproj b/DataDefinitions/EddiDataDefinitions.csproj index 7671b7d176..010e2baef0 100644 --- a/DataDefinitions/EddiDataDefinitions.csproj +++ b/DataDefinitions/EddiDataDefinitions.csproj @@ -14,6 +14,76 @@ true + + AtmosphereThickness.resx + True + True + + + GuardianSiteBlueprint.resx + True + True + + + NebulaType.resx + True + True + + + GuardianSiteType.resx + True + True + + + GuardianDesc.resx + True + True + + + True + True + OrganicVariant.resx + + + ThargoidDesc.resx + True + True + + + Guardian.resx + True + True + + + Thargoid.resx + True + True + + + GeologyDesc.resx + True + True + + + GeologyTypeDesc.resx + True + True + + + Geology.resx + True + True + + + GeologyType.resx + True + True + + + AstronomicalType.resx + True + True + MessageChannels.resx True @@ -54,6 +124,46 @@ True NpcShip.resx + + AstronomicalDesc.resx + True + True + + + Astronomical.resx + True + True + + + OrganicGenus.resx + True + True + + + OrganicSpeciesCond.resx + True + True + + + OrganicVariantName.resx + True + True + + + OrganicSpecies.resx + True + True + + + OrganicSpeciesDesc.resx + True + True + + + True + True + OrganicGenusDesc.resx + True True @@ -344,6 +454,62 @@ + + AtmosphereThickness.Designer.cs + PublicResXFileCodeGenerator + + + GuardianSiteBlueprint.Designer.cs + PublicResXFileCodeGenerator + + + NebulaType.Designer.cs + PublicResXFileCodeGenerator + + + GuardianSiteType.Designer.cs + PublicResXFileCodeGenerator + + + GuardianDesc.Designer.cs + PublicResXFileCodeGenerator + + + ResXFileCodeGenerator + OrganicVariant.Designer.cs + + + ThargoidDesc.Designer.cs + PublicResXFileCodeGenerator + + + Guardian.Designer.cs + PublicResXFileCodeGenerator + + + Thargoid.Designer.cs + PublicResXFileCodeGenerator + + + GeologyDesc.Designer.cs + PublicResXFileCodeGenerator + + + GeologyTypeDesc.Designer.cs + PublicResXFileCodeGenerator + + + Geology.Designer.cs + PublicResXFileCodeGenerator + + + GeologyType.Designer.cs + PublicResXFileCodeGenerator + + + AstronomicalType.Designer.cs + PublicResXFileCodeGenerator + ResXFileCodeGenerator LoadoutDescription.Designer.cs @@ -401,11 +567,47 @@ PublicResXFileCodeGenerator NpcShip.Designer.cs - + + AstronomicalDesc.Designer.cs + PublicResXFileCodeGenerator + + + Astronomical.Designer.cs + PublicResXFileCodeGenerator + + + OrganicGenus.Designer.cs + PublicResXFileCodeGenerator + + + OrganicSpeciesCond.Designer.cs + PublicResXFileCodeGenerator + + + OrganicSpeciesCond.Designer.cs + PublicResXFileCodeGenerator + + + OrganicVariantName.Designer.cs + PublicResXFileCodeGenerator + + + OrganicSpecies.Designer.cs + PublicResXFileCodeGenerator + + + OrganicSpeciesDesc.Designer.cs + PublicResXFileCodeGenerator + + PublicResXFileCodeGenerator - SignalType.Designer.cs + OrganicGenusDesc.Designer.cs - + + PublicResXFileCodeGenerator + SignalType.Designer.cs + + PublicResXFileCodeGenerator StationState.Designer.cs diff --git a/DataDefinitions/Exobiology.cs b/DataDefinitions/Exobiology.cs new file mode 100644 index 0000000000..bd39c2e5b0 --- /dev/null +++ b/DataDefinitions/Exobiology.cs @@ -0,0 +1,161 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using Utilities; +using Newtonsoft.Json; + +namespace EddiDataDefinitions +{ + public class Exobiology : Organic, INotifyPropertyChanged + { + + public event PropertyChangedEventHandler PropertyChanged; + protected void OnPropertyChanged(string propertyName) { + PropertyChanged?.Invoke( this, new PropertyChangedEventArgs( propertyName ) ); + } + + public enum State + { + Predicted, + Confirmed, + SampleStarted, // Logged (1st sample collected) + SampleInProgress, // Sampled (2nd sample collected) + SampleComplete, // Sampled (3rd sample collected) + SampleAnalysed // Analysed - this comes shortly after the final sample is collected + } + + + private State _scanState; + + [JsonProperty] + public State ScanState + { + get { return _scanState; } + set { + _scanState = value; + OnPropertyChanged("ScanState"); + } + } + + [JsonIgnore] + public OrganicGenus Genus + { + get { return this.genus; } + set { + this.genus = value; + OnPropertyChanged("Genus"); + } + } + + [JsonIgnore] + public OrganicSpecies Species + { + get { return this.species; } + set { + this.species = value; + OnPropertyChanged("Species"); + } + } + + [JsonIgnore] + public OrganicVariant Variant + { + get { return this.variant; } + set { + this.variant = value; + OnPropertyChanged("Variant"); + } + } + + [PublicAPI, JsonIgnore] + public string state => ScanState.ToString(); + + // coordinates of scan [n-1]. Only Log and Sample are stored. + [ PublicAPI ] + public List> sampleCoords = new List>(); + + [PublicAPI, JsonProperty] + public bool nearPriorSample { get; set; } + + [PublicAPI, JsonIgnore] + public int samples => sampleCoords.Count; + + public Exobiology () + { + } + + /// + /// This is meant for creating new predicted organics as only the genus is saved + /// + /// + /// + public Exobiology ( Organic organic, bool isPrediction = false ) : base ( organic.genus ) + { + this.Genus = organic.genus; + this.ScanState = isPrediction ? State.Predicted : State.Confirmed; + this.SetPredictedMinimumValue(organic.predictedMinimumValue); + this.SetPredictedMaximumValue(organic.predictedMaximumValue); + } + + public Exobiology ( OrganicGenus genus, bool isPrediction = false ) : base ( genus ) + { + this.Genus = genus; + this.ScanState = isPrediction ? State.Predicted : State.Confirmed; + } + + public Exobiology ( OrganicSpecies species, bool isPrediction = false ) : base( species ) + { + this.Genus = species.genus; + this.Species = species; + this.ScanState = isPrediction ? State.Predicted : State.Confirmed; + } + + public Exobiology ( OrganicVariant variant, bool isPrediction = false ) : base( variant ) + { + this.Genus = variant.genus; + this.Species = variant.species; + this.Variant = variant; + this.ScanState = isPrediction ? State.Predicted : State.Confirmed; + } + + public void SetScanState(State state) { + this.ScanState = state; + } + + public void SetPrediction(bool isPrediction) { + this.ScanState = isPrediction ? State.Predicted : State.Confirmed; + } + + /// Increase the sample count, set the coordinates, and return the number of scans complete. + public void Sample ( string scanType, OrganicVariant sampleVariant, decimal? latitude, decimal? longitude ) + { + if ( this.Variant is null ) + { + SetVariantData( sampleVariant ); + } + + // Check for sample type and update sample coordinates + if ( scanType == "Log" ) + { + ScanState = State.SampleStarted; + sampleCoords.Add( new Tuple( latitude, longitude ) ); + } + else if ( scanType == "Sample" && samples < 2 ) + { + ScanState = State.SampleInProgress; + sampleCoords.Add( new Tuple( latitude, longitude ) ); + } + else if ( scanType == "Sample" && samples == 2 ) + { + ScanState = State.SampleComplete; + sampleCoords.Add( new Tuple( latitude, longitude ) ); + } + else if ( scanType == "Analyse" ) + { + ScanState = State.SampleAnalysed; + } + + nearPriorSample = true; + } + } +} diff --git a/DataDefinitions/Geology.cs b/DataDefinitions/Geology.cs new file mode 100644 index 0000000000..cf6015f41a --- /dev/null +++ b/DataDefinitions/Geology.cs @@ -0,0 +1,157 @@ +using System; +using System.Linq; +using Utilities; + +namespace EddiDataDefinitions +{ + public class Geology : ResourceBasedLocalizedEDName + { + static Geology () + { + resourceManager = Properties.Geology.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new Geology( edname ); + } + + public static readonly Geology Fumarole_CarbonDioxideGeysers = new Geology( "Fumarole_CarbonDioxideGeysers", 1400109, GeologyType.Fumarole, (long)50000 ); + public static readonly Geology Fumarole_SilicateVapourGeysers = new Geology( "Fumarole_SilicateVapourGeysers", 1400114, GeologyType.Fumarole, (long)50000 ); + public static readonly Geology Fumarole_SulphurDioxideMagma = new Geology( "Fumarole_SulphurDioxideMagma", 1400102, GeologyType.Fumarole, (long)50000 ); + public static readonly Geology Fumarole_WaterGeysers = new Geology( "Fumarole_WaterGeysers", 1400108, GeologyType.Fumarole, (long)50000 ); + public static readonly Geology Gas_Clds_Blue = new Geology( "Gas_Clds_Blue", 1400601, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Green = new Geology( "Gas_Clds_Green", 1400701, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Green_Storm = new Geology( "Gas_Clds_Green_Storm", 1400702, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Light = new Geology( "Gas_Clds_Light", 1401300, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Orange = new Geology( "Gas_Clds_Orange", 1400801, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Orange_Storm = new Geology( "Gas_Clds_Orange_Storm", 1400802, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Pink = new Geology( "Gas_Clds_Pink", 1400901, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Pink_Storm = new Geology( "Gas_Clds_Pink_Storm", 1400902, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Red = new Geology( "Gas_Clds_Red", 1401001, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Red_Storm = new Geology( "Gas_Clds_Red_Storm", 1401002, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Yellow = new Geology( "Gas_Clds_Yellow", 1401101, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Clds_Yellow_Storm = new Geology( "Gas_Clds_Yellow_Storm", 1401102, GeologyType.LagrangeCloud, (long)50000 ); + public static readonly Geology Gas_Vents_CarbonDioxideGeysers = new Geology( "Gas_Vents_CarbonDioxideGeysers", 1400409, GeologyType.GasVent, (long)50000 ); + public static readonly Geology Gas_Vents_SilicateVapourGeysers = new Geology( "Gas_Vents_SilicateVapourGeysers", 1400414, GeologyType.GasVent, (long)50000 ); + public static readonly Geology Gas_Vents_SulphurDioxideMagma = new Geology( "Gas_Vents_SulphurDioxideMagma", 1400402, GeologyType.GasVent, (long)50000 ); + public static readonly Geology Gas_Vents_WaterGeysers = new Geology( "Gas_Vents_WaterGeysers", 1400408, GeologyType.GasVent, (long)50000 ); + public static readonly Geology Geysers_WaterGeysers = new Geology( "Geysers_WaterGeysers", 1400208, GeologyType.WaterGeyser, (long)50000 ); + public static readonly Geology IceFumarole_AmmoniaGeysers = new Geology( "IceFumarole_AmmoniaGeysers", 1400160, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceFumarole_CarbonDioxideGeysers = new Geology( "IceFumarole_CarbonDioxideGeysers", 1400159, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceFumarole_MethaneGeysers = new Geology( "IceFumarole_MethaneGeysers", 1400161, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceFumarole_NitrogenGeysers = new Geology( "IceFumarole_NitrogenGeysers", 1400162, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceFumarole_SilicateVapourGeysers = new Geology( "IceFumarole_SilicateVapourGeysers", 1400164, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceFumarole_SulphurDioxideMagma = new Geology( "IceFumarole_SulphurDioxideMagma", 1400152, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceFumarole_WaterGeysers = new Geology( "IceFumarole_WaterGeysers", 1400158, GeologyType.IceFumarole, (long)50000 ); + public static readonly Geology IceGeysers_AmmoniaGeysers = new Geology( "IceGeysers_AmmoniaGeysers", 1400260, GeologyType.IceGeyser, (long)50000 ); + public static readonly Geology IceGeysers_CarbonDioxideGeysers = new Geology( "IceGeysers_CarbonDioxideGeysers", 1400259, GeologyType.IceGeyser, (long)50000 ); + public static readonly Geology IceGeysers_MethaneGeysers = new Geology( "IceGeysers_MethaneGeysers", 1400261, GeologyType.IceGeyser, (long)50000 ); + public static readonly Geology IceGeysers_NitrogenGeysers = new Geology( "IceGeysers_NitrogenGeysers", 1400262, GeologyType.IceGeyser, (long)50000 ); + public static readonly Geology IceGeysers_WaterGeysers = new Geology( "IceGeysers_WaterGeysers", 1400258, GeologyType.IceGeyser, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_001 = new Geology( "L_Phn_Part_Cld_001", 2401001, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_002 = new Geology( "L_Phn_Part_Cld_002", 2401002, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_003 = new Geology( "L_Phn_Part_Cld_003", 2401003, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_004 = new Geology( "L_Phn_Part_Cld_004", 2401004, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_005 = new Geology( "L_Phn_Part_Cld_005", 2401005, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_006 = new Geology( "L_Phn_Part_Cld_006", 2401006, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_007 = new Geology( "L_Phn_Part_Cld_007", 2401007, GeologyType.E_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_008 = new Geology( "L_Phn_Part_Cld_008", 2401008, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_009 = new Geology( "L_Phn_Part_Cld_009", 2401009, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_010 = new Geology( "L_Phn_Part_Cld_010", 2401010, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_011 = new Geology( "L_Phn_Part_Cld_011", 2401011, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_012 = new Geology( "L_Phn_Part_Cld_012", 2401012, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_013 = new Geology( "L_Phn_Part_Cld_013", 2401013, GeologyType.E_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_014 = new Geology( "L_Phn_Part_Cld_014", 2401014, GeologyType.E_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_015 = new Geology( "L_Phn_Part_Cld_015", 2401015, GeologyType.E_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_016 = new Geology( "L_Phn_Part_Cld_016", 2401016, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Cld_017 = new Geology( "L_Phn_Part_Cld_017", 2401017, GeologyType.K_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_001 = new Geology( "L_Phn_Part_Clus_001", 2402001, GeologyType.T_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_002 = new Geology( "L_Phn_Part_Clus_002", 2402002, GeologyType.T_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_003 = new Geology( "L_Phn_Part_Clus_003", 2402003, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_004 = new Geology( "L_Phn_Part_Clus_004", 2402004, GeologyType.T_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_005 = new Geology( "L_Phn_Part_Clus_005", 2402005, GeologyType.T_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_007 = new Geology( "L_Phn_Part_Clus_007", 2402007, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_008 = new Geology( "L_Phn_Part_Clus_008", 2402008, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_009 = new Geology( "L_Phn_Part_Clus_009", 24020009, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_010 = new Geology( "L_Phn_Part_Clus_010", 24020010, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_011 = new Geology( "L_Phn_Part_Clus_011", 2402011, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_012 = new Geology( "L_Phn_Part_Clus_012", 2402012, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Clus_013 = new Geology( "L_Phn_Part_Clus_013", 24020013, GeologyType.L_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_002 = new Geology( "L_Phn_Part_Eng_002", 2403002, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_003 = new Geology( "L_Phn_Part_Eng_003", 2403003, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_004 = new Geology( "L_Phn_Part_Eng_004", 2403004, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_005 = new Geology( "L_Phn_Part_Eng_005", 2403005, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_006 = new Geology( "L_Phn_Part_Eng_006", 2403006, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_007 = new Geology( "L_Phn_Part_Eng_007", 2403007, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_008 = new Geology( "L_Phn_Part_Eng_008", 2403008, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_009 = new Geology( "L_Phn_Part_Eng_009", 2403009, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_010 = new Geology( "L_Phn_Part_Eng_010", 2403010, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_011 = new Geology( "L_Phn_Part_Eng_011", 2403011, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_012 = new Geology( "L_Phn_Part_Eng_012", 2403012, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_013 = new Geology( "L_Phn_Part_Eng_013", 2403013, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_014 = new Geology( "L_Phn_Part_Eng_014", 2403014, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_015 = new Geology( "L_Phn_Part_Eng_015", 2403015, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Eng_016 = new Geology( "L_Phn_Part_Eng_016", 2403016, GeologyType.P_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_001 = new Geology( "L_Phn_Part_Orb_001", 2406001, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_002 = new Geology( "L_Phn_Part_Orb_002", 2406002, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_003 = new Geology( "L_Phn_Part_Orb_003", 2406003, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_004 = new Geology( "L_Phn_Part_Orb_004", 2406004, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_005 = new Geology( "L_Phn_Part_Orb_005", 2406005, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_006 = new Geology( "L_Phn_Part_Orb_006", 2406006, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_007 = new Geology( "L_Phn_Part_Orb_007", 2406007, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_008 = new Geology( "L_Phn_Part_Orb_008", 2406008, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology L_Phn_Part_Orb_009 = new Geology( "L_Phn_Part_Orb_009", 2406009, GeologyType.Q_TypeAnomaly, (long)50000 ); + public static readonly Geology Lava_Spouts_IronMagma = new Geology( "Lava_Spouts_IronMagma", 1400307, GeologyType.LavaSpout, (long)50000 ); + public static readonly Geology Lava_Spouts_SilicateMagma = new Geology( "Lava_Spouts_SilicateMagma", 1400306, GeologyType.LavaSpout, (long)50000 ); + + public long entryID; + + [PublicAPI] + public GeologyType type; + + [PublicAPI] + public long value; + + [PublicAPI] + public string localizedDescription => Properties.GeologyDesc.ResourceManager.GetString(edname); + + // dummy used to ensure that the static constructor has run + public Geology () : this( "" ) + { } + + private Geology ( string edname ) : base( edname, edname ) + { } + + private Geology ( string edname, long entryID, GeologyType type, long value ) : base( edname, edname ) + { + this.entryID = entryID; + this.type = type; + this.value = value; + } + + /// + /// Try getting data from the entryid first, then use edname as a fallback + /// + public static Geology Lookup ( long? entryID, string edname ) + { + try + { + if ( entryID != null ) + { + return AllOfThem.Single( a => a.entryID == entryID ); + } + } + catch ( InvalidOperationException e ) + { + if ( AllOfThem.Count( a => a.entryID == entryID ) > 1 ) + { + Logging.Error( $"Duplicate EntryID value {entryID} in {nameof( Geology )}.", e ); + } + else if ( AllOfThem.All( a => a.entryID != entryID ) ) + { + Logging.Error( $"Unknown EntryID value {entryID} with edname {edname} in {nameof( Geology )}.", e ); + } + } + + return FromEDName( edname ) ?? new Geology( edname ); // No match. + } + } +} diff --git a/DataDefinitions/GeologyType.cs b/DataDefinitions/GeologyType.cs new file mode 100644 index 0000000000..f4cbdd113c --- /dev/null +++ b/DataDefinitions/GeologyType.cs @@ -0,0 +1,39 @@ +using Utilities; + +namespace EddiDataDefinitions +{ + public class GeologyType : ResourceBasedLocalizedEDName + { + static GeologyType () + { + resourceManager = Properties.GeologyType.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new GeologyType( edname ); + } + + public static readonly GeologyType Fumarole = new GeologyType ( "Fumarole" ); + public static readonly GeologyType WaterGeyser = new GeologyType ( "WaterGeyser" ); + public static readonly GeologyType IceFumarole = new GeologyType ( "IceFumarole" ); + public static readonly GeologyType IceGeyser = new GeologyType ( "IceGeyser" ); + public static readonly GeologyType LavaSpout = new GeologyType ( "LavaSpout" ); + public static readonly GeologyType GasVent = new GeologyType ( "GasVent" ); + public static readonly GeologyType LagrangeCloud = new GeologyType ( "LagrangeCloud" ); + public static readonly GeologyType StormCloud = new GeologyType ( "StormCloud" ); + public static readonly GeologyType P_TypeAnomaly = new GeologyType ( "P_TypeAnomaly" ); + public static readonly GeologyType Q_TypeAnomaly = new GeologyType ( "Q_TypeAnomaly" ); + public static readonly GeologyType T_TypeAnomaly = new GeologyType ( "T_TypeAnomaly" ); + public static readonly GeologyType K_TypeAnomaly = new GeologyType ( "K_TypeAnomaly" ); + public static readonly GeologyType L_TypeAnomaly = new GeologyType ( "L_TypeAnomaly" ); + public static readonly GeologyType E_TypeAnomaly = new GeologyType ( "E_TypeAnomaly" ); + + [PublicAPI] + public string description => Properties.GeologyTypeDesc.ResourceManager.GetString( edname ); + + // dummy used to ensure that the static constructor has run + public GeologyType () : this( "" ) + { } + + private GeologyType ( string edname ) : base( edname, edname ) + { } + } +} diff --git a/DataDefinitions/Guardian.cs b/DataDefinitions/Guardian.cs new file mode 100644 index 0000000000..cfb3407891 --- /dev/null +++ b/DataDefinitions/Guardian.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Utilities; + +namespace EddiDataDefinitions +{ + public class Guardian : ResourceBasedLocalizedEDName + { + public static readonly IDictionary GUARDIANS = new Dictionary(); + public static readonly IDictionary ENTRYIDS = new Dictionary(); + + static Guardian () + { + resourceManager = Properties.Guardian.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new Guardian( edname ); + } + + public static readonly Guardian Guardian_Beacons = new Guardian( "Guardian_Beacons", 3200800, null ); + public static readonly Guardian Guardian_Data_Logs = new Guardian( "Guardian_Data_Logs", 3200200, null ); + public static readonly Guardian Guardian_Pylon = new Guardian( "Guardian_Pylon", 3200400, null ); + public static readonly Guardian Guardian_Sentinel = new Guardian( "Guardian_Sentinel", 3200600, null ); + public static readonly Guardian Guardian_Terminal = new Guardian( "Guardian_Terminal", 3200300, null ); + public static readonly Guardian Relic_Tower = new Guardian( "Relic_Tower", 3200500, null ); + + public long? entryID; + + [PublicAPI] + public long? value; + + [PublicAPI] + public string localizedDescription => Properties.GuardianDesc.ResourceManager.GetString( edname ); + + // dummy used to ensure that the static constructor has run + public Guardian () : this( "" ) + { } + + private Guardian ( string edname ) : base( edname, edname ) + { } + + private Guardian ( string edname, long? entryID, long? value ) : base( edname, edname ) + { + this.entryID = entryID; + this.value = value; + } + + /// + /// Try getting data from the entryid first, then use edname as a fallback + /// + public static Guardian Lookup ( long? entryId, string edName ) + { + try + { + if ( entryId != null ) + { + return AllOfThem.Single( a => a.entryID == entryId ); + } + } + catch ( InvalidOperationException e ) + { + if ( AllOfThem.Count( a => a.entryID == entryId ) > 1 ) + { + Logging.Error( $"Duplicate EntryID value {entryId} in {nameof( Guardian )}.", e ); + } + else if ( AllOfThem.All( a => a.entryID != entryId ) ) + { + Logging.Error( $"Unknown EntryID value {entryId} with edname {edName} in {nameof( Guardian )}.", e ); + } + } + + return FromEDName( edName ) ?? new Guardian( edName ); // No match. + } + } +} diff --git a/DataDefinitions/GuardianSectors.cs b/DataDefinitions/GuardianSectors.cs new file mode 100644 index 0000000000..aee98dfbfa --- /dev/null +++ b/DataDefinitions/GuardianSectors.cs @@ -0,0 +1,117 @@ +using Rollbar.DesignPatterns.Construction.FactoryMethod; +using System.Collections.Generic; +using System.Linq; +using Utilities; +//using System.Windows; +//using System.Windows.Forms; +//using System.Threading; + +namespace EddiDataDefinitions +{ + public class GuardianSector + { + static GuardianSector () + { + //resourceManager = Properties.OrganicGenus.ResourceManager; + //resourceManager.IgnoreCase = true; + //missingEDNameHandler = ( edname ) => new Nebula( NormalizeGenus( edname ) ); + } + + public static List AllOfThem = new List (); + + // This does not include ALL sectors where brain trees have been found, only sectors where 8+ samples existed from Cannon + // https://docs.google.com/spreadsheets/d/15lqZtqJk7B2qUV5Jb4tlnst6i1B7pXlAUzQnacX64Kc/edit#gid=652985927 + + // Possible future implementation of Guardian Structures + // https://docs.google.com/spreadsheets/d/1VF1R8kbeyreAfx-WoTJrzeZaXKpOKXuky9GNcD56H6Y/edit#gid=0 + + public static readonly GuardianSector GS_GRAEA_HYPUE = new GuardianSector( "GRAEA HYPUE", "Norma Expanse"); + public static readonly GuardianSector GS_SYNUEFE = new GuardianSector( "SYNUEFE", "Inner Orion Spur"); + public static readonly GuardianSector GS_COL_173_SECTOR = new GuardianSector( "COL 173 SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_WREGOE = new GuardianSector( "WREGOE", "Inner Orion Spur"); + public static readonly GuardianSector GS_EORL_AUWSY = new GuardianSector( "EORL AUWSY", "Empyrean Straits"); + public static readonly GuardianSector GS_PRAI_HYPOO = new GuardianSector( "PRAI HYPOO", "Temple"); + public static readonly GuardianSector GS_ETA_CARINA_SECTOR = new GuardianSector( "ETA CARINA SECTOR", "Outer Orion Spur"); + public static readonly GuardianSector GS_IC_2391_SECTOR = new GuardianSector( "IC 2391 SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_VELA_DARK_REGION = new GuardianSector( "VELA DARK REGION", "Inner Orion Spur"); + public static readonly GuardianSector GS_COL_132_SECTOR = new GuardianSector( "COL 132 SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_SWOILZ = new GuardianSector( "SWOILZ", "Inner Orion Spur"); + public static readonly GuardianSector GS_COL_135_SECTOR = new GuardianSector( "COL 135 SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_NGC_3199_SECTOR = new GuardianSector( "NGC 3199 SECTOR", "Outer Orion Spur"); + public static readonly GuardianSector GS_SKAUDAI = new GuardianSector( "SKAUDAI", "Inner Scutum-Centaurus Arm"); + public static readonly GuardianSector GS_NUEKAU = new GuardianSector( "NUEKAU", "Norma Expanse"); + public static readonly GuardianSector GS_PRUA_PHOE = new GuardianSector( "PRUA PHOE", "Inner Scutum-Centaurus Arm"); + public static readonly GuardianSector GS_PRAEA_EUQ = new GuardianSector( "PRAEA EUQ", "Inner Orion Spur"); + public static readonly GuardianSector GS_IC_2602_SECTOR = new GuardianSector( "IC 2602 SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_HD_63276 = new GuardianSector( "HD 63276", "Inner Orion Spur"); + public static readonly GuardianSector GS_PRUA_DRYOAE = new GuardianSector( "PRUA DRYOAE", "Inner Orion Spur"); + public static readonly GuardianSector GS_BLAE_EORK = new GuardianSector( "BLAE EORK", "Outer Orion Spur"); + public static readonly GuardianSector GS_HIP_43956 = new GuardianSector( "HIP 43956", "Inner Orion Spur"); + public static readonly GuardianSector GS_FLYUA_DRYOAE = new GuardianSector( "FLYUA DRYOAE", "Inner Orion Spur"); + public static readonly GuardianSector GS_SHROGAAE = new GuardianSector( "SHROGAAE", "Empyrean Straits"); + public static readonly GuardianSector GS_HD_81946 = new GuardianSector( "HD 81946", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_34377 = new GuardianSector( "HIP 34377", "Inner Orion Spur"); + public static readonly GuardianSector GS_KAPPA_1_VOLANTIS = new GuardianSector( "KAPPA-1 VOLANTIS", "Inner Orion Spur"); + public static readonly GuardianSector GS_NGC_2451A_SECTOR = new GuardianSector( "NGC 2451A SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_33517 = new GuardianSector( "HIP 33517", "Inner Orion Spur"); + public static readonly GuardianSector GS_PENCIL_SECTOR = new GuardianSector( "PENCIL SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_TV_MUSCAE = new GuardianSector( "TV MUSCAE", "Inner Orion Spur"); + public static readonly GuardianSector GS_BLAA_HYPAI = new GuardianSector( "BLAA HYPAI", "Norma Expanse"); + public static readonly GuardianSector GS_HR_4220 = new GuardianSector( "HR 4220", "Inner Orion Spur"); + public static readonly GuardianSector GS_NGC_2547_SECTOR = new GuardianSector( "NGC 2547 SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_PRO_EURL = new GuardianSector( "PRO EURL", "Inner Orion Spur"); + public static readonly GuardianSector GS_CLOOKEOU = new GuardianSector( "CLOOKEOU", "Norma Expanse"); + public static readonly GuardianSector GS_D_CARINAE = new GuardianSector( "D CARINAE", "Inner Orion Spur"); + public static readonly GuardianSector GS_HD_63154 = new GuardianSector( "HD 63154", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_49394 = new GuardianSector( "HIP 49394", "Inner Orion Spur"); + public static readonly GuardianSector GS_PCYC_275 = new GuardianSector( "PCYC 275", "Outer Orion Spur"); + public static readonly GuardianSector GS_35_G_CARINAE = new GuardianSector( "35 G. CARINAE", "Inner Orion Spur"); + public static readonly GuardianSector GS_COALSACK_SECTOR = new GuardianSector( "COALSACK SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_39758 = new GuardianSector( "HIP 39758", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_46193 = new GuardianSector( "HIP 46193", "Inner Orion Spur"); + public static readonly GuardianSector GS_PLIO_EURL = new GuardianSector( "PLIO EURL", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_34322 = new GuardianSector( "HIP 34322", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_38671 = new GuardianSector( "HIP 38671", "Inner Orion Spur"); + public static readonly GuardianSector GS_PUPPIS_DARK_REGION_B_SECTOR = new GuardianSector( "PUPPIS DARK REGION B SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_CHAMAELEON_SECTOR = new GuardianSector( "CHAMAELEON SECTOR", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_37610 = new GuardianSector( "HIP 37610", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_36823 = new GuardianSector( "HIP 36823", "Inner Orion Spur"); + public static readonly GuardianSector GS_PUEKEE = new GuardianSector( "PUEKEE", "Norma Expanse"); + public static readonly GuardianSector GS_HIP_41908 = new GuardianSector( "HIP 41908", "Inner Orion Spur"); + public static readonly GuardianSector GS_HIP_42459 = new GuardianSector( "HIP 42459", "Inner Orion Spur"); + public static readonly GuardianSector GS_BLAE_HYPUE = new GuardianSector( "BLAE HYPUE", "Norma Expanse"); + public static readonly GuardianSector GS_HIP_49815 = new GuardianSector( "HIP 49815", "Inner Orion Spur"); + public static readonly GuardianSector GS_2MASS = new GuardianSector( "2MASS", "Outer Orion Spur"); + public static readonly GuardianSector GS_DROKOE = new GuardianSector( "DROKOE", "Outer Orion Spur"); + public static readonly GuardianSector GS_HIP_43123 = new GuardianSector( "HIP 43123", "Inner Orion Spur"); + public static readonly GuardianSector GS_NGC_2516_SECTOR = new GuardianSector( "NGC 2516 SECTOR", "Inner Orion Spur"); + + [PublicAPI("The name of the guardian sector")] + public string name; + public string region; + + // dummy used to ensure that the static constructor has run + public GuardianSector () + { } + + private GuardianSector ( string name, string region ) + { + this.name = name; + this.region = region; + + AllOfThem.Add( this ); + } + + // Check if system is in a known guardian sector, ignoring the region + public static bool TryGetGuardianSector ( string systemname ) + { + return AllOfThem.Any( x=> systemname.ToLowerInvariant().Contains(x.name.ToLowerInvariant()) ); + } + + // Check if system is in a known guardian sector and region + public static bool TryGetGuardianSector ( string systemname, string region ) + { + return AllOfThem.Any( x=> systemname.ToLowerInvariant().Contains(x.name.ToLowerInvariant()) && x.region.ToLowerInvariant()==region.ToLowerInvariant() ); + } + } +} diff --git a/DataDefinitions/GuardianSite.cs b/DataDefinitions/GuardianSite.cs new file mode 100644 index 0000000000..f7306c6e31 --- /dev/null +++ b/DataDefinitions/GuardianSite.cs @@ -0,0 +1,212 @@ +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using Utilities; + + +namespace EddiDataDefinitions +{ + public class GuardianSite /*: ResourceBasedLocalizedEDName*/ + { + static GuardianSite () { } + + public enum GuardianSiteType { + None = 0, + Beacon = 1, + Ruin = 2, + Structure = 3 + } + + public enum BlueprintType { + None = 0, + Weapon = 1, + Vessel = 2, + Module = 3 + } + + [PublicAPI] + public string localizedType => Properties.GuardianSiteType.ResourceManager.GetString(type.ToString()); + + [PublicAPI] + public string localizedBlueprint => Properties.GuardianSiteBlueprint.ResourceManager.GetString(blueprintType.ToString()); + + public ulong? systemAddress { get; set; } + public GuardianSiteType type { get; set; } + public string systemName { get; set; } + public string body { get; set; } + public decimal? x; // x coordinate of system + public decimal? y; // y coordinate of system + public decimal? z; // z coordinate of system + public BlueprintType blueprintType { get; set; } + + // Calucated distance from target system ( Gets set and returned with TryGetNearestNebula ) + [PublicAPI("The calculated distance to the site from the current system.")] + public decimal? distance { get; set; } + + // dummy used to ensure that the static constructor has run + public GuardianSite () + { } + + internal GuardianSite ( ulong? systemAddress, + GuardianSiteType type, + string systemName, + string body, + decimal? x, + decimal? y, + decimal? z, + BlueprintType blueprintType ) + { + this.systemAddress = systemAddress; + this.type = type; + this.systemName = systemName; + this.body = body; + this.x = x; + this.y = y; + this.z = z; + this.blueprintType = blueprintType; + } + + public static GuardianSite TryGetNearestGuardianSite ( decimal? systemX, decimal? systemY, decimal? systemZ ) + { + List listGuardianSites = new List(); + + // Get the distance (squared) of all Nebula + foreach ( var guardianSite in GuardianSiteDefinitions.AllOfThem ) + { + if ( guardianSite.x != null && guardianSite.y != null && guardianSite.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + guardianSite.distance = Functions.StellarDistanceSquare( systemX, systemY, systemZ, guardianSite.x, guardianSite.y, guardianSite.z ); + listGuardianSites.Add( guardianSite ); + } + } + + GuardianSite closest = listGuardianSites.OrderBy( s => s.distance).First(); + closest.distance = Functions.StellarDistanceLy( closest.distance ); + + return closest; + } + + public static List TryGetNearestGuardianSites ( decimal? systemX, decimal? systemY, decimal? systemZ, int maxCount=50, int maxDistance=10000 ) + { + List listGuardianSites = new List(); + + // Get the distance (squared) of all Nebula + foreach ( var guardianSite in GuardianSiteDefinitions.AllOfThem ) + { + if ( guardianSite.x != null && guardianSite.y != null && guardianSite.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + guardianSite.distance = Functions.StellarDistanceSquare( systemX, systemY, systemZ, guardianSite.x, guardianSite.y, guardianSite.z ); + listGuardianSites.Add( guardianSite ); + } + } + + var maxDistanceSquared = maxDistance*maxDistance; + List closestList = listGuardianSites.Where( s => s.distance <= maxDistanceSquared ).OrderBy( s => s.distance).Take(maxCount).ToList(); + for(int i = 0; i< closestList.Count; i++) { + closestList[i].distance = Functions.StellarDistanceLy( closestList[i].distance ); + } + + return closestList; + } + + public static GuardianSite TryGetNearestGuardianSite ( GuardianSiteType typeFilter, decimal? systemX, decimal? systemY, decimal? systemZ ) + { + List listGuardianSites = new List(); + + // Get the distance (squared) of all Nebula + foreach ( var guardianSite in GuardianSiteDefinitions.AllOfThem.Where( x=> x.type == typeFilter ) ) + { + if ( guardianSite.x != null && guardianSite.y != null && guardianSite.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + guardianSite.distance = Functions.StellarDistanceSquare( systemX, systemY, systemZ, guardianSite.x, guardianSite.y, guardianSite.z ); + listGuardianSites.Add( guardianSite ); + } + } + + GuardianSite closest = listGuardianSites.OrderBy( s => s.distance).First(); + closest.distance = Functions.StellarDistanceLy( closest.distance ); + + return closest; + } + + public static List TryGetNearestGuardianSites ( GuardianSiteType typeFilter, decimal? systemX, decimal? systemY, decimal? systemZ, int maxCount=50, int maxDistance=10000 ) + { + List listGuardianSites = new List(); + + // Get the distance (squared) of all Nebula + foreach ( var guardianSite in GuardianSiteDefinitions.AllOfThem.Where( x=> x.type == typeFilter ) ) + { + if ( guardianSite.x != null && guardianSite.y != null && guardianSite.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + guardianSite.distance = Functions.StellarDistanceSquare( systemX, systemY, systemZ, guardianSite.x, guardianSite.y, guardianSite.z ); + listGuardianSites.Add( guardianSite ); + } + } + + var maxDistanceSquared = maxDistance*maxDistance; + List closestList = listGuardianSites.Where( s => s.distance <= maxDistanceSquared ).OrderBy( s => s.distance).Take(maxCount).ToList(); + //foreach( var guardianSite in closestList ) { + // guardianSite.distance = Functions.StellarDistanceLy( guardianSite.distance ); + //} + for(int i = 0; i< closestList.Count; i++) { + closestList[i].distance = Functions.StellarDistanceLy( closestList[i].distance ); + } + + return closestList; + } + + public static GuardianSite TryGetNearestGuardianSite ( BlueprintType typeFilter, decimal? systemX, decimal? systemY, decimal? systemZ ) + { + List listGuardianSites = new List(); + + // Get the distance (squared) of all Nebula + foreach ( var guardianSite in GuardianSiteDefinitions.AllOfThem.Where( x=> x.blueprintType == typeFilter ) ) + { + if ( guardianSite.x != null && guardianSite.y != null && guardianSite.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + guardianSite.distance = Functions.StellarDistanceSquare( systemX, systemY, systemZ, guardianSite.x, guardianSite.y, guardianSite.z ); + listGuardianSites.Add( guardianSite ); + } + } + + GuardianSite closest = listGuardianSites.OrderBy( s => s.distance).First(); + closest.distance = Functions.StellarDistanceLy( closest.distance ); + + return closest; + } + + public static List TryGetNearestGuardianSites ( BlueprintType typeFilter, decimal? systemX, decimal? systemY, decimal? systemZ, int maxCount=50, int maxDistance=10000 ) + { + List listGuardianSites = new List(); + + // Get the distance (squared) of all Nebula + foreach ( var guardianSite in GuardianSiteDefinitions.AllOfThem.Where( x=> x.blueprintType == typeFilter ) ) + { + if ( guardianSite.x != null && guardianSite.y != null && guardianSite.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + guardianSite.distance = Functions.StellarDistanceSquare( systemX, systemY, systemZ, guardianSite.x, guardianSite.y, guardianSite.z ); + listGuardianSites.Add( guardianSite ); + } + } + + var maxDistanceSquared = maxDistance*maxDistance; + List closestList = listGuardianSites.Where( s => s.distance <= maxDistanceSquared ).OrderBy( s => s.distance).Take(maxCount).ToList(); + for(int i = 0; i< closestList.Count; i++) { + closestList[i].distance = Functions.StellarDistanceLy( closestList[i].distance ); + } + + return closestList; + } + + public static GuardianSite TryGetNearestNebula ( StarSystem starsystem ) + { + return TryGetNearestGuardianSite( starsystem.x, starsystem.y, starsystem.z ); + } + } +} diff --git a/DataDefinitions/GuardianSiteDefinitions.cs b/DataDefinitions/GuardianSiteDefinitions.cs new file mode 100644 index 0000000000..845d3eb273 --- /dev/null +++ b/DataDefinitions/GuardianSiteDefinitions.cs @@ -0,0 +1,456 @@ +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using Utilities; + + +namespace EddiDataDefinitions +{ + public class GuardianSiteDefinitions /*: ResourceBasedLocalizedEDName*/ + { + static GuardianSiteDefinitions () { } + + public static List AllOfThem = new List { + new GuardianSite( (ulong?)84926173882, GuardianSite.GuardianSiteType.Beacon, "HIP 36823", "1", (decimal?)640.4375, (decimal?)-143.90625, (decimal?)-118.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4482838500042, GuardianSite.GuardianSiteType.Beacon, "IC 2391 Sector CQ-Y c16", "2", (decimal?)559.875, (decimal?)-87.15625, (decimal?)-33.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)20469679662481, GuardianSite.GuardianSiteType.Beacon, "IC 2391 Sector FG-X b1-9", "8", (decimal?)563.75, (decimal?)-100.03125, (decimal?)-59.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)16072170022289, GuardianSite.GuardianSiteType.Beacon, "IC 2391 Sector HG-X b1-7", "4", (decimal?)604.5625, (decimal?)-101.78125, (decimal?)-58.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13872878396833, GuardianSite.GuardianSiteType.Beacon, "IC 2391 Sector MX-T b3-6", "A 1", (decimal?)582.9375, (decimal?)-72.28125, (decimal?)-19.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)869621795163, GuardianSite.GuardianSiteType.Beacon, "NGC 2451A Sector LX-U d2-25", "3", (decimal?)726.0625, (decimal?)-163.5625, (decimal?)-171.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5307807765170, GuardianSite.GuardianSiteType.Beacon, "NGC 2451A Sector RT-R c4-19", "2", (decimal?)753.03125, (decimal?)-84.03125, (decimal?)-153.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)909761221298, GuardianSite.GuardianSiteType.Beacon, "NGC 2451A Sector TO-R c4-3", "3", (decimal?)739.46875, (decimal?)-127.875, (decimal?)-156.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)319849220451, GuardianSite.GuardianSiteType.Beacon, "Synuefe AS-H d11-9", "A 2", (decimal?)610.3125, (decimal?)-65.125, (decimal?)-101.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13874220508537, GuardianSite.GuardianSiteType.Beacon, "Synuefe BO-G b44-6", "1", (decimal?)687.3125, (decimal?)-96.75, (decimal?)-112.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4168173472099, GuardianSite.GuardianSiteType.Beacon, "Synuefe CS-H d11-121", "3", (decimal?)746.09375, (decimal?)-100.78125, (decimal?)-86.625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)27067823302025, GuardianSite.GuardianSiteType.Beacon, "Synuefe DK-D b46-12", "2", (decimal?)636.3125, (decimal?)-53.65625, (decimal?)-68.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9705787167426, GuardianSite.GuardianSiteType.Beacon, "Synuefe DK-P c22-35", "3", (decimal?)711.46875, (decimal?)-102.6875, (decimal?)-89.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9705787134658, GuardianSite.GuardianSiteType.Beacon, "Synuefe FF-P c22-35", "4 a", (decimal?)700.03125, (decimal?)-129.5, (decimal?)-96.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11675197252993, GuardianSite.GuardianSiteType.Beacon, "Synuefe FU-E b45-5", "A 3", (decimal?)682.28125, (decimal?)-102.59375, (decimal?)-104.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)20472095516025, GuardianSite.GuardianSiteType.Beacon, "Synuefe GJ-G b44-9", "3 c", (decimal?)747.84375, (decimal?)-109.28125, (decimal?)-121.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6132374311618, GuardianSite.GuardianSiteType.Beacon, "Synuefe HA-P c22-22", "2", (decimal?)701.5, (decimal?)-168.125, (decimal?)-104.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1184437801674, GuardianSite.GuardianSiteType.Beacon, "Synuefe HL-N c23-4", "1 a + 1 b", (decimal?)649.9375, (decimal?)-114.78125, (decimal?)-57.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9476173931905, GuardianSite.GuardianSiteType.Beacon, "Synuefe HP-E b45-4", "4", (decimal?)678.59375, (decimal?)-118.75, (decimal?)-94.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11676539364729, GuardianSite.GuardianSiteType.Beacon, "Synuefe IJ-G b44-5", "3", (decimal?)790.0625, (decimal?)-124.8125, (decimal?)-120.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4208161886922, GuardianSite.GuardianSiteType.Beacon, "Synuefe IL-N c23-15", "2 a", (decimal?)658.28125, (decimal?)-117.96875, (decimal?)-46.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)182443805035, GuardianSite.GuardianSiteType.Beacon, "Synuefe IT-F d12-5", "A 2", (decimal?)739.46875, (decimal?)-140.53125, (decimal?)-13.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18272803693945, GuardianSite.GuardianSiteType.Beacon, "Synuefe JZ-F b44-8", "8", (decimal?)720.625, (decimal?)-163.59375, (decimal?)-112.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9476442170745, GuardianSite.GuardianSiteType.Beacon, "Synuefe KU-F b44-4", "4", (decimal?)714.34375, (decimal?)-173.84375, (decimal?)-113.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9476979107201, GuardianSite.GuardianSiteType.Beacon, "Synuefe OF-E b45-4", "1 b", (decimal?)751.0625, (decimal?)-157.71875, (decimal?)-86.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9476979041665, GuardianSite.GuardianSiteType.Beacon, "Synuefe QA-E b45-4", "3", (decimal?)738.0625, (decimal?)-174.375, (decimal?)-103.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11676270732673, GuardianSite.GuardianSiteType.Beacon, "Synuefe RA-E b45-5", "2", (decimal?)755.53125, (decimal?)-169.125, (decimal?)-88.28125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13874757182857, GuardianSite.GuardianSiteType.Beacon, "Synuefe RL-C b46-6", "3", (decimal?)727.90625, (decimal?)-157.1875, (decimal?)-67.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3893262010715, GuardianSite.GuardianSiteType.Beacon, "Synuefe WL-J d10-113", "3", (decimal?)645.0625, (decimal?)-95.46875, (decimal?)-142.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1694255515995, GuardianSite.GuardianSiteType.Beacon, "Synuefe ZG-J d10-49", "2 a", (decimal?)723.8125, (decimal?)-156.71875, (decimal?)-152.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)115368495739, GuardianSite.GuardianSiteType.Ruin, "2MASS J10444160-5947046", "1 b", (decimal?)8614.1875, (decimal?)-116.6875, (decimal?)2733.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2887155398881, GuardianSite.GuardianSiteType.Ruin, "Blaa Hypai BN-I b26-1", "B 4", (decimal?)1290.3125, (decimal?)-666.375, (decimal?)12299.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85932285042, GuardianSite.GuardianSiteType.Ruin, "Blaa Hypai EU-D c13-0", "B 4", (decimal?)1244.25, (decimal?)-752.1875, (decimal?)12307, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)687595010281, GuardianSite.GuardianSiteType.Ruin, "Blaa Hypai LZ-F b27-0", "A 5", (decimal?)1251.4375, (decimal?)-752.71875, (decimal?)12330.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)560501476923, GuardianSite.GuardianSiteType.Ruin, "Blaa Hypai OZ-O d6-16", "4 c", (decimal?)1285.5, (decimal?)-731.65625, (decimal?)12309.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)687595403529, GuardianSite.GuardianSiteType.Ruin, "Blaa Hypai PB-A b31-0", "B 5", (decimal?)1239.5, (decimal?)-642.5625, (decimal?)12398.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)687595337953, GuardianSite.GuardianSiteType.Ruin, "Blaa Hypai XR-I b26-0", "A 3", (decimal?)1238.59375, (decimal?)-663.0625, (decimal?)12299.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3671827813610, GuardianSite.GuardianSiteType.Ruin, "Blae Eork IF-G c27-13", "A 1", (decimal?)8668.1875, (decimal?)-172.03125, (decimal?)2656.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)871299533427, GuardianSite.GuardianSiteType.Ruin, "Blae Eork NE-E d13-25", "B 2", (decimal?)8670.0625, (decimal?)-65.1875, (decimal?)2680.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)115368479347, GuardianSite.GuardianSiteType.Ruin, "Blae Eork QU-D d13-3", "3", (decimal?)8602.75, (decimal?)-219.8125, (decimal?)2641.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)596421593715, GuardianSite.GuardianSiteType.Ruin, "Blae Eork RU-D d13-17", "1 a", (decimal?)8675.5, (decimal?)-238.5, (decimal?)2655.625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)699500808819, GuardianSite.GuardianSiteType.Ruin, "Blae Eork RU-D d13-20", "5 d", (decimal?)8675.25, (decimal?)-185.65625, (decimal?)2687.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2986746784225, GuardianSite.GuardianSiteType.Ruin, "Blae Eork UL-J b56-1", "A 3", (decimal?)8710.15625, (decimal?)-113.9375, (decimal?)2702, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)216887316027, GuardianSite.GuardianSiteType.Ruin, "Blae Hypue DA-P d6-6", "4 a", (decimal?)1142.65625, (decimal?)-697.15625, (decimal?)12345.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1460187634810, GuardianSite.GuardianSiteType.Ruin, "Blae Hypue KG-C c14-5", "B 1", (decimal?)1167.8125, (decimal?)-711.375, (decimal?)12365.28125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1144583539011, GuardianSite.GuardianSiteType.Ruin, "Col 132 Sector GS-K d8-33", "D 4", (decimal?)1111.5, (decimal?)-379.75, (decimal?)-418.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6132844073642, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector AI-H c11-22", "B 1", (decimal?)992.6875, (decimal?)-153.625, (decimal?)-213.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5084032869705, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector AP-Q b21-2", "A 8", (decimal?)1127.3125, (decimal?)-154.03125, (decimal?)-237.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5084032869705, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector AP-Q b21-2", "B 4", (decimal?)1127.3125, (decimal?)-154.03125, (decimal?)-237.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)688670647705, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector AU-Y b30-0", "B 2", (decimal?)1334.75, (decimal?)-169.53125, (decimal?)-33.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5086717158809, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector AU-Y b30-2", "B 4", (decimal?)1329.46875, (decimal?)-178.09375, (decimal?)-25.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11681102898521, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector AV-N b23-5", "A 2", (decimal?)1117.03125, (decimal?)-71.03125, (decimal?)-202.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2009876763298, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector BX-I c10-7", "B 2", (decimal?)1110.40625, (decimal?)-223.625, (decimal?)-242.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2009876763298, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector BX-I c10-7", "B 3", (decimal?)1110.40625, (decimal?)-223.625, (decimal?)-242.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18278172730721, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector CG-M b24-8", "A 4", (decimal?)1127.9375, (decimal?)-59.9375, (decimal?)-175.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18278172730721, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector CG-M b24-8", "A 5", (decimal?)1127.9375, (decimal?)-59.9375, (decimal?)-175.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)491765320043, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector CH-L d8-14", "D 1", (decimal?)1137.96875, (decimal?)-193.65625, (decimal?)-18.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)491765320043, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector CH-L d8-14", "D 3", (decimal?)1137.96875, (decimal?)-193.65625, (decimal?)-18.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5082690954601, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector DH-K b25-2", "A 5", (decimal?)1027.09375, (decimal?)-80.25, (decimal?)-163.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5082690954601, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector DH-K b25-2", "A 7", (decimal?)1027.09375, (decimal?)-80.25, (decimal?)-163.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85731250834, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector DM-L c8-0", "B 2", (decimal?)1100.53125, (decimal?)-425, (decimal?)-341.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85731250834, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector DM-L c8-0", "B 3", (decimal?)1100.53125, (decimal?)-425, (decimal?)-341.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9481273943529, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector DY-G b40-4", "D 1", (decimal?)1062.34375, (decimal?)-198.34375, (decimal?)170.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1866154838379, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector EC-L d8-54", "1 c", (decimal?)1180.5625, (decimal?)-303.34375, (decimal?)-14.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1419511810411, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector EH-L d8-41", "1 a", (decimal?)1333.75, (decimal?)-205.84375, (decimal?)-9.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)938509044075, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector EM-L d8-27", "4 a", (decimal?)1480.5, (decimal?)-182.3125, (decimal?)8, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2072380410219, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector EM-L d8-60", "8 a", (decimal?)1511.21875, (decimal?)-177.4375, (decimal?)7.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)972818418027, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector FC-L d8-28", "14 c", (decimal?)1231.09375, (decimal?)-307.21875, (decimal?)-10.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1075947981163, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector GH-L d8-31", "C 3", (decimal?)1519.6875, (decimal?)-214, (decimal?)-11.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)113774610747, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector GM-V d2-3", "AB 1 b", (decimal?)1000.28125, (decimal?)-383.25, (decimal?)-444.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)113774610747, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector GM-V d2-3", "AB 1 c", (decimal?)1000.28125, (decimal?)-383.25, (decimal?)-444.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5490578574072, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector HI-M a55-0", "A 2", (decimal?)1147.4375, (decimal?)-43.9375, (decimal?)-113.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5490578574072, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector HI-M a55-0", "A 3", (decimal?)1147.4375, (decimal?)-43.9375, (decimal?)-113.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7281713816921, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector HR-M b23-3", "B 7", (decimal?)1024.28125, (decimal?)-191.71875, (decimal?)-193.8125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)7281713816921, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector HR-M b23-3", "C 5", (decimal?)1024.28125, (decimal?)-191.71875, (decimal?)-193.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85932577482, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector ID-Z c14-0", "A 4", (decimal?)1228.90625, (decimal?)-401.4375, (decimal?)-26.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7288961443257, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector IE-R b34-3", "B 2", (decimal?)1563.8125, (decimal?)-244.625, (decimal?)39.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1866154871163, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector IY-H d10-54", "B 9", (decimal?)1153.15625, (decimal?)-158.53125, (decimal?)186.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2885277721977, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JB-F b27-1", "A 4", (decimal?)1154.96875, (decimal?)-259.96875, (decimal?)-113.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2885277721977, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JB-F b27-1", "BC 3", (decimal?)1154.96875, (decimal?)-259.96875, (decimal?)-113.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9481811469745, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JE-V b33-4", "B 2", (decimal?)1102.84375, (decimal?)13.25, (decimal?)20.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2622153001331, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JS-J d9-76", "14 b", (decimal?)1543.28125, (decimal?)-181.625, (decimal?)86.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2622153001331, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JS-J d9-76", "14 c", (decimal?)1543.28125, (decimal?)-181.625, (decimal?)86.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)684107179361, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JX-K b24-0", "B 2", (decimal?)993.0625, (decimal?)-188.1875, (decimal?)-173.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)684107179361, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector JX-K b24-0", "B 4", (decimal?)993.0625, (decimal?)-188.1875, (decimal?)-173.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11679492023657, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KN-J b25-5", "C 3", (decimal?)1002.90625, (decimal?)-152.28125, (decimal?)-160.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)766710335859, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KN-J d9-22", "5 a", (decimal?)1514.8125, (decimal?)-263.875, (decimal?)75.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18277636122041, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KP-T b34-8", "B 2", (decimal?)1086.09375, (decimal?)25.6875, (decimal?)46.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5084569544169, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KT-G b40-2", "A 3", (decimal?)1172.03125, (decimal?)-221.34375, (decimal?)167.28125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1625603164499, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KY-Q d5-47", "8 c", (decimal?)1043.875, (decimal?)-100.75, (decimal?)-246.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1625603164499, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KY-Q d5-47", "9 a", (decimal?)1043.875, (decimal?)-100.75, (decimal?)-246.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1625603164499, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector KY-Q d5-47", "9 d", (decimal?)1043.875, (decimal?)-100.75, (decimal?)-246.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)687865013665, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LB-W b31-0", "C 1", (decimal?)1258.5, (decimal?)-283.125, (decimal?)-20.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85865632434, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LJ-F c12-0", "B 6", (decimal?)1202.125, (decimal?)-213.40625, (decimal?)-165.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85865632434, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LJ-F c12-0", "B 7", (decimal?)1202.125, (decimal?)-213.40625, (decimal?)-165.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)457388837203, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LY-Q d5-13", "AB 9 a", (decimal?)1120.34375, (decimal?)-87.21875, (decimal?)-216.875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)457388837203, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LY-Q d5-13", "AB 9 b", (decimal?)1120.34375, (decimal?)-87.21875, (decimal?)-216.875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2037936802131, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LY-Q d5-59", "8 a", (decimal?)1078.09375, (decimal?)-86.5625, (decimal?)-249.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2037936802131, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector LY-Q d5-59", "8 b", (decimal?)1078.09375, (decimal?)-86.5625, (decimal?)-249.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)910163776186, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector MK-D c13-3", "B 2", (decimal?)1005.375, (decimal?)-235.78125, (decimal?)-138.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2886083224969, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OC-C b29-1", "A 4", (decimal?)1206.46875, (decimal?)-190.59375, (decimal?)-82.625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)388652583259, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OE-P d6-11", "B 3", (decimal?)1014.34375, (decimal?)-67.59375, (decimal?)-173.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)388652583259, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OE-P d6-11", "C 2", (decimal?)1014.34375, (decimal?)-67.59375, (decimal?)-173.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9706391212754, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OG-Z c15-35", "B 1", (decimal?)1084.125, (decimal?)2.59375, (decimal?)12.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)629170719059, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OO-Q d5-18", "6 a", (decimal?)1020.90625, (decimal?)-213.65625, (decimal?)-209.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)629170719059, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OO-Q d5-18", "6 b", (decimal?)1020.90625, (decimal?)-213.65625, (decimal?)-209.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2884472415729, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OP-E b41-1", "B 1", (decimal?)1079.71875, (decimal?)-247.875, (decimal?)176.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)629204289875, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OT-Q d5-18", "D 2", (decimal?)1150.75, (decimal?)-124.03125, (decimal?)-216.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13880663221681, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector OZ-U b33-6", "A 1", (decimal?)1160.90625, (decimal?)-20.03125, (decimal?)21.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9480736744841, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector PD-B b29-4", "A 5", (decimal?)1032.34375, (decimal?)-297.9375, (decimal?)-67.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9480736744841, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector PD-B b29-4", "A 6", (decimal?)1032.34375, (decimal?)-297.9375, (decimal?)-67.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6133179650754, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector PF-C c14-22", "B 2", (decimal?)1212.90625, (decimal?)-142.78125, (decimal?)-70.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7279566464385, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector PF-E b28-3", "B 1", (decimal?)870.34375, (decimal?)-156.03125, (decimal?)-92.84375, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)360475103938, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector PV-B c14-1", "D 2", (decimal?)1023.65625, (decimal?)-217.40625, (decimal?)-81.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)869655333211, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector QU-O d6-25", "5 b", (decimal?)878.84375, (decimal?)-205.5625, (decimal?)-156.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3384266232506, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector RF-D c13-12", "C 3", (decimal?)1108.5, (decimal?)-271.90625, (decimal?)-123.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2887425467785, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector RH-C b29-1", "B 3", (decimal?)1306.15625, (decimal?)-179.21875, (decimal?)-71.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7282787951945, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector RI-R b21-3", "C 1", (decimal?)1099.8125, (decimal?)-66.71875, (decimal?)-237.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)360810681026, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector SA-C c14-1", "A 5", (decimal?)1216.21875, (decimal?)-182.125, (decimal?)-103.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)360810681026, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector SA-C c14-1", "B 4", (decimal?)1216.21875, (decimal?)-182.125, (decimal?)-103.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2009944003282, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector SB-Z c15-7", "B 4", (decimal?)1156.03125, (decimal?)-29.9375, (decimal?)-3.625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85529989826, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UG-B c14-0", "C 1", (decimal?)1012.8125, (decimal?)-328.71875, (decimal?)-77.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)684375090465, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UM-X b16-0", "E 1", (decimal?)1005.625, (decimal?)-355.15625, (decimal?)-339.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)697923750235, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UU-O d6-20", "6 c", (decimal?)1192.09375, (decimal?)-209.15625, (decimal?)-184.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)697923750235, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UU-O d6-20", "6 d", (decimal?)1192.09375, (decimal?)-209.15625, (decimal?)-184.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1041521133915, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UU-O d6-30", "4 d", (decimal?)1196.6875, (decimal?)-225.84375, (decimal?)-161.5, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1041521133915, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UU-O d6-30", "4 f", (decimal?)1196.6875, (decimal?)-225.84375, (decimal?)-161.5, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1453837994331, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector UU-O d6-42", "A 1 c", (decimal?)1147.09375, (decimal?)-252.8125, (decimal?)-156.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2887425467793, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector VN-A b30-1", "C 3", (decimal?)1305.1875, (decimal?)-169.125, (decimal?)-52.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2009876632250, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector VV-C c13-7", "AB 9 a", (decimal?)1107.65625, (decimal?)-373.21875, (decimal?)-108.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1797435394403, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector WF-N d7-52", "B 2", (decimal?)1186.6875, (decimal?)-166.1875, (decimal?)-80.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4483710882466, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector WG-J c10-16", "B 1", (decimal?)1067.28125, (decimal?)-138.3125, (decimal?)-258.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)75853954042552, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector WK-A a48-4", "A 3", (decimal?)1098.15625, (decimal?)-39.96875, (decimal?)-188.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2886619899273, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector WN-B b29-1", "D 1", (decimal?)1237.75, (decimal?)-247.375, (decimal?)-76.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9480468833617, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector WZ-O b22-4", "C 5", (decimal?)1011.0625, (decimal?)-131.78125, (decimal?)-210.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9480468833617, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector WZ-O b22-4", "C 6", (decimal?)1011.0625, (decimal?)-131.78125, (decimal?)-210.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3618518305123, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector XF-N d7-105", "A 4 a", (decimal?)1293.5625, (decimal?)-175.625, (decimal?)-48.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4758655898274, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector XG-J c10-17", "A 2", (decimal?)1095.25, (decimal?)-127.5625, (decimal?)-238.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4758655898274, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector XG-J c10-17", "B 4", (decimal?)1095.25, (decimal?)-127.5625, (decimal?)-238.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2887425533337, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector XY-Y b30-1", "B 2", (decimal?)1310.53125, (decimal?)-155.5, (decimal?)-27.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)594844535139, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YA-N d7-17", "A 2", (decimal?)1145.09375, (decimal?)-245.8125, (decimal?)-90.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)594844535139, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YA-N d7-17", "B 2", (decimal?)1145.09375, (decimal?)-245.8125, (decimal?)-90.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1460053676682, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YF-N c7-5", "B 2", (decimal?)1073.21875, (decimal?)-392.25, (decimal?)-378.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1460053676682, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YF-N c7-5", "B 3", (decimal?)1073.21875, (decimal?)-392.25, (decimal?)-378.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2553383192931, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YF-N d7-74", "C 4", (decimal?)1315.75, (decimal?)-181.5625, (decimal?)-62.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3384601875146, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YG-A c15-12", "B 1", (decimal?)1301.71875, (decimal?)-172.84375, (decimal?)-39.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5583625130698, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YG-A c15-20", "A 1", (decimal?)1315.1875, (decimal?)-180.9375, (decimal?)-63.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)800969394531, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector YV-M d7-23", "A 7 a", (decimal?)1005.46875, (decimal?)-271.125, (decimal?)-76.625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)835379448155, GuardianSite.GuardianSiteType.Ruin, "Col 173 Sector ZK-O d6-24", "3 a", (decimal?)1250.0625, (decimal?)-397.9375, (decimal?)-135.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)866911857489, GuardianSite.GuardianSiteType.Ruin, "Drokoe FU-O b39-0", "C 7", (decimal?)14600.21875, (decimal?)-160.15625, (decimal?)3619.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)866106354521, GuardianSite.GuardianSiteType.Ruin, "Drokoe ML-M b40-0", "C 1", (decimal?)14539.03125, (decimal?)-222.3125, (decimal?)3635.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)866106354521, GuardianSite.GuardianSiteType.Ruin, "Drokoe ML-M b40-0", "C 2", (decimal?)14539.03125, (decimal?)-222.3125, (decimal?)3635.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)866643094361, GuardianSite.GuardianSiteType.Ruin, "Drokoe SB-M b40-0", "C 2", (decimal?)14591.0625, (decimal?)-252.28125, (decimal?)3646.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)119171090256251, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-3468", "ABC 1 h", (decimal?)4948.46875, (decimal?)165.0625, (decimal?)20654.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)119171090256251, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-3468", "ABC 3 c", (decimal?)4948.46875, (decimal?)165.0625, (decimal?)20654.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)128242061185403, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-3732", "9 a", (decimal?)4958.9375, (decimal?)163.9375, (decimal?)20635.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)128242061185403, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-3732", "9 b", (decimal?)4958.9375, (decimal?)163.9375, (decimal?)20635.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)132674467434875, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-3861", "3 c", (decimal?)4950.3125, (decimal?)166.8125, (decimal?)20641.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)132674467434875, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-3861", "4 c", (decimal?)4950.3125, (decimal?)166.8125, (decimal?)20641.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)15473399861627, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy SY-Z d13-450", "1 a", (decimal?)4962.4375, (decimal?)139.15625, (decimal?)20636.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)35921630676457, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy YF-Y b56-16", "B 3", (decimal?)4953.46875, (decimal?)155.8125, (decimal?)20635.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)35921630676457, GuardianSite.GuardianSiteType.Ruin, "Eorl Auwsy YF-Y b56-16", "C 3", (decimal?)4953.46875, (decimal?)155.8125, (decimal?)20635.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)562045094515, GuardianSite.GuardianSiteType.Ruin, "Eta Carina Sector EL-Y d16", "ABC 4 a", (decimal?)8636.59375, (decimal?)-156.1875, (decimal?)2686.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1197859607794, GuardianSite.GuardianSiteType.Ruin, "Eta Carina Sector IM-V c2-4", "A 2", (decimal?)8629.1875, (decimal?)-98.8125, (decimal?)2713.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)104373126988, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AA-Z e24", "12 b", (decimal?)-632.5, (decimal?)-562.09375, (decimal?)13237, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)104373126988, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AA-Z e24", "12 c", (decimal?)-632.5, (decimal?)-562.09375, (decimal?)13237, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)869336551075, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-25", "A 7 a", (decimal?)-698.9375, (decimal?)-324.46875, (decimal?)13368.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)869336551075, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-25", "A 10 b", (decimal?)-698.9375, (decimal?)-324.46875, (decimal?)13368.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8737716637347, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-254", "A 6 b", (decimal?)-676.25, (decimal?)-312.5625, (decimal?)13345.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8737716637347, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-254", "A 8 a", (decimal?)-676.25, (decimal?)-312.5625, (decimal?)13345.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2071927393955, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-60", "9 a", (decimal?)-663.21875, (decimal?)-310.1875, (decimal?)13335.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2243726085795, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-65", "7 a", (decimal?)-669.9375, (decimal?)-338.53125, (decimal?)13347.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2243726085795, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue AG-V d3-65", "8 b", (decimal?)-669.9375, (decimal?)-338.53125, (decimal?)13347.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8325315874475, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue BH-T d4-242", "B 5", (decimal?)-1094.09375, (decimal?)-374.78125, (decimal?)13416.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8325315874475, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue BH-T d4-242", "C 4", (decimal?)-1094.09375, (decimal?)-374.78125, (decimal?)13416.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)60030622186225, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue BX-G b28-27", "B 1", (decimal?)-1041.78125, (decimal?)-483.125, (decimal?)13623.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)560115633819, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue DL-W d2-16", "3", (decimal?)-588, (decimal?)-539.5625, (decimal?)13287.875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2861654555233, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue GH-M b11-1", "B 1", (decimal?)-624.4375, (decimal?)-518.0315, (decimal?)13258.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)29249396685417, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue KI-K b12-13", "B 1", (decimal?)-649.625, (decimal?)-537.53125, (decimal?)13286.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6676048416443, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LO-P d6-194", "14 a", (decimal?)-1037.65625, (decimal?)-492.65625, (decimal?)13612.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6676048416443, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LO-P d6-194", "14 b", (decimal?)-1037.65625, (decimal?)-492.65625, (decimal?)13612.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)113405464235, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LS-S d4-3", "4 a", (decimal?)-726.96875, (decimal?)-589.90625, (decimal?)13438.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)113405464235, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LS-S d4-3", "6 a", (decimal?)-726.96875, (decimal?)-589.90625, (decimal?)13438.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2793465056939, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LS-S d4-81", "AB 5 a", (decimal?)-760.8125, (decimal?)-641.09375, (decimal?)13431.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2793465056939, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LS-S d4-81", "AB 6 b", (decimal?)-760.8125, (decimal?)-641.09375, (decimal?)13431.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2793465056939, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue LS-S d4-81", "AB 6 c", (decimal?)-760.8125, (decimal?)-641.09375, (decimal?)13431.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3824223653555, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue NY-Q d5-111", "5 a", (decimal?)-898.625, (decimal?)-643.09375, (decimal?)13529.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4064741822131, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue NY-Q d5-118", "9 a", (decimal?)-915.25, (decimal?)-613.78125, (decimal?)13527.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5095533973171, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue NY-Q d5-148", "8 a", (decimal?)-922.84375, (decimal?)-621, (decimal?)13530.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9428023188770, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue OJ-W c3-34", "C 1", (decimal?)-999, (decimal?)-562.53125, (decimal?)13175.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9428023188770, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue OJ-W c3-34", "C 2", (decimal?)-999, (decimal?)-562.53125, (decimal?)13175.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4202180759219, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue PT-Q d5-122", "10 a", (decimal?)-885.34375, (decimal?)-698.71875, (decimal?)13551.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4202180759219, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue PT-Q d5-122", "10 b", (decimal?)-885.34375, (decimal?)-698.71875, (decimal?)13551.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3343187300019, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue PT-Q d5-97", "7 c", (decimal?)-905.25, (decimal?)-665.78125, (decimal?)13530.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3411906776755, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue PT-Q d5-99", "7 a", (decimal?)-915.71875, (decimal?)-690.9375, (decimal?)13541.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4754830499138, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QG-Q c7-17", "C 1", (decimal?)-1150.15625, (decimal?)-376.03125, (decimal?)13364.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4754830499138, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QG-Q c7-17", "C 2", (decimal?)-1150.15625, (decimal?)-376.03125, (decimal?)13364.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)33645295450793, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QL-V b19-15", "C 3", (decimal?)-819.125, (decimal?)-623.34375, (decimal?)13440.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)33645295450793, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QL-V b19-15", "C 4", (decimal?)-819.125, (decimal?)-623.34375, (decimal?)13440.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)33645295450793, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QL-V b19-15", "D 2", (decimal?)-819.125, (decimal?)-623.34375, (decimal?)13440.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)16055793891945, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QY-J b12-7", "B 4", (decimal?)-611.625, (decimal?)-575.4375, (decimal?)13282.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)16055793891945, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QY-J b12-7", "B 5", (decimal?)-611.625, (decimal?)-575.4375, (decimal?)13282.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6160669101707, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QY-Z d179", "B 3", (decimal?)-988.71875, (decimal?)-564.5, (decimal?)13149.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6160669101707, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue QY-Z d179", "B 4", (decimal?)-988.71875, (decimal?)-564.5, (decimal?)13149.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2003140759187, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue UE-Y d1-58", "C 1", (decimal?)-1017.5, (decimal?)-524.3125, (decimal?)13231.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2003140759187, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue UE-Y d1-58", "C 5", (decimal?)-1017.5, (decimal?)-524.3125, (decimal?)13231.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11653990202001, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue UT-D b17-5", "C 3", (decimal?)-897.125, (decimal?)-300.15625, (decimal?)13392.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11653990202001, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue UT-D b17-5", "D 1", (decimal?)-897.125, (decimal?)-300.15625, (decimal?)13392.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3171355070099, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue VZ-X d1-92", "5 b", (decimal?)-1031.75, (decimal?)-606.375, (decimal?)13195.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7397586161315, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue WA-V d3-215", "B 1", (decimal?)-1157.1875, (decimal?)-405.53125, (decimal?)13376.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7397586161315, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue WA-V d3-215", "C 1", (decimal?)-1157.1875, (decimal?)-405.53125, (decimal?)13376.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7294607576723, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue YE-Y d1-212", "3 a", (decimal?)-637.6875, (decimal?)-577.125, (decimal?)13234.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9452818610753, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue YX-S b7-4", "B 2", (decimal?)-1049.78125, (decimal?)-555.6875, (decimal?)13175.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9452818610753, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue YX-S b7-4", "B 3", (decimal?)-1049.78125, (decimal?)-555.6875, (decimal?)13175.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)32243090988362, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue ZR-O c8-117", "B 1", (decimal?)-900.6875, (decimal?)-339.625, (decimal?)13390.5, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)10352540421795, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue ZV-U d3-301", "A 9 a", (decimal?)-1093.59375, (decimal?)-432.25, (decimal?)13396.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)10352540421795, GuardianSite.GuardianSiteType.Ruin, "Graea Hypue ZV-U d3-301", "A 9 c", (decimal?)-1093.59375, (decimal?)-432.25, (decimal?)13396.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8219259477, GuardianSite.GuardianSiteType.Ruin, "HIP 39768", "A 14 f", (decimal?)866.59375, (decimal?)-119.125, (decimal?)-109.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)16072170087825, GuardianSite.GuardianSiteType.Ruin, "IC 2391 Sector FL-X b1-7", "A 2", (decimal?)611.34375, (decimal?)-78.40625, (decimal?)-51.6875, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)9474831951257, GuardianSite.GuardianSiteType.Ruin, "IC 2391 Sector GW-V b2-4", "B 1", (decimal?)587.9375, (decimal?)-51.03125, (decimal?)-38.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3549631072611, GuardianSite.GuardianSiteType.Ruin, "IC 2391 Sector YE-A d103", "B 1", (decimal?)489.03125, (decimal?)-98.09375, (decimal?)-34.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3480928373091, GuardianSite.GuardianSiteType.Ruin, "IC 2391 Sector ZE-A d101", "C 3", (decimal?)526.5, (decimal?)-86.375, (decimal?)-37.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5086179829153, GuardianSite.GuardianSiteType.Ruin, "NGC 2516 Sector UT-Z b2", "A 1", (decimal?)1294.3125, (decimal?)-322.46875, (decimal?)-13.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)658102883722, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector BV-Y c2", "B 1", (decimal?)14595.53125, (decimal?)-225.84375, (decimal?)3490.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)219705985739, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector CQ-Y d6", "B 4", (decimal?)14596.96875, (decimal?)-264.6875, (decimal?)3570.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)425847622347, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector DL-Y d12", "1 a", (decimal?)14563.875, (decimal?)-302.53125, (decimal?)3509.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1482803746202, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector IM-V c2-5", "B 3", (decimal?)14619.96875, (decimal?)-220.375, (decimal?)3560.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1482803746202, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector IM-V c2-5", "B 4", (decimal?)14619.96875, (decimal?)-220.375, (decimal?)3560.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2307437401498, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector MC-V c2-8", "A 5", (decimal?)14619.8125, (decimal?)-275.40625, (decimal?)3560.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)357128161987, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector XJ-A d10", "11 a", (decimal?)14544.0625, (decimal?)-237.625, (decimal?)3489.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)357128161987, GuardianSite.GuardianSiteType.Ruin, "NGC 3199 Sector XJ-A d10", "13 b", (decimal?)14544.0625, (decimal?)-237.625, (decimal?)3489.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)546399072737, GuardianSite.GuardianSiteType.Ruin, "Nyeajeou VP-G b56-0", "B 2", (decimal?)-9275.46875, (decimal?)-423.4375, (decimal?)7817.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2816994908418, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo GF-E c10", "B 4", (decimal?)-9308.09375, (decimal?)-406.1875, (decimal?)7927.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7142932230673, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo NQ-F b2-3", "C 1", (decimal?)-9324.5625, (decimal?)-339.03125, (decimal?)7954.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1726501276803, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo PC-C d50", "C 1", (decimal?)-9371.3125, (decimal?)-408.5, (decimal?)7899.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1073683025027, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo QC-C d31", "2 a", (decimal?)-9294.75, (decimal?)-379.9375, (decimal?)7952.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)661382941827, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo RC-C d19", "B 1", (decimal?)-9195.28125, (decimal?)-400.4375, (decimal?)7917.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1417280392331, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo WD-A d1-41", "5 c", (decimal?)-9326.09375, (decimal?)-425.46875, (decimal?)7995.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)214689549451, GuardianSite.GuardianSiteType.Ruin, "Prai Hypoo WD-A d1-6", "10 a", (decimal?)-9302.25, (decimal?)-459.46875, (decimal?)7978.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8667973700995, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe TS-B d252", "C 6", (decimal?)-5541.84375, (decimal?)-548.03125, (decimal?)10516.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8667973700995, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe TS-B d252", "D 1", (decimal?)-5541.84375, (decimal?)-548.03125, (decimal?)10516.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2964273909123, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe US-B d86", "C 2", (decimal?)-5476.6875, (decimal?)-518.8125, (decimal?)10526.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2964273909123, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe US-B d86", "C 3", (decimal?)-5476.6875, (decimal?)-518.8125, (decimal?)10526.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3926329806219, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe XY-Z d114", "4 d", (decimal?)-5517.78125, (decimal?)-566, (decimal?)10544.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3926329806219, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe XY-Z d114", "4 f", (decimal?)-5517.78125, (decimal?)-566, (decimal?)10544.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1452428643723, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe XY-Z d42", "7 a", (decimal?)-5525.5625, (decimal?)-559.09375, (decimal?)10547.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1452428643723, GuardianSite.GuardianSiteType.Ruin, "Prua Phoe XY-Z d42", "8 a", (decimal?)-5525.5625, (decimal?)-559.09375, (decimal?)10547.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4750980320635, GuardianSite.GuardianSiteType.Ruin, "Skaudai AM-B d14-138", "AB 7 a", (decimal?)-5477.59375, (decimal?)-504.15625, (decimal?)10436.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3659077096194, GuardianSite.GuardianSiteType.Ruin, "Swoilz AE-F c13", "C 1", (decimal?)1079.3125, (decimal?)-216.125, (decimal?)222.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5084032673305, GuardianSite.GuardianSiteType.Ruin, "Swoilz PA-F b3-2", "B 2", (decimal?)1121.8125, (decimal?)-217.125, (decimal?)282.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1734529192634, GuardianSite.GuardianSiteType.Ruin, "Synuefe CE-R c21-6", "C 1", (decimal?)828.1875, (decimal?)-78, (decimal?)-105.1875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2175275075939, GuardianSite.GuardianSiteType.Ruin, "Synuefe CN-H d11-63", "A 2 b", (decimal?)610.96875, (decimal?)-145.78125, (decimal?)-57.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9475637257609, GuardianSite.GuardianSiteType.Ruin, "Synuefe DK-D b46-4", "C 1", (decimal?)652.9375, (decimal?)-63.90625, (decimal?)-80.78125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)5079737705833, GuardianSite.GuardianSiteType.Ruin, "Synuefe LY-I b42-2", "C 2", (decimal?)814.71875, (decimal?)-222.78125, (decimal?)-151.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1184840454858, GuardianSite.GuardianSiteType.Ruin, "Synuefe NL-N c23-4", "B 3", (decimal?)860.125, (decimal?)-124.59375, (decimal?)-61.0625, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)682228131193, GuardianSite.GuardianSiteType.Ruin, "Synuefe TP-F b44-0", "CD 1", (decimal?)838.75, (decimal?)-197.84375, (decimal?)-111.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4757716439746, GuardianSite.GuardianSiteType.Ruin, "Synuefe XO-P c22-17", "C 1", (decimal?)546.90625, (decimal?)-56.46875, (decimal?)-97.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3515254557027, GuardianSite.GuardianSiteType.Ruin, "Synuefe XR-H d11-102", "1 b", (decimal?)357.34375, (decimal?)-49.34375, (decimal?)-74.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5307539296954, GuardianSite.GuardianSiteType.Ruin, "Synuefe YY-Q c21-19", "2 a", (decimal?)589.15625, (decimal?)-144.5, (decimal?)-107.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3755873388891, GuardianSite.GuardianSiteType.Ruin, "Synuefe ZL-J d10-109", "E 3", (decimal?)852.65625, (decimal?)-51.125, (decimal?)-124.84375, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)4099470772571, GuardianSite.GuardianSiteType.Ruin, "Synuefe ZL-J d10-119", "9 b", (decimal?)834.21875, (decimal?)-51.21875, (decimal?)-154.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)22671924274545, GuardianSite.GuardianSiteType.Ruin, "Synuefe ZR-I b43-10", "D 2", (decimal?)811.40625, (decimal?)-60.4375, (decimal?)-144.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)634547605994, GuardianSite.GuardianSiteType.Ruin, "Trapezium Sector YU-X c1-2", "1 a", (decimal?)573.59375, (decimal?)-339.46875, (decimal?)-1167.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1110207072611, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region EL-Y d32", "B 1", (decimal?)1000.65625, (decimal?)-166.21875, (decimal?)-64.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2175375739235, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region FL-Y d63", "A 5", (decimal?)1064.5, (decimal?)-144.03125, (decimal?)-101.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2175375739235, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region FL-Y d63", "B 1", (decimal?)1064.5, (decimal?)-144.03125, (decimal?)-101.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7782245798594, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region HB-X c1-28", "E 2", (decimal?)1073.0625, (decimal?)-100.65625, (decimal?)-92.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7782245798594, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region HB-X c1-28", "E 3", (decimal?)1073.0625, (decimal?)-100.65625, (decimal?)-92.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6682666996418, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region KR-W c1-24", "7 a", (decimal?)1036.875, (decimal?)-163.59375, (decimal?)-85.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6682666996418, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region KR-W c1-24", "7 c", (decimal?)1036.875, (decimal?)-163.59375, (decimal?)-85.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11680297264513, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region RC-V b2-5", "C 3", (decimal?)1072.75, (decimal?)-168.1875, (decimal?)-85.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11680297264513, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region RC-V b2-5", "C 4", (decimal?)1072.75, (decimal?)-168.1875, (decimal?)-85.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11680297461137, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region TD-S b4-5", "C 1", (decimal?)1071.21875, (decimal?)-121.03125, (decimal?)-50.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11680297461137, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region TD-S b4-5", "C 2", (decimal?)1071.21875, (decimal?)-121.03125, (decimal?)-50.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2884204504473, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region VO-Q b5-1", "B 6", (decimal?)1062.03125, (decimal?)-91.8125, (decimal?)-40.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2884204504473, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region VO-Q b5-1", "C 5", (decimal?)1062.03125, (decimal?)-91.8125, (decimal?)-40.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13879320782233, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region VO-Q b5-6", "A 1", (decimal?)1059.65625, (decimal?)-102.28125, (decimal?)-36.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13879320782233, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region VO-Q b5-6", "A 2", (decimal?)1059.65625, (decimal?)-102.28125, (decimal?)-36.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18277098792345, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region WJ-Q b5-8", "B 1", (decimal?)1036.6875, (decimal?)-117.75, (decimal?)-27.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18277098792345, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region WJ-Q b5-8", "B 2", (decimal?)1036.6875, (decimal?)-117.75, (decimal?)-27.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7281982383505, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region WT-R b4-3", "B 1", (decimal?)1044.6875, (decimal?)-158.4375, (decimal?)-62.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7281982383505, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region WT-R b4-3", "B 2", (decimal?)1044.6875, (decimal?)-158.4375, (decimal?)-62.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2883935806865, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region YO-R b4-1", "B 4", (decimal?)1045.625, (decimal?)-177.53125, (decimal?)-45.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2883935806865, GuardianSite.GuardianSiteType.Ruin, "Vela Dark Region YO-R b4-1", "D 2", (decimal?)1045.625, (decimal?)-177.53125, (decimal?)-45.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4208564540066, GuardianSite.GuardianSiteType.Structure, "Col 135 Sector TU-O c6-15", "D 1", (decimal?)923.9375, (decimal?)-138.125, (decimal?)-231.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4208564474538, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector AD-H c11-15", "B 2", (decimal?)925, (decimal?)-200.09375, (decimal?)-205.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6132844073642, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector AI-H c11-22", "B 1", (decimal?)992.6875, (decimal?)-153.625, (decimal?)-213.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85530186418, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector AY-F c12-0", "A 1", (decimal?)988.90625, (decimal?)-78.6875, (decimal?)-155.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18276293617001, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector BH-K b25-8", "B 3", (decimal?)986.21875, (decimal?)-69.53125, (decimal?)-163.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6682398560946, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector BO-F c12-24", "A 3", (decimal?)864.5, (decimal?)-161.65625, (decimal?)-153.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18276025116009, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector CC-K b25-8", "A 5", (decimal?)970.375, (decimal?)-99.5625, (decimal?)-160.53125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)7507166565050, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector DE-E c13-27", "C 2", (decimal?)961.28125, (decimal?)-69.25, (decimal?)-139.5, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5082690954601, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector DH-K b25-2", "A 5", (decimal?)1027.09375, (decimal?)-80.25, (decimal?)-163.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1184974639794, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector DO-F c12-4", "A 1", (decimal?)943.15625, (decimal?)-169.46875, (decimal?)-146.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5081080145257, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector DS-J b25-2", "B 5", (decimal?)895.875, (decimal?)-132.125, (decimal?)-150.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)635084640954, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector DZ-D c13-2", "12 a", (decimal?)864.0625, (decimal?)-122.4375, (decimal?)-136.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6957343609530, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector EZ-D c13-25", "B 1", (decimal?)922.3125, (decimal?)-135.65625, (decimal?)-130.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1734596301506, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector FK-C c14-6", "D 2", (decimal?)869.46875, (decimal?)-84.46875, (decimal?)-93.5, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8331800253114, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector FZ-D c13-30", "2", (decimal?)951.375, (decimal?)-117.09375, (decimal?)-143.8125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)9479931962729, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector GS-J b25-4", "D 2", (decimal?)957.03125, (decimal?)-142, (decimal?)-160.53125, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)11679760721265, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector HN-I b26-5", "A 1", (decimal?)1022.3125, (decimal?)-76.9375, (decimal?)-139.03125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)684644050265, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector HR-M b23-0", "C 1", (decimal?)1015.5625, (decimal?)-200.84375, (decimal?)-190.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7281713816921, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector HR-M b23-3", "B 7", (decimal?)1024.28125, (decimal?)-191.71875, (decimal?)-193.8125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)635218825914, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector HU-D c13-2", "A 1", (decimal?)940.84375, (decimal?)-173.9375, (decimal?)-126.28125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2881788519801, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector IJ-G b27-1", "A 1", (decimal?)882.65625, (decimal?)-122.875, (decimal?)-115.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)683570373993, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector JI-J b25-0", "AB 2", (decimal?)936.78125, (decimal?)-184.125, (decimal?)-160.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3933753676474, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector JP-D c13-14", "A 4", (decimal?)948.0625, (decimal?)-216.9375, (decimal?)-107.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)684107179361, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector JX-K b24-0", "B 2", (decimal?)993.0625, (decimal?)-188.1875, (decimal?)-173.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11679492023657, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector KN-J b25-5", "C 3", (decimal?)1002.90625, (decimal?)-152.28125, (decimal?)-160.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)904048658771, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector KY-Q d5-26", "6 a", (decimal?)975.3125, (decimal?)-103.1875, (decimal?)-222.125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)1453804472659, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector KY-Q d5-42", "1 a", (decimal?)991.875, (decimal?)-84.625, (decimal?)-203.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2828177213779, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector LT-Q d5-82", "A 3", (decimal?)926.84375, (decimal?)-120.65625, (decimal?)-199.6875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)3103055120723, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector LT-Q d5-90", "D 1", (decimal?)911.0625, (decimal?)-115.875, (decimal?)-208.15625, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)3171757836635, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector ME-P d6-92", "B 5", (decimal?)891.65625, (decimal?)-98.53125, (decimal?)-157.1875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)360340886210, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector NV-B c14-1", "1", (decimal?)954.21875, (decimal?)-212.5625, (decimal?)-94.8125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)5082422125929, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector OD-J b25-2", "B 1", (decimal?)1008.375, (decimal?)-201.5625, (decimal?)-157.4375, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)7279566464385, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector PF-E b28-3", "B 1", (decimal?)870.34375, (decimal?)-156.03125, (decimal?)-92.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3790249888091, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector PZ-O d6-110", "5 a", (decimal?)943.0625, (decimal?)-130.75, (decimal?)-142.03125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)3996408318299, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector PZ-O d6-116", "6 d", (decimal?)931.4375, (decimal?)-131.25, (decimal?)-164.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)869655333211, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector QU-O d6-25", "5 b", (decimal?)878.84375, (decimal?)-205.5625, (decimal?)-156.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1110173501787, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector QU-O d6-32", "3 a", (decimal?)894.09375, (decimal?)-203.625, (decimal?)-146.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)45055183195, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector QZ-O d6-1", "4 c", (decimal?)989.28125, (decimal?)-170.8125, (decimal?)-175.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2883130303849, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector RT-I b25-1", "B 1", (decimal?)977, (decimal?)-233.625, (decimal?)-151.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)560434465115, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector RU-O d6-16", "A 2 a", (decimal?)951.1875, (decimal?)-223.25, (decimal?)-152.40625, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)1866121300315, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector SU-O d6-54", "B 2", (decimal?)981.125, (decimal?)-202.65625, (decimal?)-110.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)683301741937, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector SZ-G b26-0", "B 2", (decimal?)925.625, (decimal?)-234.96875, (decimal?)-132.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)683033437569, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector VV-D b28-0", "A 1", (decimal?)895.71875, (decimal?)-201.75, (decimal?)-101.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2882325194065, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector WP-O b22-1", "A 3", (decimal?)934.125, (decimal?)-172.125, (decimal?)-205.34375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9480468833617, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector WZ-O b22-4", "C 5", (decimal?)1011.0625, (decimal?)-131.78125, (decimal?)-210.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5857764840106, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector XH-H c11-21", "B 1", (decimal?)894.3125, (decimal?)-153.75, (decimal?)-212.3125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2882594022761, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector XL-K b25-1", "B 1", (decimal?)950.3125, (decimal?)-57.625, (decimal?)-161.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11678955218265, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector YF-N b23-5", "A 5", (decimal?)962.15625, (decimal?)-144.46875, (decimal?)-188.53125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)13877978473817, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector YF-N b23-6", "A 3", (decimal?)962.84375, (decimal?)-132.78125, (decimal?)-194.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5081080145249, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector ZL-L b24-2", "B 1", (decimal?)896.78125, (decimal?)-134.90625, (decimal?)-182.09375, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)16076196423009, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector ZL-L b24-7", "C 4", (decimal?)899, (decimal?)-131.1875, (decimal?)-173, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7507032314546, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector ZS-F c12-27", "B 3", (decimal?)894.6875, (decimal?)-113.5625, (decimal?)-166.46875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2882056758617, GuardianSite.GuardianSiteType.Structure, "Col 173 Sector ZV-M b23-1", "A 1", (decimal?)914.375, (decimal?)-167.3125, (decimal?)-202.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18515739820, GuardianSite.GuardianSiteType.Structure, "HD 62755", "10 b", (decimal?)1001.78125, (decimal?)-201.53125, (decimal?)-167.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)22810707116, GuardianSite.GuardianSiteType.Structure, "HD 63154", "B 3 a", (decimal?)979.46875, (decimal?)-207.40625, (decimal?)-131.59375, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)44988074331, GuardianSite.GuardianSiteType.Structure, "HIP 36781", "A 6 b", (decimal?)682.03125, (decimal?)-154.03125, (decimal?)-126.65625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)8219259477, GuardianSite.GuardianSiteType.Structure, "HIP 39768", "A 14 f", (decimal?)866.59375, (decimal?)-119.125, (decimal?)-109.03125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)10611558763, GuardianSite.GuardianSiteType.Structure, "HIP 39890", "10 a", (decimal?)648.5625, (decimal?)-137.21875, (decimal?)-0.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)57166267564, GuardianSite.GuardianSiteType.Structure, "HIP 41730", "13 g a", (decimal?)818.375, (decimal?)-7.90625, (decimal?)-149.9375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1488080308579, GuardianSite.GuardianSiteType.Structure, "IC 2391 Sector CA-A d43", "12 a", (decimal?)591.56, (decimal?)-112.15625, (decimal?)-36.1875, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)16072170087825, GuardianSite.GuardianSiteType.Structure, "IC 2391 Sector FL-X b1-7", "A 3", (decimal?)611.34375, (decimal?)-78.40625, (decimal?)-51.6875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18271193277841, GuardianSite.GuardianSiteType.Structure, "IC 2391 Sector HG-X b1-8", "C 2", (decimal?)603.9375, (decimal?)-104.15625, (decimal?)-61.5625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)2106572376395, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector DL-Y d61", "A 2", (decimal?)734.6875, (decimal?)-150.28125, (decimal?)-272.28125, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)2656344967507, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector IR-W d1-77", "AB 1 a", (decimal?)742.78125, (decimal?)-156.90625, (decimal?)-260.96875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)360005374618, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector JR-W c1-1", "1 c", (decimal?)739.625, (decimal?)-158.09375, (decimal?)-278.3125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1459584144034, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector MC-V c2-5", "E 1", (decimal?)795.6875, (decimal?)-114.34375, (decimal?)-258.25, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2833906569906, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector TO-R c4-10", "B 1", (decimal?)758.875, (decimal?)-122, (decimal?)-165.03125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)13875562620225, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector TY-R b4-6", "C 1", (decimal?)792.40625, (decimal?)-119.6875, (decimal?)-264.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1184706237106, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector UO-R c4-4", "B 5", (decimal?)800.25, (decimal?)-118.84375, (decimal?)-158.875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)6132441420466, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector VJ-R c4-22", "A 1", (decimal?)746.34375, (decimal?)-153.09375, (decimal?)-164.25, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)13875294184777, GuardianSite.GuardianSiteType.Structure, "NGC 2451A Sector WE-Q b5-6", "B 1", (decimal?)772.5625, (decimal?)-123.75, (decimal?)-240.125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2759440992603, GuardianSite.GuardianSiteType.Structure, "Pencil Sector AF-A d80", "8 f", (decimal?)835.65625, (decimal?)-17.34375, (decimal?)-130.21875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9477785003393, GuardianSite.GuardianSiteType.Structure, "Pencil Sector BQ-X b1-4", "B 2", (decimal?)800.71875, (decimal?)26.75, (decimal?)-104.59375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8606409822914, GuardianSite.GuardianSiteType.Structure, "Pencil Sector CQ-Y c31", "C 1", (decimal?)800.25, (decimal?)-7.53125, (decimal?)-101.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18273877960049, GuardianSite.GuardianSiteType.Structure, "Pencil Sector VY-A b8", "B 1", (decimal?)804.03125, (decimal?)5.5, (decimal?)-142.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)8606476964538, GuardianSite.GuardianSiteType.Structure, "Pencil Sector XO-A c31", "B 3", (decimal?)842.3125, (decimal?)40.3125, (decimal?)-120.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3383729590970, GuardianSite.GuardianSiteType.Structure, "Pencil Sector YJ-A c12", "B 3", (decimal?)801.53125, (decimal?)-12.15625, (decimal?)-132.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)9156165636794, GuardianSite.GuardianSiteType.Structure, "Pencil Sector YJ-A c33", "1", (decimal?)794.40625, (decimal?)4.75, (decimal?)-116.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1184773444282, GuardianSite.GuardianSiteType.Structure, "Pencil Sector ZJ-A c4", "B 4", (decimal?)854.90625, (decimal?)7.8125, (decimal?)-112.125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3549698165083, GuardianSite.GuardianSiteType.Structure, "Synuefe AH-J d10-103", "B 1", (decimal?)777.53125, (decimal?)-158.28125, (decimal?)-117.4375, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)697839880539, GuardianSite.GuardianSiteType.Structure, "Synuefe AH-J d10-20", "A 3", (decimal?)759.21875, (decimal?)-148.3125, (decimal?)-145.75, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)1591193078107, GuardianSite.GuardianSiteType.Structure, "Synuefe AH-J d10-46", "C 1", (decimal?)741.3125, (decimal?)-164.8125, (decimal?)-138.78125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)9705921385146, GuardianSite.GuardianSiteType.Structure, "Synuefe BE-R c21-35", "E 2", (decimal?)782.6875, (decimal?)-96.15625, (decimal?)-135.03125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)2347124099419, GuardianSite.GuardianSiteType.Structure, "Synuefe BH-J d10-68", "C 1", (decimal?)831.375, (decimal?)-149.125, (decimal?)-175.96875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)3108717367994, GuardianSite.GuardianSiteType.Structure, "Synuefe BZ-Q c21-11", "B 5", (decimal?)727.21875, (decimal?)-119.90625, (decimal?)-128.15625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)1734529192634, GuardianSite.GuardianSiteType.Structure, "Synuefe CE-R c21-6", "C 1", (decimal?)828.1875, (decimal?)-78, (decimal?)-105.1875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7277150676345, GuardianSite.GuardianSiteType.Structure, "Synuefe DJ-G b44-3", "A 5", (decimal?)679.59375, (decimal?)-105.6875, (decimal?)-122.40625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)9475637257609, GuardianSite.GuardianSiteType.Structure, "Synuefe DK-D b46-4", "C 1", (decimal?)652.9375, (decimal?)-63.90625, (decimal?)-80.78125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3933485306554, GuardianSite.GuardianSiteType.Structure, "Synuefe DZ-Q c21-14", "10 a", (decimal?)793.96875, (decimal?)-122.46875, (decimal?)-135.03125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)7276882240945, GuardianSite.GuardianSiteType.Structure, "Synuefe EA-U b50-3", "B 6", (decimal?)673.78125, (decimal?)-106.625, (decimal?)25.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18273609131377, GuardianSite.GuardianSiteType.Structure, "Synuefe ED-I b43-8", "A 2", (decimal?)791.1875, (decimal?)-120.625, (decimal?)-129.40625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)3652777380195, GuardianSite.GuardianSiteType.Structure, "Synuefe EN-H d11-106", "6 a", (decimal?)785.15625, (decimal?)-167.0625, (decimal?)-75.46875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)972717787491, GuardianSite.GuardianSiteType.Structure, "Synuefe EN-H d11-28", "8 b", (decimal?)771.78125, (decimal?)-145, (decimal?)-26.65625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)1007077525859, GuardianSite.GuardianSiteType.Structure, "Synuefe EN-H d11-29", "6 b", (decimal?)745.6875, (decimal?)-115, (decimal?)-91.34375, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)182443805027, GuardianSite.GuardianSiteType.Structure, "Synuefe EN-H d11-5", "4 e", (decimal?)813.625, (decimal?)-121.28125, (decimal?)-90.25, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3309179996515, GuardianSite.GuardianSiteType.Structure, "Synuefe EN-H d11-96", "7 a", (decimal?)757.125, (decimal?)-179.3125, (decimal?)-96.0625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)2833906537146, GuardianSite.GuardianSiteType.Structure, "Synuefe EU-Q c21-10", "A 3", (decimal?)758.65625, (decimal?)-176.90625, (decimal?)-133.21875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)4208296071866, GuardianSite.GuardianSiteType.Structure, "Synuefe EU-Q c21-15", "A 1", (decimal?)754.15625, (decimal?)-171.84375, (decimal?)-138.09375, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)634950456002, GuardianSite.GuardianSiteType.Structure, "Synuefe FK-P c22-2", "E 1", (decimal?)809.75, (decimal?)-104.96875, (decimal?)-104.5625, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)5857429361354, GuardianSite.GuardianSiteType.Structure, "Synuefe GQ-N c23-21", "B 3", (decimal?)655.53125, (decimal?)-66.34375, (decimal?)-62.1875, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)2879909340529, GuardianSite.GuardianSiteType.Structure, "Synuefe GT-H b43-1", "C 4", (decimal?)749, (decimal?)-163.09375, (decimal?)-128.0625, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)9475905430961, GuardianSite.GuardianSiteType.Structure, "Synuefe GV-T b50-4", "B 1", (decimal?)663.46875, (decimal?)-127.5625, (decimal?)27.25, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)11675733992825, GuardianSite.GuardianSiteType.Structure, "Synuefe HE-G b44-5", "B 2", (decimal?)726.6875, (decimal?)-128.9375, (decimal?)-112.71875, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)4758119027394, GuardianSite.GuardianSiteType.Structure, "Synuefe HF-P c22-17", "B 1", (decimal?)783.84375, (decimal?)-114.40625, (decimal?)-92.53125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)11675196990889, GuardianSite.GuardianSiteType.Structure, "Synuefe HF-V b49-5", "C 1", (decimal?)692.46875, (decimal?)-181.15625, (decimal?)6.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)18272266954113, GuardianSite.GuardianSiteType.Structure, "Synuefe HP-E b45-8", "D 3", (decimal?)688.59375, (decimal?)-120.40625, (decimal?)-87.21875, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)1007060748651, GuardianSite.GuardianSiteType.Structure, "Synuefe HT-F d12-29", "C 3", (decimal?)665.78125, (decimal?)-131.96875, (decimal?)38.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5078932661625, GuardianSite.GuardianSiteType.Structure, "Synuefe IE-G b44-2", "A 4", (decimal?)737.25, (decimal?)-130.28125, (decimal?)-111.34375, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)5307673514698, GuardianSite.GuardianSiteType.Structure, "Synuefe IL-N c23-19", "B 2", (decimal?)667.40625, (decimal?)-120.5625, (decimal?)-58.8125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)9476710802817, GuardianSite.GuardianSiteType.Structure, "Synuefe JP-E b45-4", "C 1", (decimal?)724.34375, (decimal?)-111.09375, (decimal?)-103.5625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)11676002362745, GuardianSite.GuardianSiteType.Structure, "Synuefe KZ-F b44-5", "A 1", (decimal?)747.90625, (decimal?)-161.21875, (decimal?)-109.46875, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)2879640905137, GuardianSite.GuardianSiteType.Structure, "Synuefe LQ-T b50-1", "B 2", (decimal?)728.5, (decimal?)-155.65625, (decimal?)19.3125, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)5079737705833, GuardianSite.GuardianSiteType.Structure, "Synuefe LY-I b42-2", "C 2", (decimal?)814.71875, (decimal?)-222.78125, (decimal?)-151.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)22669776594321, GuardianSite.GuardianSiteType.Structure, "Synuefe NB-B b47-10", "B 2", (decimal?)643.4375, (decimal?)-113.84375, (decimal?)-61.5625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)1184840454858, GuardianSite.GuardianSiteType.Structure, "Synuefe NL-N c23-4", "B 3", (decimal?)860.125, (decimal?)-124.59375, (decimal?)-61.0625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11676270732665, GuardianSite.GuardianSiteType.Structure, "Synuefe NU-F b44-5", "B 1", (decimal?)768.21875, (decimal?)-166.0625, (decimal?)-106.40625, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)9478052586857, GuardianSite.GuardianSiteType.Structure, "Synuefe OT-I b42-4", "B 2", (decimal?)817.5, (decimal?)-238.875, (decimal?)-147.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11676270798209, GuardianSite.GuardianSiteType.Structure, "Synuefe PF-E b45-5", "B 2", (decimal?)758.5, (decimal?)-164.65625, (decimal?)-101.28125, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)6682130125522, GuardianSite.GuardianSiteType.Structure, "Synuefe PM-L c24-24", "C 6", (decimal?)706.6875, (decimal?)-158.875, (decimal?)10.5, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2283949429466, GuardianSite.GuardianSiteType.Structure, "Synuefe PX-J c25-8", "7 a", (decimal?)649.6875, (decimal?)-124.25, (decimal?)32.4375, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)681959695737, GuardianSite.GuardianSiteType.Structure, "Synuefe SP-F b44-0", "C 1", (decimal?)831.625, (decimal?)-187.5625, (decimal?)-121.84375, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)682228131193, GuardianSite.GuardianSiteType.Structure, "Synuefe TP-F b44-0", "CD 1", (decimal?)838.75, (decimal?)-197.84375, (decimal?)-111.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)682228065657, GuardianSite.GuardianSiteType.Structure, "Synuefe VK-F b44-0", "B 1", (decimal?)836.9375, (decimal?)-220.78125, (decimal?)-122.75, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2725047667035, GuardianSite.GuardianSiteType.Structure, "Synuefe ZG-J d10-79", "B 1", (decimal?)728, (decimal?)-121.34375, (decimal?)-133.25, GuardianSite.BlueprintType.Vessel), + new GuardianSite( (ulong?)3755873388891, GuardianSite.GuardianSiteType.Structure, "Synuefe ZL-J d10-109", "E 3", (decimal?)852.65625, (decimal?)-51.125, (decimal?)-124.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)4099470772571, GuardianSite.GuardianSiteType.Structure, "Synuefe ZL-J d10-119", "9 b", (decimal?)834.21875, (decimal?)-51.21875, (decimal?)-154.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)22671924274545, GuardianSite.GuardianSiteType.Structure, "Synuefe ZR-I b43-10", "D 2", (decimal?)811.40625, (decimal?)-60.4375, (decimal?)-144.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)634547605994, GuardianSite.GuardianSiteType.Structure, "Trapezium Sector YU-X c1-2", "1 a", (decimal?)573.59375, (decimal?)-339.46875, (decimal?)-1167.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3790249904483, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region BQ-Y d110", "4 b", (decimal?)953.375, (decimal?)-93.8125, (decimal?)-76.28125, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)3240494090595, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region BQ-Y d94", "9 b", (decimal?)916.6875, (decimal?)-99.46875, (decimal?)-86.5625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)85463044794, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region CQ-Y c0", "A 2", (decimal?)940.78125, (decimal?)-122.34375, (decimal?)-133.0625, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)3858969364835, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region DL-Y d112", "1 a", (decimal?)924.46875, (decimal?)-171.8125, (decimal?)-98.21875, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)2862536952163, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region DL-Y d83", "5 b", (decimal?)930.4375, (decimal?)-165.78125, (decimal?)-65.1875, GuardianSite.BlueprintType.Module), + new GuardianSite( (ulong?)3137414859107, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region DL-Y d91", "5 a", (decimal?)922.78125, (decimal?)-126, (decimal?)-101.78125, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2882862196089, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region EG-X b1-1", "A 1", (decimal?)957.6875, (decimal?)-143.34375, (decimal?)-123.40625, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)1110207072611, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region EL-Y d32", "B 1", (decimal?)1000.65625, (decimal?)-166.21875, (decimal?)-64.15625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1900481055075, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region EL-Y d55", "1", (decimal?)975.78125, (decimal?)-156.8125, (decimal?)-75.34375, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)2175375739235, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region FL-Y d63", "B 1", (decimal?)1064.5, (decimal?)-144.03125, (decimal?)-101.71875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7782245798594, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region HB-X c1-28", "E 2", (decimal?)1073.0625, (decimal?)-100.65625, (decimal?)-92.75, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7280908576121, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region IW-W b1-3", "B 1", (decimal?)963.03125, (decimal?)-165.1875, (decimal?)-124.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)683033634185, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region JS-T b3-0", "A 3", (decimal?)899.9375, (decimal?)-142.1875, (decimal?)-82.25, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)6682666996418, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region KR-W c1-24", "7 a", (decimal?)1036.875, (decimal?)-163.59375, (decimal?)-85.96875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7280640271761, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region PY-R b4-3", "B 2", (decimal?)935.59375, (decimal?)-138.1875, (decimal?)-48.40625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5081885320585, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region QI-T b3-2", "B 1", (decimal?)967.28125, (decimal?)-180.3125, (decimal?)-72.84375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)16077270164881, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region RY-R b4-7", "A 1", (decimal?)977.90625, (decimal?)-126.21875, (decimal?)-57.65625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)11680297461137, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region TD-S b4-5", "C 1", (decimal?)1071.21875, (decimal?)-121.03125, (decimal?)-50.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)2278421399899, GuardianSite.GuardianSiteType.Structure, "Vela Dark Region ZE-A d66", "6 b", (decimal?)966.90625, (decimal?)-158, (decimal?)-131.6875, GuardianSite.BlueprintType.Weapon), + new GuardianSite( (ulong?)685451322393, GuardianSite.GuardianSiteType.Structure, "Wregoe BU-Y b2-0", "1 c", (decimal?)1077.375, (decimal?)400.5625, (decimal?)-993.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)685451322393, GuardianSite.GuardianSiteType.Structure, "Wregoe BU-Y b2-0", "1 c", (decimal?)1077.375, (decimal?)400.5625, (decimal?)-993.375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5267685116251, GuardianSite.GuardianSiteType.Structure, "Wregoe CQ-G d10-153", "C 2", (decimal?)794.53125, (decimal?)26.5, (decimal?)-175.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1934790494555, GuardianSite.GuardianSiteType.Structure, "Wregoe CQ-G d10-56", "6 a", (decimal?)798.8125, (decimal?)49.90625, (decimal?)-153.625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)1453770934619, GuardianSite.GuardianSiteType.Structure, "Wregoe DQ-G d10-42", "5 a", (decimal?)865.0625, (decimal?)11.625, (decimal?)-136.4375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)5080007058793, GuardianSite.GuardianSiteType.Structure, "Wregoe IM-Z b41-2", "B 2", (decimal?)820.71875, (decimal?)55.78125, (decimal?)-164.09375, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)7278761682273, GuardianSite.GuardianSiteType.Structure, "Wregoe JR-A b41-3", "F 2", (decimal?)801.34375, (decimal?)-3.0625, (decimal?)-166.46875, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)360206865082, GuardianSite.GuardianSiteType.Structure, "Wregoe JR-L c21-1", "C 2", (decimal?)855.25, (decimal?)17.34375, (decimal?)-137.90625, GuardianSite.BlueprintType.None), + new GuardianSite( (ulong?)681960482153, GuardianSite.GuardianSiteType.Structure, "Wregoe KH-Z b41-0", "C 3", (decimal?)826, (decimal?)51.375, (decimal?)-162.6875, GuardianSite.BlueprintType.None) + }; + } +} diff --git a/DataDefinitions/Nebula.cs b/DataDefinitions/Nebula.cs new file mode 100644 index 0000000000..0e614a9004 --- /dev/null +++ b/DataDefinitions/Nebula.cs @@ -0,0 +1,239 @@ +using System.Collections.Generic; +using System.Linq; +using Utilities; +using Utilities.RegionMap; + +namespace EddiDataDefinitions +{ + public class Nebula + { + static Nebula () + { } + + public enum FilterVisited { + NotVisited = 0, + Visited = 1, + All = 2 + } + + public enum NebulaType { + None = 0, + Standard = 1, + Real = 2, + Planetary = 3 + } + + [PublicAPI] + public string localizedType => Properties.NebulaType.ResourceManager.GetString(type.ToString()); + + [PublicAPI] + public string regionName => RegionMap.GetRegionName(region); + + public int id { get; set; } + public NebulaType type { get; set; } + + [PublicAPI("The name of the nebula")] + public string name { get; set; } + public int region; + public bool hasCentralBody; + public string referenceBody { get; set; } + public string referenceSector { get; set; } + public decimal? x; // x coordinate of system + public decimal? y; // y coordinate of system + public decimal? z; // z coordinate of system + public int? diameter { get; set; } // Approximate diameter of nebula in Ly + + // Calucated distance from target system ( Gets set and returned with TryGetNearestNebula ) + [PublicAPI("The calculated distance to the central point of the nebula from the current system.")] + public decimal? distance { get; set; } + public bool visited { get; set; } + + // dummy used to ensure that the static constructor has run + public Nebula () + { } + + internal Nebula ( int id, + NebulaType type, + string name, + int region, + bool hasCentralBody, + string referenceBody, + //string referenceSector, // TODO:Future - Add nebula sectors for non-central body nebulae + decimal? x, + decimal? y, + decimal? z, + int? diameter, + bool visited=false) + { + this.id = id; + this.type = type; + this.name = name; + this.region = region; + this.hasCentralBody = hasCentralBody; + this.referenceBody = referenceBody; + //this.referenceSector = referenceSector; // TODO:Future - Add nebula sectors for non-central body nebulae + this.x = x; + this.y = y; + this.z = z; + this.diameter = diameter; + this.distance = 0; + this.visited = visited; + } + + public static Nebula TryGetNearestNebula ( string systemname, decimal? systemX, decimal? systemY, decimal? systemZ ) + { + List listNebula = new List(); + + // TODO: 2212 - Future - Add nebula sectors for non-central body nebulas + // - Check if system name is in the nebula sector list + // - systemname.Contains(nebula.referenceSector) + // - This also needs to be added to the other overloads/alternative methods below + + //foreach( var nebula in AllOfThem.Where( x => x.hasCentralBody==false).ToList() ) + //{ + // if( systemname == nebula.referenceSector ) + // { + // listNebula.Add( nebula ); + // } + //} + + // If not in sector then check nebula list + if(listNebula.Count == 0 ) { + + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true ) ) + { + if( nebula.x != null && nebula.y != null && nebula.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + nebula.distance = Functions.StellarDistanceSquare(systemX, systemY, systemZ, nebula.x, nebula.y, nebula.z); + //nebula.distance = Functions.StellarDistanceLy(systemX, systemY, systemZ, nebula.x, nebula.y, nebula.z); + listNebula.Add(nebula); + } + } + } + + Nebula closest = listNebula.OrderBy( s => s.distance).First(); + closest.distance = Functions.StellarDistanceLy( closest.distance ); + + return closest; + } + + public static Nebula TryGetNearestNebula ( decimal? systemX, decimal? systemY, decimal? systemZ ) + { + List listNebula = new List(); + + // If not in sector then check nebula list + if(listNebula.Count == 0 ) { + + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true ) ) + { + if( nebula.x != null && nebula.y != null && nebula.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + nebula.distance = Functions.StellarDistanceSquare(systemX, systemY, systemZ, nebula.x, nebula.y, nebula.z); + listNebula.Add(nebula); + } + } + } + + Nebula closest = listNebula.OrderBy( s => s.distance).First(); + closest.distance = Functions.StellarDistanceLy( closest.distance ); + + return closest; + } + + public static List TryGetNearestNebulae ( decimal? systemX, decimal? systemY, decimal? systemZ, int maxCount=50, int maxDistance=10000, Nebula.FilterVisited filterVisited=Nebula.FilterVisited.All ) + { + List listNebula = new List(); + + // If not in sector then check nebula list + if(listNebula.Count == 0 ) { + + if (filterVisited == Nebula.FilterVisited.All) { + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true ) ) + { + CalcNebulaDistance( systemX, systemY, systemZ, nebula, ref listNebula); + } + } + else if (filterVisited == Nebula.FilterVisited.Visited) { + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true && x.visited==true ) ) + { + CalcNebulaDistance( systemX, systemY, systemZ, nebula, ref listNebula); + } + } + else if (filterVisited == Nebula.FilterVisited.NotVisited) { + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true && x.visited==false ) ) + { + CalcNebulaDistance( systemX, systemY, systemZ, nebula, ref listNebula); + } + } + } + + var maxDistanceSquared = maxDistance*maxDistance; + List closestList = listNebula.Where( s => s.distance <= maxDistanceSquared ).OrderBy( s => s.distance).Take(maxCount).ToList(); + for(int i = 0; i< closestList.Count; i++) { + closestList[i].distance = Functions.StellarDistanceLy( closestList[i].distance ); + } + + return closestList; + } + + private static void CalcNebulaDistance(decimal? systemX, decimal? systemY, decimal? systemZ, Nebula nebula, ref List listNebula) { + if( nebula.x != null && nebula.y != null && nebula.z != null ) + { + // We don't need the exact distance, use the faster method for sorting purposes + nebula.distance = Functions.StellarDistanceSquare(systemX, systemY, systemZ, nebula.x, nebula.y, nebula.z); + listNebula.Add(nebula); + } + } + + public static List TryGetNearestNebulae ( Nebula.NebulaType type, decimal? systemX, decimal? systemY, decimal? systemZ, int maxCount=50, int maxDistance=10000, Nebula.FilterVisited filterVisited=Nebula.FilterVisited.All ) + { + List listNebula = new List(); + + // If not in sector then check nebula list + if(listNebula.Count == 0 ) { + if (filterVisited == Nebula.FilterVisited.All) { + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true && x.type==type ) ) + { + CalcNebulaDistance( systemX, systemY, systemZ, nebula, ref listNebula); + } + } + else if (filterVisited == Nebula.FilterVisited.Visited) { + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true && x.type==type && x.visited==true ) ) + { + CalcNebulaDistance( systemX, systemY, systemZ, nebula, ref listNebula); + } + } + else if (filterVisited == Nebula.FilterVisited.NotVisited) { + // Get the distance (squared) of all Nebula + foreach( var nebula in NebulaDefinitions.AllOfThem.Where( x => x.hasCentralBody==true && x.type==type && x.visited==false ) ) + { + CalcNebulaDistance( systemX, systemY, systemZ, nebula, ref listNebula); + } + } + } + + var maxDistanceSquared = maxDistance*maxDistance; + List closestList = listNebula.Where( s => s.distance <= maxDistanceSquared ).OrderBy( s => s.distance).Take(maxCount).ToList(); + for(int i = 0; i< closestList.Count; i++) { + closestList[i].distance = Functions.StellarDistanceLy( closestList[i].distance ); + } + + return closestList; + } + + public static Nebula TryGetNearestNebula ( StarSystem starsystem ) + { + return TryGetNearestNebula( starsystem.systemname, starsystem.x, starsystem.y, starsystem.z ); + } + + } +} diff --git a/DataDefinitions/NebulaDefinitions.cs b/DataDefinitions/NebulaDefinitions.cs new file mode 100644 index 0000000000..b3096e50c0 --- /dev/null +++ b/DataDefinitions/NebulaDefinitions.cs @@ -0,0 +1,5905 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Security.Policy; +using System.ServiceModel.Description; +using Utilities; + +namespace EddiDataDefinitions +{ + public static class NebulaDefinitions + { + //public static List AllOfThem = new List (); + + // This data came from the Catalogue of Galactic Nebulae: + // - https://forums.frontier.co.uk/threads/catalogue-of-galactic-nebulae-submit-your-planetary-nebulae.511743/ + // - https://docs.google.com/spreadsheets/d/1uU01bSvv5SpScuOnsaUK56R2ylVAU4rFtVkcGUA7VZg/edit#gid=73369533 + + // Supplemental data was obtained from EDSM API + // - https://www.edsm.net/ + // - https://www.edsm.net/api-v1/ + + public static List AllOfThem = new List(); + + public static void init_Region_1() + { + AllOfThem.Add(new Nebula( 10001, Nebula.NebulaType.Standard, "Dryio Bli AA-A h214", 1, true, "Dryio Bli GJ-T c6-4182", (decimal?)1707, (decimal?)-86.34375, (decimal?)28689.46875, (int)100 )); + AllOfThem.Add(new Nebula( 10002, Nebula.NebulaType.Standard, "Eoch Bli AA-A h108", 1, true, "Eoch Bli EQ-F c27-1600", (decimal?)1871.09375, (decimal?)-304.84375, (decimal?)28261.75, (int)100 )); + AllOfThem.Add(new Nebula( 10003, Nebula.NebulaType.Standard, "Eok Bluae AA-A h334", 1, true, "Eok Bluae GX-K d8-1521", (decimal?)294.21875, (decimal?)-971.59375, (decimal?)27838.21875, (int)100 )); + AllOfThem.Add(new Nebula( 10004, Nebula.NebulaType.Standard, "Oudaitt AA-A h675", 1, true, "Oudaitt NH-L d8-326", (decimal?)2464.53125, (decimal?)-2041.8125, (decimal?)27840.8125, (int)100 )); + AllOfThem.Add(new Nebula( 10005, Nebula.NebulaType.Standard, "Phipoea AA-A h486", 1, true, "Phipoea HJ-D c27-3404", (decimal?)-490.03125, (decimal?)499.6875, (decimal?)28260.3125, (int)100 )); + AllOfThem.Add(new Nebula( 10006, Nebula.NebulaType.Standard, "Wrupeou AA-A h564", 1, true, "Wrupeou BL-J c11-85", (decimal?)2309.9375, (decimal?)-1587.90625, (decimal?)28864.9375, (int)100 )); + AllOfThem.Add(new Nebula( 20232, Nebula.NebulaType.Planetary, "Baukoa CQ-Y e2052", 1, true, "Baukoa CQ-Y e2052", (decimal?)2865.5625, (decimal?)368.9375, (decimal?)28546.375, (int)10 )); + AllOfThem.Add(new Nebula( 20233, Nebula.NebulaType.Planetary, "Baukoa CR-V e2-6258", 1, true, "Baukoa CR-V e2-6258", (decimal?)2542.8125, (decimal?)828.0625, (decimal?)29014.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20234, Nebula.NebulaType.Planetary, "Baukoa EW-W e1-3233", 1, true, "Baukoa EW-W e1-3233", (decimal?)2523.21875, (decimal?)336.46875, (decimal?)28759.125, (int)10 )); + AllOfThem.Add(new Nebula( 20236, Nebula.NebulaType.Planetary, "Baukoa QE-Q e5-2321", 1, true, "Baukoa QE-Q e5-2321", (decimal?)2511.75, (decimal?)691.46875, (decimal?)29400.75, (int)10 )); + AllOfThem.Add(new Nebula( 20237, Nebula.NebulaType.Planetary, "Baukoa RO-R e4-2236", 1, true, "Baukoa RO-R e4-2236", (decimal?)2690.6875, (decimal?)340.09375, (decimal?)29272.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20238, Nebula.NebulaType.Planetary, "Baukoa SY-S e3-1218", 1, true, "Baukoa SY-S e3-1218", (decimal?)2912.15625, (decimal?)62.875, (decimal?)29044.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20245, Nebula.NebulaType.Planetary, "Baukoa YK-X e1-1573", 1, true, "Baukoa YK-X e1-1573", (decimal?)2617.5625, (decimal?)907.96875, (decimal?)28722.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20247, Nebula.NebulaType.Planetary, "Baukoa ZP-X e1-4334", 1, true, "Baukoa ZP-X e1-4334", (decimal?)2994.8125, (decimal?)1059.59375, (decimal?)28814.625, (int)10 )); + AllOfThem.Add(new Nebula( 20533, Nebula.NebulaType.Planetary, "Byoomao AK-A e2937", 1, true, "Byoomao AK-A e2937", (decimal?)-632, (decimal?)-968.875, (decimal?)24578.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20534, Nebula.NebulaType.Planetary, "Byoomao EW-W e1-3918", 1, true, "Byoomao EW-W e1-3918", (decimal?)-1230.28125, (decimal?)-848.5, (decimal?)24925.375, (int)10 )); + AllOfThem.Add(new Nebula( 20535, Nebula.NebulaType.Planetary, "Byoomao FR-N e6-5024", 1, true, "Byoomao FR-N e6-5024", (decimal?)-832.03125, (decimal?)-1277.4375, (decimal?)25801.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20536, Nebula.NebulaType.Planetary, "Byoomao HB-X e1-232", 1, true, "Byoomao HB-X e1-232", (decimal?)-416.03125, (decimal?)-741.5625, (decimal?)24981.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20537, Nebula.NebulaType.Planetary, "Byoomao IH-V e2-4927", 1, true, "Byoomao IH-V e2-4927", (decimal?)-868.03125, (decimal?)-806.625, (decimal?)25057.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20538, Nebula.NebulaType.Planetary, "Byoomao KD-S e4-5211", 1, true, "Byoomao KD-S e4-5211", (decimal?)-1290.25, (decimal?)-485.4375, (decimal?)25478.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20539, Nebula.NebulaType.Planetary, "Byoomao MI-S e4-4188", 1, true, "Byoomao MI-S e4-4188", (decimal?)-634.5, (decimal?)-251.5, (decimal?)25350.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20540, Nebula.NebulaType.Planetary, "Byoomao MI-S e4-5423", 1, true, "Byoomao MI-S e4-5423", (decimal?)-699.4375, (decimal?)-239.34375, (decimal?)25402.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20541, Nebula.NebulaType.Planetary, "Byoomao NN-T e3-3220", 1, true, "Byoomao NN-T e3-3220", (decimal?)-785.03125, (decimal?)-805.375, (decimal?)25245.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20542, Nebula.NebulaType.Planetary, "Byoomao QD-B e1429", 1, true, "Byoomao QD-B e1429", (decimal?)-969.09375, (decimal?)-284.78125, (decimal?)24546.375, (int)10 )); + AllOfThem.Add(new Nebula( 20543, Nebula.NebulaType.Planetary, "Byoomao VY-S e3-8712", 1, true, "Byoomao VY-S e3-8712", (decimal?)-437.75, (decimal?)-1247.6875, (decimal?)25243.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20580, Nebula.NebulaType.Planetary, "Byoomi CQ-X e1-8507", 1, true, "Byoomi CQ-X e1-8507", (decimal?)-1644.15625, (decimal?)-327.65625, (decimal?)24971.75, (int)10 )); + AllOfThem.Add(new Nebula( 20582, Nebula.NebulaType.Planetary, "Byoomi FG-X e1-2287", 1, true, "Byoomi FG-X e1-2287", (decimal?)-1802.375, (decimal?)-585.96875, (decimal?)24947.5, (int)10 )); + AllOfThem.Add(new Nebula( 20583, Nebula.NebulaType.Planetary, "Byoomi ND-S e4-4269", 1, true, "Byoomi ND-S e4-4269", (decimal?)-2115.75, (decimal?)-430.25, (decimal?)25456.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20584, Nebula.NebulaType.Planetary, "Byoomi OC-V e2-7371", 1, true, "Byoomi OC-V e2-7371", (decimal?)-1598.90625, (decimal?)-832.46875, (decimal?)25172.625, (int)10 )); + AllOfThem.Add(new Nebula( 20585, Nebula.NebulaType.Planetary, "Byoomi PZ-O e6-5855", 1, true, "Byoomi PZ-O e6-5855", (decimal?)-2414.0625, (decimal?)-158.5625, (decimal?)25676.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20586, Nebula.NebulaType.Planetary, "Byoomi QI-T e3-330", 1, true, "Byoomi QI-T e3-330", (decimal?)-1982.6875, (decimal?)-885.625, (decimal?)25200.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20588, Nebula.NebulaType.Planetary, "Byoomi SO-Q e5-7965", 1, true, "Byoomi SO-Q e5-7965", (decimal?)-1656.78125, (decimal?)-337.03125, (decimal?)25608.375, (int)10 )); + AllOfThem.Add(new Nebula( 20589, Nebula.NebulaType.Planetary, "Byoomi TT-R e4-5801", 1, true, "Byoomi TT-R e4-5801", (decimal?)-1734.46875, (decimal?)-691.40625, (decimal?)25450.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20590, Nebula.NebulaType.Planetary, "Byoomi TT-R e4-8233", 1, true, "Byoomi TT-R e4-8233", (decimal?)-1754.625, (decimal?)-801.09375, (decimal?)25339.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20591, Nebula.NebulaType.Planetary, "Byoomi TZ-O e6-5228", 1, true, "Byoomi TZ-O e6-5228", (decimal?)-1673.40625, (decimal?)-93.5625, (decimal?)25798.25, (int)10 )); + AllOfThem.Add(new Nebula( 20593, Nebula.NebulaType.Planetary, "Byoomi UU-O e6-3286", 1, true, "Byoomi UU-O e6-3286", (decimal?)-1825.1875, (decimal?)-233.34375, (decimal?)25708.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20594, Nebula.NebulaType.Planetary, "Byoomi WU-O e6-9437", 1, true, "Byoomi WU-O e6-9437", (decimal?)-1528.53125, (decimal?)-206.125, (decimal?)25756.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20595, Nebula.NebulaType.Planetary, "Byoomi YP-X e1-7027", 1, true, "Byoomi YP-X e1-7027", (decimal?)-2170.46875, (decimal?)-272.09375, (decimal?)24904.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20596, Nebula.NebulaType.Planetary, "Byoomi ZF-O e6-3086", 1, true, "Byoomi ZF-O e6-3086", (decimal?)-2024.75, (decimal?)-812.34375, (decimal?)25724.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20692, Nebula.NebulaType.Planetary, "Choomee BQ-P e5-1359", 1, true, "Choomee BQ-P e5-1359", (decimal?)-1792.0625, (decimal?)289.25, (decimal?)25637.5, (int)10 )); + AllOfThem.Add(new Nebula( 20693, Nebula.NebulaType.Planetary, "Choomee GB-X e1-179", 1, true, "Choomee GB-X e1-179", (decimal?)-1947.4375, (decimal?)496.1875, (decimal?)24914.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20694, Nebula.NebulaType.Planetary, "Choomee HM-V e2-5721", 1, true, "Choomee HM-V e2-5721", (decimal?)-2081.46875, (decimal?)640.21875, (decimal?)25155.375, (int)10 )); + AllOfThem.Add(new Nebula( 20697, Nebula.NebulaType.Planetary, "Choomee NT-Q e5-2913", 1, true, "Choomee NT-Q e5-2913", (decimal?)-2056.46875, (decimal?)1238.875, (decimal?)25600.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20700, Nebula.NebulaType.Planetary, "Choomee ZK-P e5-3000", 1, true, "Choomee ZK-P e5-3000", (decimal?)-2392.03125, (decimal?)69.4375, (decimal?)25510.25, (int)10 )); + AllOfThem.Add(new Nebula( 20701, Nebula.NebulaType.Planetary, "Choomee ZU-P e5-4299", 1, true, "Choomee ZU-P e5-4299", (decimal?)-1792.71875, (decimal?)393.6875, (decimal?)25612.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20776, Nebula.NebulaType.Planetary, "Croomaa NM-W e1-2366", 1, true, "Croomaa NM-W e1-2366", (decimal?)-461.34375, (decimal?)1319.28125, (decimal?)24977.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20777, Nebula.NebulaType.Planetary, "Croomaa ZP-P e5-2155", 1, true, "Croomaa ZP-P e5-2155", (decimal?)-824.65625, (decimal?)1475.5, (decimal?)25580.125, (int)10 )); + AllOfThem.Add(new Nebula( 20781, Nebula.NebulaType.Planetary, "Croomoi CF-A e4031", 1, true, "Croomoi CF-A e4031", (decimal?)-1893.28125, (decimal?)1559.1875, (decimal?)24575.25, (int)10 )); + AllOfThem.Add(new Nebula( 20796, Nebula.NebulaType.Planetary, "Dryaa Bloo BB-W e2-1674", 1, true, "Dryaa Bloo BB-W e2-1674", (decimal?)450.96875, (decimal?)-1442.90625, (decimal?)28893.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20797, Nebula.NebulaType.Planetary, "Dryaa Bloo GG-X e1-843", 1, true, "Dryaa Bloo GG-X e1-843", (decimal?)1004.1875, (decimal?)-1858.96875, (decimal?)28835.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20798, Nebula.NebulaType.Planetary, "Dryaa Bloo TO-Z e4342", 1, true, "Dryaa Bloo TO-Z e4342", (decimal?)457.1875, (decimal?)-1345.9375, (decimal?)28689.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20799, Nebula.NebulaType.Planetary, "Dryaa Blou CB-W e2-6466", 1, true, "Dryaa Blou CB-W e2-6466", (decimal?)-1873.25, (decimal?)-119.96875, (decimal?)28872.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20801, Nebula.NebulaType.Planetary, "Dryaa Blou JC-U e3-673", 1, true, "Dryaa Blou JC-U e3-673", (decimal?)-1678.4375, (decimal?)-211.875, (decimal?)29146.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20803, Nebula.NebulaType.Planetary, "Dryaa Blou TO-Q e5-8050", 1, true, "Dryaa Blou TO-Q e5-8050", (decimal?)-1418.65625, (decimal?)-207.25, (decimal?)29457.75, (int)10 )); + AllOfThem.Add(new Nebula( 20805, Nebula.NebulaType.Planetary, "Dryaa Blou XE-Q e5-336", 1, true, "Dryaa Blou XE-Q e5-336", (decimal?)-1499.0625, (decimal?)-611.9375, (decimal?)29344.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20806, Nebula.NebulaType.Planetary, "Dryaa Blou YZ-Y e2757", 1, true, "Dryaa Blou YZ-Y e2757", (decimal?)-2169.28125, (decimal?)-586.875, (decimal?)28624.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20807, Nebula.NebulaType.Planetary, "Dryaa Bluae DB-W e2-1585", 1, true, "Dryaa Bluae DB-W e2-1585", (decimal?)763.375, (decimal?)-120.21875, (decimal?)29004.125, (int)10 )); + AllOfThem.Add(new Nebula( 20808, Nebula.NebulaType.Planetary, "Dryaa Bluae DG-O e6-2581", 1, true, "Dryaa Bluae DG-O e6-2581", (decimal?)1202.90625, (decimal?)-765.53125, (decimal?)29521.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20809, Nebula.NebulaType.Planetary, "Dryaa Bluae FR-V e2-7085", 1, true, "Dryaa Bluae FR-V e2-7085", (decimal?)449.09375, (decimal?)-460.65625, (decimal?)28982.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20810, Nebula.NebulaType.Planetary, "Dryaa Bluae HA-A e2387", 1, true, "Dryaa Bluae HA-A e2387", (decimal?)1180.5, (decimal?)-1166.84375, (decimal?)28493.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20811, Nebula.NebulaType.Planetary, "Dryaa Bluae IH-U e3-5608", 1, true, "Dryaa Bluae IH-U e3-5608", (decimal?)909.09375, (decimal?)-117.875, (decimal?)29149.5, (int)10 )); + AllOfThem.Add(new Nebula( 20812, Nebula.NebulaType.Planetary, "Dryaa Bluae IL-Y e9566", 1, true, "Dryaa Bluae IL-Y e9566", (decimal?)1027.46875, (decimal?)-1088.96875, (decimal?)28688.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20813, Nebula.NebulaType.Planetary, "Dryaa Bluae IM-V e2-10558", 1, true, "Dryaa Bluae IM-V e2-10558", (decimal?)587, (decimal?)-523.375, (decimal?)28961.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20814, Nebula.NebulaType.Planetary, "Dryaa Bluae JX-T e3-7294", 1, true, "Dryaa Bluae JX-T e3-7294", (decimal?)527.25, (decimal?)-381.3125, (decimal?)29080.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20815, Nebula.NebulaType.Planetary, "Dryaa Bluae JX-T e3-773", 1, true, "Dryaa Bluae JX-T e3-773", (decimal?)439.5, (decimal?)-499.34375, (decimal?)29091.75, (int)10 )); + AllOfThem.Add(new Nebula( 20816, Nebula.NebulaType.Planetary, "Dryaa Bluae MX-T e3-8584", 1, true, "Dryaa Bluae MX-T e3-8584", (decimal?)992, (decimal?)-416.8125, (decimal?)29071.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20817, Nebula.NebulaType.Planetary, "Dryaa Bluae NT-Q e5-9448", 1, true, "Dryaa Bluae NT-Q e5-9448", (decimal?)458.1875, (decimal?)-134.4375, (decimal?)29468.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20818, Nebula.NebulaType.Planetary, "Dryaa Bluae SD-T e3-4546", 1, true, "Dryaa Bluae SD-T e3-4546", (decimal?)626.375, (decimal?)-1019.96875, (decimal?)29038.875, (int)10 )); + AllOfThem.Add(new Nebula( 20819, Nebula.NebulaType.Planetary, "Dryaa Bluae SO-Q e5-5640", 1, true, "Dryaa Bluae SO-Q e5-5640", (decimal?)1043.59375, (decimal?)-244.9375, (decimal?)29446.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20820, Nebula.NebulaType.Planetary, "Dryaa Bluae WT-A e8356", 1, true, "Dryaa Bluae WT-A e8356", (decimal?)600.5625, (decimal?)-561.59375, (decimal?)28417.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20821, Nebula.NebulaType.Planetary, "Dryaa Bluae WU-O e6-7807", 1, true, "Dryaa Bluae WU-O e6-7807", (decimal?)981.71875, (decimal?)-202.625, (decimal?)29569.875, (int)10 )); + AllOfThem.Add(new Nebula( 20822, Nebula.NebulaType.Planetary, "Dryaa Bluae ZP-O e6-1387", 1, true, "Dryaa Bluae ZP-O e6-1387", (decimal?)1148.875, (decimal?)-427.5625, (decimal?)29505.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20929, Nebula.NebulaType.Planetary, "Dryao Chrea BQ-Y e2924", 1, true, "Dryao Chrea BQ-Y e2924", (decimal?)-1057.90625, (decimal?)349.03125, (decimal?)28652.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20930, Nebula.NebulaType.Planetary, "Dryao Chrea DW-V e2-8871", 1, true, "Dryao Chrea DW-V e2-8871", (decimal?)-835.84375, (decimal?)991.59375, (decimal?)29007.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20931, Nebula.NebulaType.Planetary, "Dryao Chrea GH-U e3-2374", 1, true, "Dryao Chrea GH-U e3-2374", (decimal?)-684.71875, (decimal?)1185.96875, (decimal?)29121.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20932, Nebula.NebulaType.Planetary, "Dryao Chrea GH-U e3-8541", 1, true, "Dryao Chrea GH-U e3-8541", (decimal?)-684.03125, (decimal?)1125.875, (decimal?)29068.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20933, Nebula.NebulaType.Planetary, "Dryao Chrea MD-S e4-6696", 1, true, "Dryao Chrea MD-S e4-6696", (decimal?)-1004.59375, (decimal?)815.1875, (decimal?)29243.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20934, Nebula.NebulaType.Planetary, "Dryao Chrea NN-T e3-4612", 1, true, "Dryao Chrea NN-T e3-4612", (decimal?)-779.625, (decimal?)457.5625, (decimal?)29134.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20935, Nebula.NebulaType.Planetary, "Dryao Chrea NS-U e2-5447", 1, true, "Dryao Chrea NS-U e2-5447", (decimal?)-1046.03125, (decimal?)113.78125, (decimal?)28958.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20936, Nebula.NebulaType.Planetary, "Dryao Chrea QO-R e4-6266", 1, true, "Dryao Chrea QO-R e4-6266", (decimal?)-1228.59375, (decimal?)346.625, (decimal?)29188.125, (int)10 )); + AllOfThem.Add(new Nebula( 20937, Nebula.NebulaType.Planetary, "Dryao Chrea QY-R e4-326", 1, true, "Dryao Chrea QY-R e4-326", (decimal?)-568.96875, (decimal?)695.375, (decimal?)29288.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20938, Nebula.NebulaType.Planetary, "Dryao Chrea SJ-Q e5-3696", 1, true, "Dryao Chrea SJ-Q e5-3696", (decimal?)-696.6875, (decimal?)797.4375, (decimal?)29418, (int)10 )); + AllOfThem.Add(new Nebula( 20939, Nebula.NebulaType.Planetary, "Dryao Chrea TD-B e1012", 1, true, "Dryao Chrea TD-B e1012", (decimal?)-413.28125, (decimal?)1094.78125, (decimal?)28431.25, (int)10 )); + AllOfThem.Add(new Nebula( 20940, Nebula.NebulaType.Planetary, "Dryao Chrea UE-R e4-6191", 1, true, "Dryao Chrea UE-R e4-6191", (decimal?)-1271.28125, (decimal?)73.3125, (decimal?)29229.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20941, Nebula.NebulaType.Planetary, "Dryao Chrea UO-R e4-626", 1, true, "Dryao Chrea UO-R e4-626", (decimal?)-641.71875, (decimal?)417.59375, (decimal?)29261.25, (int)10 )); + AllOfThem.Add(new Nebula( 20942, Nebula.NebulaType.Planetary, "Dryao Chrea VK-O e6-1411", 1, true, "Dryao Chrea VK-O e6-1411", (decimal?)-1174.5625, (decimal?)639.8125, (decimal?)29553.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20943, Nebula.NebulaType.Planetary, "Dryao Chrea VU-P e5-7481", 1, true, "Dryao Chrea VU-P e5-7481", (decimal?)-1105.125, (decimal?)407.71875, (decimal?)29433.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20944, Nebula.NebulaType.Planetary, "Dryao Chrea XF-O e6-6046", 1, true, "Dryao Chrea XF-O e6-6046", (decimal?)-1104.1875, (decimal?)457.625, (decimal?)29555.375, (int)10 )); + AllOfThem.Add(new Nebula( 20945, Nebula.NebulaType.Planetary, "Dryao Chrea XZ-Y e3650", 1, true, "Dryao Chrea XZ-Y e3650", (decimal?)-1135.9375, (decimal?)617.53125, (decimal?)28657.625, (int)10 )); + AllOfThem.Add(new Nebula( 20946, Nebula.NebulaType.Planetary, "Dryao Chrea ZU-P e5-7173", 1, true, "Dryao Chrea ZU-P e5-7173", (decimal?)-540.1875, (decimal?)413.125, (decimal?)29345.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20947, Nebula.NebulaType.Planetary, "Dryao Chrea ZU-X e1-4544", 1, true, "Dryao Chrea ZU-X e1-4544", (decimal?)-428.5625, (decimal?)1218.90625, (decimal?)28723.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20949, Nebula.NebulaType.Planetary, "Dryao Phyloea DA-A e3509", 1, true, "Dryao Phyloea DA-A e3509", (decimal?)-718.90625, (decimal?)1343.34375, (decimal?)28487.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20973, Nebula.NebulaType.Planetary, "Dryau Chraei CK-A e1483", 1, true, "Dryau Chraei CK-A e1483", (decimal?)-1583.875, (decimal?)429.71875, (decimal?)28419.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20974, Nebula.NebulaType.Planetary, "Dryau Chraei CL-Y e8641", 1, true, "Dryau Chraei CL-Y e8641", (decimal?)-2602.875, (decimal?)252.53125, (decimal?)28595.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20975, Nebula.NebulaType.Planetary, "Dryau Chraei DB-O e6-6173", 1, true, "Dryau Chraei DB-O e6-6173", (decimal?)-1803.46875, (decimal?)397.15625, (decimal?)29622.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20976, Nebula.NebulaType.Planetary, "Dryau Chraei DQ-X e1-3819", 1, true, "Dryau Chraei DQ-X e1-3819", (decimal?)-1450.46875, (decimal?)1046.09375, (decimal?)28848.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20977, Nebula.NebulaType.Planetary, "Dryau Chraei DR-V e2-8011", 1, true, "Dryau Chraei DR-V e2-8011", (decimal?)-2464.25, (decimal?)813.3125, (decimal?)28989.25, (int)10 )); + AllOfThem.Add(new Nebula( 20978, Nebula.NebulaType.Planetary, "Dryau Chraei HW-W e1-6342", 1, true, "Dryau Chraei HW-W e1-6342", (decimal?)-1991.09375, (decimal?)356.78125, (decimal?)28803.125, (int)10 )); + AllOfThem.Add(new Nebula( 20980, Nebula.NebulaType.Planetary, "Dryau Chraei MR-W e1-1645", 1, true, "Dryau Chraei MR-W e1-1645", (decimal?)-1521.53125, (decimal?)207.625, (decimal?)28761.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20982, Nebula.NebulaType.Planetary, "Dryau Chraei RD-T e3-5758", 1, true, "Dryau Chraei RD-T e3-5758", (decimal?)-2065.84375, (decimal?)254.90625, (decimal?)29036.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20983, Nebula.NebulaType.Planetary, "Dryau Chraei UE-Z e1366", 1, true, "Dryau Chraei UE-Z e1366", (decimal?)-2601.65625, (decimal?)931.125, (decimal?)28623.875, (int)10 )); + AllOfThem.Add(new Nebula( 20984, Nebula.NebulaType.Planetary, "Dryau Chraei WU-O e6-873", 1, true, "Dryau Chraei WU-O e6-873", (decimal?)-1640.65625, (decimal?)990.4375, (decimal?)29555.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20985, Nebula.NebulaType.Planetary, "Dryau Chraei YZ-Y e6866", 1, true, "Dryau Chraei YZ-Y e6866", (decimal?)-2200.1875, (decimal?)728.84375, (decimal?)28694.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20986, Nebula.NebulaType.Planetary, "Dryau Chrea DW-V e2-3013", 1, true, "Dryau Chrea DW-V e2-3013", (decimal?)551.21875, (decimal?)973.1875, (decimal?)29003.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20987, Nebula.NebulaType.Planetary, "Dryau Chrea EB-O e6-2703", 1, true, "Dryau Chrea EB-O e6-2703", (decimal?)927.84375, (decimal?)449.625, (decimal?)29622.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20988, Nebula.NebulaType.Planetary, "Dryau Chrea HW-N e6-1266", 1, true, "Dryau Chrea HW-N e6-1266", (decimal?)1166.75, (decimal?)149.1875, (decimal?)29595.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20989, Nebula.NebulaType.Planetary, "Dryau Chrea IB-X e1-2033", 1, true, "Dryau Chrea IB-X e1-2033", (decimal?)911.09375, (decimal?)610.46875, (decimal?)28712.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20990, Nebula.NebulaType.Planetary, "Dryau Chrea IB-X e1-9534", 1, true, "Dryau Chrea IB-X e1-9534", (decimal?)1048.8125, (decimal?)457.53125, (decimal?)28760.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20991, Nebula.NebulaType.Planetary, "Dryau Chrea NC-V e2-4460", 1, true, "Dryau Chrea NC-V e2-4460", (decimal?)754.125, (decimal?)316.84375, (decimal?)28904.125, (int)10 )); + AllOfThem.Add(new Nebula( 20992, Nebula.NebulaType.Planetary, "Dryau Chrea ON-T e3-5526", 1, true, "Dryau Chrea ON-T e3-5526", (decimal?)733.53125, (decimal?)589.3125, (decimal?)29089.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20993, Nebula.NebulaType.Planetary, "Dryau Chrea ZU-X e1-9389", 1, true, "Dryau Chrea ZU-X e1-9389", (decimal?)852.40625, (decimal?)1221.6875, (decimal?)28811.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21113, Nebula.NebulaType.Planetary, "Dryio Bli CG-X e1-1498", 1, true, "Dryio Bli CG-X e1-1498", (decimal?)1650.90625, (decimal?)-592.1875, (decimal?)28811.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21114, Nebula.NebulaType.Planetary, "Dryio Bli GM-V e2-4049", 1, true, "Dryio Bli GM-V e2-4049", (decimal?)1544.90625, (decimal?)-635.0625, (decimal?)28998.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21115, Nebula.NebulaType.Planetary, "Dryio Bli HQ-Y e3029", 1, true, "Dryio Bli HQ-Y e3029", (decimal?)2403.1875, (decimal?)-886.09375, (decimal?)28542.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21116, Nebula.NebulaType.Planetary, "Dryio Bli JR-V e2-4684", 1, true, "Dryio Bli JR-V e2-4684", (decimal?)2432.9375, (decimal?)-358.28125, (decimal?)28855.125, (int)10 )); + AllOfThem.Add(new Nebula( 21117, Nebula.NebulaType.Planetary, "Dryio Bli KH-V e2-1678", 1, true, "Dryio Bli KH-V e2-1678", (decimal?)1976.0625, (decimal?)-820.65625, (decimal?)28856.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21118, Nebula.NebulaType.Planetary, "Dryio Bli MI-B e6119", 1, true, "Dryio Bli MI-B e6119", (decimal?)1288.125, (decimal?)-174.78125, (decimal?)28456.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21119, Nebula.NebulaType.Planetary, "Dryio Bli OI-B e1099", 1, true, "Dryio Bli OI-B e1099", (decimal?)1577.5, (decimal?)-134.0625, (decimal?)28510.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21120, Nebula.NebulaType.Planetary, "Dryio Bli QU-O e6-5286", 1, true, "Dryio Bli QU-O e6-5286", (decimal?)1243.5, (decimal?)-337.21875, (decimal?)29497, (int)10 )); + AllOfThem.Add(new Nebula( 21121, Nebula.NebulaType.Planetary, "Dryio Bli UJ-Q e5-7396", 1, true, "Dryio Bli UJ-Q e5-7396", (decimal?)2209.5, (decimal?)-392.84375, (decimal?)29412.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21122, Nebula.NebulaType.Planetary, "Dryio Bli UO-R e4-4648", 1, true, "Dryio Bli UO-R e4-4648", (decimal?)1886.78125, (decimal?)-887.25, (decimal?)29252.875, (int)10 )); + AllOfThem.Add(new Nebula( 21123, Nebula.NebulaType.Planetary, "Dryio Bli WP-P e5-6552", 1, true, "Dryio Bli WP-P e5-6552", (decimal?)1344.34375, (decimal?)-1014.34375, (decimal?)29337.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21124, Nebula.NebulaType.Planetary, "Dryio Bli ZA-W e2-5759", 1, true, "Dryio Bli ZA-W e2-5759", (decimal?)1532.3125, (decimal?)-50.03125, (decimal?)28875.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21125, Nebula.NebulaType.Planetary, "Dryio Bli ZJ-A e7390", 1, true, "Dryio Bli ZJ-A e7390", (decimal?)1837.46875, (decimal?)-885.9375, (decimal?)28511.5, (int)10 )); + AllOfThem.Add(new Nebula( 21126, Nebula.NebulaType.Planetary, "Dryio Bli ZU-Y e1470", 1, true, "Dryio Bli ZU-Y e1470", (decimal?)1460.09375, (decimal?)-737.96875, (decimal?)28694.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21178, Nebula.NebulaType.Planetary, "Dryoea Bla CW-V e2-161", 1, true, "Dryoea Bla CW-V e2-161", (decimal?)2962.6875, (decimal?)-1572.46875, (decimal?)28997.125, (int)10 )); + AllOfThem.Add(new Nebula( 21179, Nebula.NebulaType.Planetary, "Dryoea Bla UJ-Z e1127", 1, true, "Dryoea Bla UJ-Z e1127", (decimal?)2842.0625, (decimal?)-1614.09375, (decimal?)28625.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21199, Nebula.NebulaType.Planetary, "Dryoea Bli ER-V e2-3944", 1, true, "Dryoea Bli ER-V e2-3944", (decimal?)2883.875, (decimal?)-395.78125, (decimal?)28940.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21200, Nebula.NebulaType.Planetary, "Dryoea Bli HW-W e1-6427", 1, true, "Dryoea Bli HW-W e1-6427", (decimal?)2975.3125, (decimal?)-966.59375, (decimal?)28820.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21205, Nebula.NebulaType.Planetary, "Dryoea Bli XJ-A e6239", 1, true, "Dryoea Bli XJ-A e6239", (decimal?)2712.0625, (decimal?)-891.375, (decimal?)28430.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21289, Nebula.NebulaType.Planetary, "Dryoi Bloo TO-Z e1071", 1, true, "Dryoi Bloo TO-Z e1071", (decimal?)-823.34375, (decimal?)-1382.75, (decimal?)28684.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21290, Nebula.NebulaType.Planetary, "Dryoi Bloo VU-O e6-2622", 1, true, "Dryoi Bloo VU-O e6-2622", (decimal?)-449.34375, (decimal?)-1574.25, (decimal?)29563.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21291, Nebula.NebulaType.Planetary, "Dryoi Bloo YE-Z e2160", 1, true, "Dryoi Bloo YE-Z e2160", (decimal?)-613.0625, (decimal?)-1655.3125, (decimal?)28597.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21387, Nebula.NebulaType.Planetary, "Dryuae Chruia BK-A e5411", 1, true, "Dryuae Chruia BK-A e5411", (decimal?)2110.53125, (decimal?)399.25, (decimal?)28533.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21388, Nebula.NebulaType.Planetary, "Dryuae Chruia BQ-X e1-5872", 1, true, "Dryuae Chruia BQ-X e1-5872", (decimal?)2109.53125, (decimal?)982.125, (decimal?)28786.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21389, Nebula.NebulaType.Planetary, "Dryuae Chruia FW-W e1-11212", 1, true, "Dryuae Chruia FW-W e1-11212", (decimal?)1407.1875, (decimal?)343.5625, (decimal?)28796.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21390, Nebula.NebulaType.Planetary, "Dryuae Chruia MO-Q e5-5073", 1, true, "Dryuae Chruia MO-Q e5-5073", (decimal?)1225.6875, (decimal?)941.0625, (decimal?)29437.25, (int)10 )); + AllOfThem.Add(new Nebula( 21391, Nebula.NebulaType.Planetary, "Dryuae Chruia NM-W e1-6376", 1, true, "Dryuae Chruia NM-W e1-6376", (decimal?)2084.65625, (decimal?)63.3125, (decimal?)28709.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21392, Nebula.NebulaType.Planetary, "Dryuae Chruia OI-S e4-8192", 1, true, "Dryuae Chruia OI-S e4-8192", (decimal?)2331.71875, (decimal?)991.5, (decimal?)29304, (int)10 )); + AllOfThem.Add(new Nebula( 21393, Nebula.NebulaType.Planetary, "Dryuae Chruia RD-S e4-7110", 1, true, "Dryuae Chruia RD-S e4-7110", (decimal?)2440.25, (decimal?)803.375, (decimal?)29273.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21394, Nebula.NebulaType.Planetary, "Dryuae Chruia SD-T e3-2716", 1, true, "Dryuae Chruia SD-T e3-2716", (decimal?)2007.1875, (decimal?)225.3125, (decimal?)29075.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21395, Nebula.NebulaType.Planetary, "Dryuae Chruia TY-A e3643", 1, true, "Dryuae Chruia TY-A e3643", (decimal?)1830.09375, (decimal?)884.4375, (decimal?)28467.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21396, Nebula.NebulaType.Planetary, "Dryuae Chruia UP-O e6-3470", 1, true, "Dryuae Chruia UP-O e6-3470", (decimal?)1583.96875, (decimal?)888.09375, (decimal?)29531.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21397, Nebula.NebulaType.Planetary, "Dryuae Chruia WJ-A e4233", 1, true, "Dryuae Chruia WJ-A e4233", (decimal?)1312.0625, (decimal?)303.53125, (decimal?)28520.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21398, Nebula.NebulaType.Planetary, "Dryuae Chruia YE-A e327", 1, true, "Dryuae Chruia YE-A e327", (decimal?)1216.3125, (decimal?)244.40625, (decimal?)28444.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21399, Nebula.NebulaType.Planetary, "Dryuae Chruia YU-P e5-869", 1, true, "Dryuae Chruia YU-P e5-869", (decimal?)1993.5, (decimal?)360.15625, (decimal?)29451.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21401, Nebula.NebulaType.Planetary, "Dryuae Phyloi VD-T e3-1030", 1, true, "Dryuae Phyloi VD-T e3-1030", (decimal?)2394.15625, (decimal?)1525.15625, (decimal?)29120.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21661, Nebula.NebulaType.Planetary, "Eoch Bli DL-P e5-3812", 1, true, "Eoch Bli DL-P e5-3812", (decimal?)2122.65625, (decimal?)-1282.15625, (decimal?)28065.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21662, Nebula.NebulaType.Planetary, "Eoch Bli DR-V e2-8775", 1, true, "Eoch Bli DR-V e2-8775", (decimal?)1464.25, (decimal?)-483.75, (decimal?)27659.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21663, Nebula.NebulaType.Planetary, "Eoch Bli FL-Y e4365", 1, true, "Eoch Bli FL-Y e4365", (decimal?)1854.9375, (decimal?)-996.9375, (decimal?)27349.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21664, Nebula.NebulaType.Planetary, "Eoch Bli GR-V e2-6518", 1, true, "Eoch Bli GR-V e2-6518", (decimal?)1920.34375, (decimal?)-375.84375, (decimal?)27607.5, (int)10 )); + AllOfThem.Add(new Nebula( 21666, Nebula.NebulaType.Planetary, "Eoch Bli KT-Q e5-9013", 1, true, "Eoch Bli KT-Q e5-9013", (decimal?)1299.90625, (decimal?)-144.8125, (decimal?)28191.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21667, Nebula.NebulaType.Planetary, "Eoch Bli TY-A e2211", 1, true, "Eoch Bli TY-A e2211", (decimal?)1725.1875, (decimal?)-385, (decimal?)27119.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21694, Nebula.NebulaType.Planetary, "Eoch Byio SY-A e8226", 1, true, "Eoch Byio SY-A e8226", (decimal?)1580.3125, (decimal?)-486.53125, (decimal?)29669.5, (int)10 )); + AllOfThem.Add(new Nebula( 21695, Nebula.NebulaType.Planetary, "Eoch Byio UO-A e328", 1, true, "Eoch Byio UO-A e328", (decimal?)1233, (decimal?)-824.5, (decimal?)29779.25, (int)10 )); + AllOfThem.Add(new Nebula( 21697, Nebula.NebulaType.Planetary, "Eoch Byio WP-X e1-3834", 1, true, "Eoch Byio WP-X e1-3834", (decimal?)1320.90625, (decimal?)-281.40625, (decimal?)30112.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21777, Nebula.NebulaType.Planetary, "Eok Blooe EL-X e1-677", 1, true, "Eok Blooe EL-X e1-677", (decimal?)-1641.09375, (decimal?)-1655.53125, (decimal?)27473.5, (int)10 )); + AllOfThem.Add(new Nebula( 21778, Nebula.NebulaType.Planetary, "Eok Blou AQ-X e1-2134", 1, true, "Eok Blou AQ-X e1-2134", (decimal?)-1889.8125, (decimal?)-341.4375, (decimal?)27472.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21779, Nebula.NebulaType.Planetary, "Eok Blou AV-X e1-2648", 1, true, "Eok Blou AV-X e1-2648", (decimal?)-1662.21875, (decimal?)-139.40625, (decimal?)27469.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21780, Nebula.NebulaType.Planetary, "Eok Blou EG-X e1-5541", 1, true, "Eok Blou EG-X e1-5541", (decimal?)-1977.125, (decimal?)-612.25, (decimal?)27521.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21781, Nebula.NebulaType.Planetary, "Eok Blou EV-Y e3334", 1, true, "Eok Blou EV-Y e3334", (decimal?)-1577.90625, (decimal?)-801.1875, (decimal?)27259.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21782, Nebula.NebulaType.Planetary, "Eok Blou FB-X e1-280", 1, true, "Eok Blou FB-X e1-280", (decimal?)-2076.96875, (decimal?)-715.375, (decimal?)27478.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21783, Nebula.NebulaType.Planetary, "Eok Blou GQ-Y e680", 1, true, "Eok Blou GQ-Y e680", (decimal?)-1608.1875, (decimal?)-826.125, (decimal?)27304.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21784, Nebula.NebulaType.Planetary, "Eok Blou NH-V e2-1385", 1, true, "Eok Blou NH-V e2-1385", (decimal?)-1458.53125, (decimal?)-752.65625, (decimal?)27731.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21785, Nebula.NebulaType.Planetary, "Eok Blou OI-T e3-1633", 1, true, "Eok Blou OI-T e3-1633", (decimal?)-2218.34375, (decimal?)-896.28125, (decimal?)27748.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21786, Nebula.NebulaType.Planetary, "Eok Blou OI-T e3-408", 1, true, "Eok Blou OI-T e3-408", (decimal?)-2161.21875, (decimal?)-828.0625, (decimal?)27752.25, (int)10 )); + AllOfThem.Add(new Nebula( 21787, Nebula.NebulaType.Planetary, "Eok Blou OS-T e3-1926", 1, true, "Eok Blou OS-T e3-1926", (decimal?)-1551.1875, (decimal?)-631.09375, (decimal?)27830.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21788, Nebula.NebulaType.Planetary, "Eok Blou OS-T e3-782", 1, true, "Eok Blou OS-T e3-782", (decimal?)-1614.5625, (decimal?)-622.71875, (decimal?)27822.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21789, Nebula.NebulaType.Planetary, "Eok Blou QI-T e3-48", 1, true, "Eok Blou QI-T e3-48", (decimal?)-1970.84375, (decimal?)-826.53125, (decimal?)27894.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21790, Nebula.NebulaType.Planetary, "Eok Blou RO-Q e5-5957", 1, true, "Eok Blou RO-Q e5-5957", (decimal?)-1753.9375, (decimal?)-339, (decimal?)28164.25, (int)10 )); + AllOfThem.Add(new Nebula( 21791, Nebula.NebulaType.Planetary, "Eok Blou SO-R e4-8016", 1, true, "Eok Blou SO-R e4-8016", (decimal?)-2228.5625, (decimal?)-983.1875, (decimal?)27921.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21792, Nebula.NebulaType.Planetary, "Eok Blou UJ-Z e3184", 1, true, "Eok Blou UJ-Z e3184", (decimal?)-2149.46875, (decimal?)-308.71875, (decimal?)27382.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21793, Nebula.NebulaType.Planetary, "Eok Blou UO-R e4-8268", 1, true, "Eok Blou UO-R e4-8268", (decimal?)-1937.21875, (decimal?)-924.90625, (decimal?)27944.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21794, Nebula.NebulaType.Planetary, "Eok Blou UO-Z e4027", 1, true, "Eok Blou UO-Z e4027", (decimal?)-1836.1875, (decimal?)-44.8125, (decimal?)27372.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21795, Nebula.NebulaType.Planetary, "Eok Blou WP-X e1-365", 1, true, "Eok Blou WP-X e1-365", (decimal?)-2556.28125, (decimal?)-277.53125, (decimal?)27489.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21796, Nebula.NebulaType.Planetary, "Eok Blou WU-O e6-4091", 1, true, "Eok Blou WU-O e6-4091", (decimal?)-1510, (decimal?)-297, (decimal?)28263.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21797, Nebula.NebulaType.Planetary, "Eok Blou XE-Q e5-7612", 1, true, "Eok Blou XE-Q e5-7612", (decimal?)-1451.625, (decimal?)-557.625, (decimal?)28122.5, (int)10 )); + AllOfThem.Add(new Nebula( 21798, Nebula.NebulaType.Planetary, "Eok Blou XP-O e6-3326", 1, true, "Eok Blou XP-O e6-3326", (decimal?)-1733.9375, (decimal?)-504.5, (decimal?)28244.5, (int)10 )); + AllOfThem.Add(new Nebula( 21799, Nebula.NebulaType.Planetary, "Eok Blou XU-P e5-5491", 1, true, "Eok Blou XU-P e5-5491", (decimal?)-2073.53125, (decimal?)-925.28125, (decimal?)28155.375, (int)10 )); + AllOfThem.Add(new Nebula( 21800, Nebula.NebulaType.Planetary, "Eok Blou XU-X e1-5427", 1, true, "Eok Blou XU-X e1-5427", (decimal?)-1998.28125, (decimal?)-118.90625, (decimal?)27432.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21801, Nebula.NebulaType.Planetary, "Eok Blou YA-W e2-7081", 1, true, "Eok Blou YA-W e2-7081", (decimal?)-2507.8125, (decimal?)-126.53125, (decimal?)27584.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21802, Nebula.NebulaType.Planetary, "Eok Blou YU-P e5-8562", 1, true, "Eok Blou YU-P e5-8562", (decimal?)-1862.53125, (decimal?)-896.96875, (decimal?)28185.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21803, Nebula.NebulaType.Planetary, "Eok Bluae CB-W e2-2294", 1, true, "Eok Bluae CB-W e2-2294", (decimal?)596.90625, (decimal?)-118.65625, (decimal?)27659.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21804, Nebula.NebulaType.Planetary, "Eok Bluae HC-U e3-4958", 1, true, "Eok Bluae HC-U e3-4958", (decimal?)535.9375, (decimal?)-201.0625, (decimal?)27866.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21805, Nebula.NebulaType.Planetary, "Eok Bluae OM-W e1-7494", 1, true, "Eok Bluae OM-W e1-7494", (decimal?)932.25, (decimal?)-1179.96875, (decimal?)27440.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21806, Nebula.NebulaType.Planetary, "Eok Bluae QO-Q e5-746", 1, true, "Eok Bluae QO-Q e5-746", (decimal?)651.1875, (decimal?)-280.75, (decimal?)28143.125, (int)10 )); + AllOfThem.Add(new Nebula( 21807, Nebula.NebulaType.Planetary, "Eok Bluae TD-T e3-1735", 1, true, "Eok Bluae TD-T e3-1735", (decimal?)776.28125, (decimal?)-1082.15625, (decimal?)27789.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21808, Nebula.NebulaType.Planetary, "Eok Bluae TD-T e3-6234", 1, true, "Eok Bluae TD-T e3-6234", (decimal?)828.40625, (decimal?)-1087.71875, (decimal?)27868.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21809, Nebula.NebulaType.Planetary, "Eok Bluae TO-R e4-1140", 1, true, "Eok Bluae TO-R e4-1140", (decimal?)440.96875, (decimal?)-913.0625, (decimal?)27924.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21810, Nebula.NebulaType.Planetary, "Eok Bluae VT-A e4189", 1, true, "Eok Bluae VT-A e4189", (decimal?)499.5625, (decimal?)-588.71875, (decimal?)27234.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21811, Nebula.NebulaType.Planetary, "Eok Bluae VZ-P e5-2579", 1, true, "Eok Bluae VZ-P e5-2579", (decimal?)466.96875, (decimal?)-678.8125, (decimal?)28179.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21812, Nebula.NebulaType.Planetary, "Eok Bluae XY-S e3-5006", 1, true, "Eok Bluae XY-S e3-5006", (decimal?)1092.875, (decimal?)-1161.5625, (decimal?)27760.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21813, Nebula.NebulaType.Planetary, "Eok Bluae YE-R e4-6290", 1, true, "Eok Bluae YE-R e4-6290", (decimal?)707.875, (decimal?)-1228.6875, (decimal?)27966.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21814, Nebula.NebulaType.Planetary, "Eok Bluae ZF-O e6-5689", 1, true, "Eok Bluae ZF-O e6-5689", (decimal?)503.4375, (decimal?)-757.875, (decimal?)28306.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21815, Nebula.NebulaType.Planetary, "Eok Bluae ZT-A e72", 1, true, "Eok Bluae ZT-A e72", (decimal?)1142.875, (decimal?)-575.375, (decimal?)27228.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21818, Nebula.NebulaType.Planetary, "Eok Byoe FB-W e2-1010", 1, true, "Eok Byoe FB-W e2-1010", (decimal?)1214.21875, (decimal?)-109.875, (decimal?)30175.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21819, Nebula.NebulaType.Planetary, "Eok Byoe JH-V e2-2184", 1, true, "Eok Byoe JH-V e2-2184", (decimal?)454.3125, (decimal?)-800.375, (decimal?)30164.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21820, Nebula.NebulaType.Planetary, "Eok Byoe KR-W e1-3341", 1, true, "Eok Byoe KR-W e1-3341", (decimal?)585.65625, (decimal?)-1011.75, (decimal?)30078.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21829, Nebula.NebulaType.Planetary, "Eok Byoe YE-Z e4445", 1, true, "Eok Byoe YE-Z e4445", (decimal?)645.25, (decimal?)-484.96875, (decimal?)29890.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21830, Nebula.NebulaType.Planetary, "Eok Byoe ZJ-Z e2506", 1, true, "Eok Byoe ZJ-Z e2506", (decimal?)1098.21875, (decimal?)-310.03125, (decimal?)29906.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21851, Nebula.NebulaType.Planetary, "Eok Gree TI-B e2833", 1, true, "Eok Gree TI-B e2833", (decimal?)-1361.5, (decimal?)-175.5, (decimal?)29712.625, (int)10 )); + AllOfThem.Add(new Nebula( 21856, Nebula.NebulaType.Planetary, "Eok Gree VD-B e2255", 1, true, "Eok Gree VD-B e2255", (decimal?)-1359.59375, (decimal?)-273.78125, (decimal?)29752.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21974, Nebula.NebulaType.Planetary, "Eor Chruia MI-S e4-5585", 1, true, "Eor Chruia MI-S e4-5585", (decimal?)3242.125, (decimal?)943.34375, (decimal?)28045.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21975, Nebula.NebulaType.Planetary, "Eor Chruia OO-Q e5-6736", 1, true, "Eor Chruia OO-Q e5-6736", (decimal?)2873.53125, (decimal?)1036.5, (decimal?)28069.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21976, Nebula.NebulaType.Planetary, "Eor Chruia UT-R e4-2454", 1, true, "Eor Chruia UT-R e4-2454", (decimal?)3455.71875, (decimal?)509.90625, (decimal?)28050.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21977, Nebula.NebulaType.Planetary, "Eor Chruia XE-R e4-2901", 1, true, "Eor Chruia XE-R e4-2901", (decimal?)3013.78125, (decimal?)110.46875, (decimal?)28025.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21978, Nebula.NebulaType.Planetary, "Eor Chruia XK-O e6-7539", 1, true, "Eor Chruia XK-O e6-7539", (decimal?)2994.84375, (decimal?)760.28125, (decimal?)28229.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21980, Nebula.NebulaType.Planetary, "Eor Chruia ZK-P e5-4695", 1, true, "Eor Chruia ZK-P e5-4695", (decimal?)2670.125, (decimal?)100.125, (decimal?)28125.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21999, Nebula.NebulaType.Planetary, "Eor Phyloi WJ-R e4-1307", 1, true, "Eor Phyloi WJ-R e4-1307", (decimal?)3151.0625, (decimal?)1510.9375, (decimal?)27982.5, (int)10 )); + AllOfThem.Add(new Nebula( 22114, Nebula.NebulaType.Planetary, "Eorl Broae BF-A e379", 1, true, "Eorl Broae BF-A e379", (decimal?)1706, (decimal?)219.84375, (decimal?)29721.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22115, Nebula.NebulaType.Planetary, "Eorl Broae DB-X e1-3103", 1, true, "Eorl Broae DB-X e1-3103", (decimal?)1445.75, (decimal?)465.5625, (decimal?)30100.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22117, Nebula.NebulaType.Planetary, "Eorl Broae DQ-Y e7947", 1, true, "Eorl Broae DQ-Y e7947", (decimal?)1719.90625, (decimal?)350.90625, (decimal?)29871.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22123, Nebula.NebulaType.Planetary, "Eorl Broae UD-B e2653", 1, true, "Eorl Broae UD-B e2653", (decimal?)2210.96875, (decimal?)1083.625, (decimal?)29674.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22125, Nebula.NebulaType.Planetary, "Eorl Broae WJ-A e3299", 1, true, "Eorl Broae WJ-A e3299", (decimal?)1290.15625, (decimal?)418.5, (decimal?)29774.375, (int)10 )); + AllOfThem.Add(new Nebula( 22127, Nebula.NebulaType.Planetary, "Eorl Broae YJ-A e7998", 1, true, "Eorl Broae YJ-A e7998", (decimal?)1578.4375, (decimal?)295.90625, (decimal?)29757.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22159, Nebula.NebulaType.Planetary, "Eorl Phyloi NS-T e3-432", 1, true, "Eorl Phyloi NS-T e3-432", (decimal?)2107.9375, (decimal?)1956.90625, (decimal?)27864.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22160, Nebula.NebulaType.Planetary, "Eorld Bloo FG-X e1-1400", 1, true, "Eorld Bloo FG-X e1-1400", (decimal?)-473.65625, (decimal?)-1839.375, (decimal?)27539.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22161, Nebula.NebulaType.Planetary, "Eorld Bloo HR-V e2-832", 1, true, "Eorld Bloo HR-V e2-832", (decimal?)-512.96875, (decimal?)-1771.59375, (decimal?)27643.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22173, Nebula.NebulaType.Planetary, "Eorld Byoe FA-A e1655", 1, true, "Eorld Byoe FA-A e1655", (decimal?)-517.75, (decimal?)-1198.21875, (decimal?)29681.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22177, Nebula.NebulaType.Planetary, "Eorld Byoe SD-B e3180", 1, true, "Eorld Byoe SD-B e3180", (decimal?)-683.625, (decimal?)-282.0625, (decimal?)29693.75, (int)10 )); + AllOfThem.Add(new Nebula( 22180, Nebula.NebulaType.Planetary, "Eorld Byoe TY-A e779", 1, true, "Eorld Byoe TY-A e779", (decimal?)-798.15625, (decimal?)-353.65625, (decimal?)29671.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22182, Nebula.NebulaType.Planetary, "Eorld Byoe YE-Z e5508", 1, true, "Eorld Byoe YE-Z e5508", (decimal?)-589.0625, (decimal?)-408.625, (decimal?)29922.75, (int)10 )); + AllOfThem.Add(new Nebula( 22211, Nebula.NebulaType.Planetary, "Eorm Breae HG-Y e2306", 1, true, "Eorm Breae HG-Y e2306", (decimal?)-729.71875, (decimal?)1294.90625, (decimal?)29838.75, (int)10 )); + AllOfThem.Add(new Nebula( 22212, Nebula.NebulaType.Planetary, "Eorm Breae HG-Y e2788", 1, true, "Eorm Breae HG-Y e2788", (decimal?)-756.53125, (decimal?)1261.9375, (decimal?)29873.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22215, Nebula.NebulaType.Planetary, "Eorm Briae EL-Y e245", 1, true, "Eorm Briae EL-Y e245", (decimal?)-950.8125, (decimal?)200.46875, (decimal?)29834.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22226, Nebula.NebulaType.Planetary, "Eorm Briae TO-Z e5919", 1, true, "Eorm Briae TO-Z e5919", (decimal?)-739.4375, (decimal?)1200.84375, (decimal?)29934.25, (int)10 )); + AllOfThem.Add(new Nebula( 22261, Nebula.NebulaType.Planetary, "Eos Briae AQ-X e1-4682", 1, true, "Eos Briae AQ-X e1-4682", (decimal?)679.28125, (decimal?)1022.90625, (decimal?)30097.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22263, Nebula.NebulaType.Planetary, "Eos Briae HR-V e2-4399", 1, true, "Eos Briae HR-V e2-4399", (decimal?)793.53125, (decimal?)842.53125, (decimal?)30153.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22270, Nebula.NebulaType.Planetary, "Eos Chraei AW-V e2-5627", 1, true, "Eos Chraei AW-V e2-5627", (decimal?)-2476.84375, (decimal?)994.5, (decimal?)27639.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22271, Nebula.NebulaType.Planetary, "Eos Chraei BV-P e5-9068", 1, true, "Eos Chraei BV-P e5-9068", (decimal?)-1476.875, (decimal?)402.46875, (decimal?)28077.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22272, Nebula.NebulaType.Planetary, "Eos Chraei LM-V e2-3018", 1, true, "Eos Chraei LM-V e2-3018", (decimal?)-1398.90625, (decimal?)672.9375, (decimal?)27639.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22273, Nebula.NebulaType.Planetary, "Eos Chraei OD-S e4-1958", 1, true, "Eos Chraei OD-S e4-1958", (decimal?)-1872.5625, (decimal?)837.25, (decimal?)28027.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22274, Nebula.NebulaType.Planetary, "Eos Chraei QN-T e3-7293", 1, true, "Eos Chraei QN-T e3-7293", (decimal?)-1572.125, (decimal?)494.90625, (decimal?)27865.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22275, Nebula.NebulaType.Planetary, "Eos Chraei QY-R e4-723", 1, true, "Eos Chraei QY-R e4-723", (decimal?)-1965.96875, (decimal?)623.5625, (decimal?)27945.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22276, Nebula.NebulaType.Planetary, "Eos Chraei UJ-Z e5171", 1, true, "Eos Chraei UJ-Z e5171", (decimal?)-2185.59375, (decimal?)998.21875, (decimal?)27386.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22277, Nebula.NebulaType.Planetary, "Eos Chraei VO-A e8538", 1, true, "Eos Chraei VO-A e8538", (decimal?)-2328.15625, (decimal?)587.46875, (decimal?)27232.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22278, Nebula.NebulaType.Planetary, "Eos Chraei XE-Q e5-2839", 1, true, "Eos Chraei XE-Q e5-2839", (decimal?)-1497.3125, (decimal?)679.3125, (decimal?)28187.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22279, Nebula.NebulaType.Planetary, "Eos Chraei XO-A e7547", 1, true, "Eos Chraei XO-A e7547", (decimal?)-2102.5625, (decimal?)522.40625, (decimal?)27224.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22280, Nebula.NebulaType.Planetary, "Eos Chraei YJ-Z e3626", 1, true, "Eos Chraei YJ-Z e3626", (decimal?)-1583.0625, (decimal?)1020.25, (decimal?)27271.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22281, Nebula.NebulaType.Planetary, "Eos Chraei YT-A e2536", 1, true, "Eos Chraei YT-A e2536", (decimal?)-1588.53125, (decimal?)765.6875, (decimal?)27244.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22282, Nebula.NebulaType.Planetary, "Eos Chrea AV-X e1-6146", 1, true, "Eos Chrea AV-X e1-6146", (decimal?)981.46875, (decimal?)1186.75, (decimal?)27526, (int)10 )); + AllOfThem.Add(new Nebula( 22283, Nebula.NebulaType.Planetary, "Eos Chrea DA-Z e5934", 1, true, "Eos Chrea DA-Z e5934", (decimal?)1104.9375, (decimal?)664.5625, (decimal?)27316, (int)10 )); + AllOfThem.Add(new Nebula( 22284, Nebula.NebulaType.Planetary, "Eos Chrea EB-W e2-6582", 1, true, "Eos Chrea EB-W e2-6582", (decimal?)1052.375, (decimal?)1201.25, (decimal?)27716.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22285, Nebula.NebulaType.Planetary, "Eos Chrea EB-W e2-8153", 1, true, "Eos Chrea EB-W e2-8153", (decimal?)957.5, (decimal?)1236.84375, (decimal?)27614.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22286, Nebula.NebulaType.Planetary, "Eos Chrea FF-A e305", 1, true, "Eos Chrea FF-A e305", (decimal?)1087.25, (decimal?)162.28125, (decimal?)27170.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22287, Nebula.NebulaType.Planetary, "Eos Chrea GW-V e2-5394", 1, true, "Eos Chrea GW-V e2-5394", (decimal?)896.5, (decimal?)1064.25, (decimal?)27577.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22288, Nebula.NebulaType.Planetary, "Eos Chrea HW-N e6-499", 1, true, "Eos Chrea HW-N e6-499", (decimal?)1132.875, (decimal?)168.25, (decimal?)28286.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22289, Nebula.NebulaType.Planetary, "Eos Chrea JH-V e2-6204", 1, true, "Eos Chrea JH-V e2-6204", (decimal?)554.25, (decimal?)541.53125, (decimal?)27589.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22290, Nebula.NebulaType.Planetary, "Eos Chrea KC-U e3-451", 1, true, "Eos Chrea KC-U e3-451", (decimal?)973.5625, (decimal?)987.5, (decimal?)27766.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22291, Nebula.NebulaType.Planetary, "Eos Chrea OI-S e4-6349", 1, true, "Eos Chrea OI-S e4-6349", (decimal?)934.4375, (decimal?)1087.0625, (decimal?)27933.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22292, Nebula.NebulaType.Planetary, "Eos Chrea PT-Q e5-6601", 1, true, "Eos Chrea PT-Q e5-6601", (decimal?)820.5, (decimal?)1223.28125, (decimal?)28106, (int)10 )); + AllOfThem.Add(new Nebula( 22293, Nebula.NebulaType.Planetary, "Eos Chrea RN-T e3-9607", 1, true, "Eos Chrea RN-T e3-9607", (decimal?)1167.34375, (decimal?)463.3125, (decimal?)27814.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22294, Nebula.NebulaType.Planetary, "Eos Chrea TE-Q e5-1161", 1, true, "Eos Chrea TE-Q e5-1161", (decimal?)469.75, (decimal?)653.34375, (decimal?)28069.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22295, Nebula.NebulaType.Planetary, "Eos Chrea UD-B e1534", 1, true, "Eos Chrea UD-B e1534", (decimal?)907.40625, (decimal?)997.03125, (decimal?)27191.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22296, Nebula.NebulaType.Planetary, "Eos Chrea UD-T e3-4387", 1, true, "Eos Chrea UD-T e3-4387", (decimal?)899.5625, (decimal?)228.46875, (decimal?)27825.375, (int)10 )); + AllOfThem.Add(new Nebula( 22297, Nebula.NebulaType.Planetary, "Eos Chrea UU-O e6-3112", 1, true, "Eos Chrea UU-O e6-3112", (decimal?)719.15625, (decimal?)1058.03125, (decimal?)28355.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22298, Nebula.NebulaType.Planetary, "Eos Chrea XJ-R e4-3469", 1, true, "Eos Chrea XJ-R e4-3469", (decimal?)755, (decimal?)211.90625, (decimal?)27953, (int)10 )); + AllOfThem.Add(new Nebula( 22299, Nebula.NebulaType.Planetary, "Eos Chrea ZJ-R e4-2846", 1, true, "Eos Chrea ZJ-R e4-2846", (decimal?)1059.6875, (decimal?)241.8125, (decimal?)27996.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22313, Nebula.NebulaType.Planetary, "Eos Phyloea AQ-P e5-2354", 1, true, "Eos Phyloea AQ-P e5-2354", (decimal?)629.625, (decimal?)1419.21875, (decimal?)28152.5, (int)10 )); + AllOfThem.Add(new Nebula( 22314, Nebula.NebulaType.Planetary, "Eos Phyloea BB-O e6-2764", 1, true, "Eos Phyloea BB-O e6-2764", (decimal?)439.0625, (decimal?)1596.09375, (decimal?)28226.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22315, Nebula.NebulaType.Planetary, "Eos Phyloea NX-U e2-177", 1, true, "Eos Phyloea NX-U e2-177", (decimal?)563.46875, (decimal?)1535.53125, (decimal?)27643.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22316, Nebula.NebulaType.Planetary, "Eos Phyloea OM-W e1-3619", 1, true, "Eos Phyloea OM-W e1-3619", (decimal?)994.5, (decimal?)1402.65625, (decimal?)27493.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22473, Nebula.NebulaType.Planetary, "Huemuae GW-V e2-512", 1, true, "Huemuae GW-V e2-512", (decimal?)-1589.875, (decimal?)-1549.4375, (decimal?)26343.125, (int)10 )); + AllOfThem.Add(new Nebula( 22474, Nebula.NebulaType.Planetary, "Huemuae GW-V e2-5843", 1, true, "Huemuae GW-V e2-5843", (decimal?)-1607.03125, (decimal?)-1615.5625, (decimal?)26419.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22596, Nebula.NebulaType.Planetary, "Hypio Pra UZ-O e6-3473", 1, true, "Hypio Pra UZ-O e6-3473", (decimal?)918.3125, (decimal?)-1353.0625, (decimal?)25656.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22597, Nebula.NebulaType.Planetary, "Hypio Pra VJ-Z e2419", 1, true, "Hypio Pra VJ-Z e2419", (decimal?)490.8125, (decimal?)-1505.21875, (decimal?)24831, (int)10 )); + AllOfThem.Add(new Nebula( 22599, Nebula.NebulaType.Planetary, "Hypio Pri HR-N e6-610", 1, true, "Hypio Pri HR-N e6-610", (decimal?)891.90625, (decimal?)-1297.71875, (decimal?)25804.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22600, Nebula.NebulaType.Planetary, "Hypio Pri IR-N e6-8475", 1, true, "Hypio Pri IR-N e6-8475", (decimal?)997.1875, (decimal?)-1207.375, (decimal?)25712.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22602, Nebula.NebulaType.Planetary, "Hypio Pri KR-W e1-788", 1, true, "Hypio Pri KR-W e1-788", (decimal?)589.40625, (decimal?)-1097.125, (decimal?)24949.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22604, Nebula.NebulaType.Planetary, "Hypio Pri ZJ-R e4-1921", 1, true, "Hypio Pri ZJ-R e4-1921", (decimal?)1158.90625, (decimal?)-1044.28125, (decimal?)25462.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22606, Nebula.NebulaType.Planetary, "Hypio Proo KC-U e3-6356", 1, true, "Hypio Proo KC-U e3-6356", (decimal?)-1507.5625, (decimal?)-1514.125, (decimal?)25197.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22668, Nebula.NebulaType.Planetary, "Hypoe Pra PN-T e3-142", 1, true, "Hypoe Pra PN-T e3-142", (decimal?)-540.875, (decimal?)-2003.90625, (decimal?)25271.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22773, Nebula.NebulaType.Planetary, "Hypuae Audst EL-P e5-1831", 1, true, "Hypuae Audst EL-P e5-1831", (decimal?)1006.40625, (decimal?)1293.34375, (decimal?)25528.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22775, Nebula.NebulaType.Planetary, "Hypuae Audst VJ-Z e28", 1, true, "Hypuae Audst VJ-Z e28", (decimal?)456.4375, (decimal?)2364.6875, (decimal?)24846.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22912, Nebula.NebulaType.Planetary, "Juenae BV-X e1-5422", 1, true, "Juenae BV-X e1-5422", (decimal?)1140.96875, (decimal?)-43.59375, (decimal?)26200.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22913, Nebula.NebulaType.Planetary, "Juenae EQ-Y e4499", 1, true, "Juenae EQ-Y e4499", (decimal?)731.75, (decimal?)-920.5, (decimal?)26072.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22914, Nebula.NebulaType.Planetary, "Juenae HG-Y e5112", 1, true, "Juenae HG-Y e5112", (decimal?)505.8125, (decimal?)-1218.15625, (decimal?)26110.875, (int)10 )); + AllOfThem.Add(new Nebula( 22915, Nebula.NebulaType.Planetary, "Juenae HG-Y e6946", 1, true, "Juenae HG-Y e6946", (decimal?)488.34375, (decimal?)-1168.34375, (decimal?)26111.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22916, Nebula.NebulaType.Planetary, "Juenae OX-U e2-8852", 1, true, "Juenae OX-U e2-8852", (decimal?)652.46875, (decimal?)-1056.5, (decimal?)26400.375, (int)10 )); + AllOfThem.Add(new Nebula( 22917, Nebula.NebulaType.Planetary, "Juenae TO-Q e5-579", 1, true, "Juenae TO-Q e5-579", (decimal?)1097.375, (decimal?)-297.3125, (decimal?)26897.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22918, Nebula.NebulaType.Planetary, "Juenae WJ-R e4-898", 1, true, "Juenae WJ-R e4-898", (decimal?)672.71875, (decimal?)-1093.71875, (decimal?)26761.375, (int)10 )); + AllOfThem.Add(new Nebula( 23344, Nebula.NebulaType.Planetary, "Myrielk IM-V e2-2510", 1, true, "Myrielk IM-V e2-2510", (decimal?)694.125, (decimal?)626.375, (decimal?)25032.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23348, Nebula.NebulaType.Planetary, "Myrielk SD-B e8523", 1, true, "Myrielk SD-B e8523", (decimal?)629.78125, (decimal?)993.375, (decimal?)24591.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23368, Nebula.NebulaType.Planetary, "Myriesly CL-P e5-4186", 1, true, "Myriesly CL-P e5-4186", (decimal?)-665.28125, (decimal?)-12.28125, (decimal?)25567.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23369, Nebula.NebulaType.Planetary, "Myriesly CL-P e5-7383", 1, true, "Myriesly CL-P e5-7383", (decimal?)-633.375, (decimal?)114.65625, (decimal?)25560.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23370, Nebula.NebulaType.Planetary, "Myriesly HR-N e6-4354", 1, true, "Myriesly HR-N e6-4354", (decimal?)-530.125, (decimal?)38.84375, (decimal?)25725.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23371, Nebula.NebulaType.Planetary, "Myriesly KT-Q e5-5305", 1, true, "Myriesly KT-Q e5-5305", (decimal?)-1304.125, (decimal?)1137.3125, (decimal?)25618.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23372, Nebula.NebulaType.Planetary, "Myriesly MS-T e3-3831", 1, true, "Myriesly MS-T e3-3831", (decimal?)-586.875, (decimal?)646.875, (decimal?)25214.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23373, Nebula.NebulaType.Planetary, "Myriesly QZ-O e6-7927", 1, true, "Myriesly QZ-O e6-7927", (decimal?)-885.625, (decimal?)1132.59375, (decimal?)25775.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23374, Nebula.NebulaType.Planetary, "Myriesly RO-Z e3080", 1, true, "Myriesly RO-Z e3080", (decimal?)-1139.34375, (decimal?)1244.15625, (decimal?)24743.375, (int)10 )); + AllOfThem.Add(new Nebula( 23375, Nebula.NebulaType.Planetary, "Myriesly VE-R e4-6151", 1, true, "Myriesly VE-R e4-6151", (decimal?)-1037.09375, (decimal?)34.65625, (decimal?)25371.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23376, Nebula.NebulaType.Planetary, "Myriesly WJ-R e4-5254", 1, true, "Myriesly WJ-R e4-5254", (decimal?)-611.09375, (decimal?)165.3125, (decimal?)25398.25, (int)10 )); + AllOfThem.Add(new Nebula( 23377, Nebula.NebulaType.Planetary, "Myriesly YE-R e4-3646", 1, true, "Myriesly YE-R e4-3646", (decimal?)-700.53125, (decimal?)53, (decimal?)25361.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23378, Nebula.NebulaType.Planetary, "Myriesly YJ-A e3239", 1, true, "Myriesly YJ-A e3239", (decimal?)-1022.25, (decimal?)348.5, (decimal?)24688.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23379, Nebula.NebulaType.Planetary, "Myriesly ZK-P e5-6499", 1, true, "Myriesly ZK-P e5-6499", (decimal?)-1083.125, (decimal?)95.78125, (decimal?)25602.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23380, Nebula.NebulaType.Planetary, "Myriesly ZZ-Y e5219", 1, true, "Myriesly ZZ-Y e5219", (decimal?)-745.90625, (decimal?)668.5625, (decimal?)24792.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23401, Nebula.NebulaType.Planetary, "Nyuena VO-R e4-1014", 1, true, "Nyuena VO-R e4-1014", (decimal?)891.25, (decimal?)1714.53125, (decimal?)26720.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23402, Nebula.NebulaType.Planetary, "Nyuenooe JM-W f1-3732", 1, true, "Nyuenooe JM-W f1-3732", (decimal?)-2097.65625, (decimal?)1406.5625, (decimal?)26502.875, (int)10 )); + AllOfThem.Add(new Nebula( 23403, Nebula.NebulaType.Planetary, "Nyuenooe MR-W e1-3496", 1, true, "Nyuenooe MR-W e1-3496", (decimal?)-1577.5625, (decimal?)1495.75, (decimal?)26275.25, (int)10 )); + AllOfThem.Add(new Nebula( 23593, Nebula.NebulaType.Planetary, "Oudairnt LX-T e3-1490", 1, true, "Oudairnt LX-T e3-1490", (decimal?)850.28125, (decimal?)-1752.25, (decimal?)27759.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23594, Nebula.NebulaType.Planetary, "Oudairnt MI-S e4-222", 1, true, "Oudairnt MI-S e4-222", (decimal?)641.875, (decimal?)-1595.40625, (decimal?)28035.5, (int)10 )); + AllOfThem.Add(new Nebula( 23595, Nebula.NebulaType.Planetary, "Oudairnt MN-S e4-2011", 1, true, "Oudairnt MN-S e4-2011", (decimal?)920.4375, (decimal?)-1370.125, (decimal?)28019.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23596, Nebula.NebulaType.Planetary, "Oudairnt UJ-Q e5-2872", 1, true, "Oudairnt UJ-Q e5-2872", (decimal?)925.5, (decimal?)-1675.1875, (decimal?)28057.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23736, Nebula.NebulaType.Planetary, "Phipaa AB-O e6-2778", 1, true, "Phipaa AB-O e6-2778", (decimal?)1674.53125, (decimal?)390.15625, (decimal?)28309.375, (int)10 )); + AllOfThem.Add(new Nebula( 23738, Nebula.NebulaType.Planetary, "Phipaa HC-U e3-5427", 1, true, "Phipaa HC-U e3-5427", (decimal?)1806.5, (decimal?)1061.96875, (decimal?)27886.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23739, Nebula.NebulaType.Planetary, "Phipaa II-S e4-10545", 1, true, "Phipaa II-S e4-10545", (decimal?)1247.34375, (decimal?)944.59375, (decimal?)27930.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23740, Nebula.NebulaType.Planetary, "Phipaa IM-V e2-3498", 1, true, "Phipaa IM-V e2-3498", (decimal?)1966.4375, (decimal?)760.125, (decimal?)27722.125, (int)10 )); + AllOfThem.Add(new Nebula( 23741, Nebula.NebulaType.Planetary, "Phipaa LX-U e2-650", 1, true, "Phipaa LX-U e2-650", (decimal?)1501.875, (decimal?)204.375, (decimal?)27701.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23742, Nebula.NebulaType.Planetary, "Phipaa NY-R e4-3382", 1, true, "Phipaa NY-R e4-3382", (decimal?)1492.8125, (decimal?)652.0625, (decimal?)27927.625, (int)10 )); + AllOfThem.Add(new Nebula( 23743, Nebula.NebulaType.Planetary, "Phipaa OD-B e6589", 1, true, "Phipaa OD-B e6589", (decimal?)1256.53125, (decimal?)955.375, (decimal?)27136.5, (int)10 )); + AllOfThem.Add(new Nebula( 23744, Nebula.NebulaType.Planetary, "Phipaa UU-P e5-6394", 1, true, "Phipaa UU-P e5-6394", (decimal?)1228, (decimal?)437.375, (decimal?)28063.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23745, Nebula.NebulaType.Planetary, "Phipaa VO-A e3208", 1, true, "Phipaa VO-A e3208", (decimal?)1455.3125, (decimal?)478.875, (decimal?)27228.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23746, Nebula.NebulaType.Planetary, "Phipaa WY-S e3-5414", 1, true, "Phipaa WY-S e3-5414", (decimal?)2273.46875, (decimal?)-5.78125, (decimal?)27771.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23747, Nebula.NebulaType.Planetary, "Phipaa YJ-A e8982", 1, true, "Phipaa YJ-A e8982", (decimal?)1626.28125, (decimal?)441.875, (decimal?)27204.25, (int)10 )); + AllOfThem.Add(new Nebula( 23748, Nebula.NebulaType.Planetary, "Phipaa ZJ-R e4-4178", 1, true, "Phipaa ZJ-R e4-4178", (decimal?)2372.15625, (decimal?)273.25, (decimal?)27930.25, (int)10 )); + AllOfThem.Add(new Nebula( 23765, Nebula.NebulaType.Planetary, "Phipoe JB-X e1-3903", 1, true, "Phipoe JB-X e1-3903", (decimal?)-2710.09375, (decimal?)504.40625, (decimal?)27555.875, (int)10 )); + AllOfThem.Add(new Nebula( 23769, Nebula.NebulaType.Planetary, "Phipoe NX-T e3-3734", 1, true, "Phipoe NX-T e3-3734", (decimal?)-2738.25, (decimal?)830.25, (decimal?)27809.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23776, Nebula.NebulaType.Planetary, "Phipoe XY-S e3-2760", 1, true, "Phipoe XY-S e3-2760", (decimal?)-2669.59375, (decimal?)115.4375, (decimal?)27872.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23778, Nebula.NebulaType.Planetary, "Phipoea CR-N e6-4058", 1, true, "Phipoea CR-N e6-4058", (decimal?)-1259.28125, (decimal?)32.3125, (decimal?)28254.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23779, Nebula.NebulaType.Planetary, "Phipoea CV-Y e9609", 1, true, "Phipoea CV-Y e9609", (decimal?)-547.59375, (decimal?)517.15625, (decimal?)27331.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23780, Nebula.NebulaType.Planetary, "Phipoea EB-X e1-3377", 1, true, "Phipoea EB-X e1-3377", (decimal?)-1009.03125, (decimal?)606.4375, (decimal?)27488.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23781, Nebula.NebulaType.Planetary, "Phipoea EH-U e3-8496", 1, true, "Phipoea EH-U e3-8496", (decimal?)-893.15625, (decimal?)1195.90625, (decimal?)27855.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23782, Nebula.NebulaType.Planetary, "Phipoea HC-U e3-9461", 1, true, "Phipoea HC-U e3-9461", (decimal?)-798.125, (decimal?)1086.65625, (decimal?)27819.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23783, Nebula.NebulaType.Planetary, "Phipoea IS-T e3-1424", 1, true, "Phipoea IS-T e3-1424", (decimal?)-1267.34375, (decimal?)634, (decimal?)27748.25, (int)10 )); + AllOfThem.Add(new Nebula( 23784, Nebula.NebulaType.Planetary, "Phipoea LN-T e3-5022", 1, true, "Phipoea LN-T e3-5022", (decimal?)-1175.875, (decimal?)516.71875, (decimal?)27873.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23785, Nebula.NebulaType.Planetary, "Phipoea LR-W e1-2445", 1, true, "Phipoea LR-W e1-2445", (decimal?)-448.125, (decimal?)253.875, (decimal?)27457.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23786, Nebula.NebulaType.Planetary, "Phipoea LR-W e1-291", 1, true, "Phipoea LR-W e1-291", (decimal?)-473.375, (decimal?)188.15625, (decimal?)27454, (int)10 )); + AllOfThem.Add(new Nebula( 23787, Nebula.NebulaType.Planetary, "Phipoea MI-T e3-2250", 1, true, "Phipoea MI-T e3-2250", (decimal?)-1185.75, (decimal?)449.65625, (decimal?)27821.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23788, Nebula.NebulaType.Planetary, "Phipoea NO-Q e5-5936", 1, true, "Phipoea NO-Q e5-5936", (decimal?)-1062.75, (decimal?)1040.25, (decimal?)28103.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23789, Nebula.NebulaType.Planetary, "Phipoea OS-U e2-3905", 1, true, "Phipoea OS-U e2-3905", (decimal?)-1009.90625, (decimal?)100.21875, (decimal?)27665.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23790, Nebula.NebulaType.Planetary, "Phipoea QS-U e2-1426", 1, true, "Phipoea QS-U e2-1426", (decimal?)-674.03125, (decimal?)69.71875, (decimal?)27649.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23791, Nebula.NebulaType.Planetary, "Phipoea RY-S e3-1112", 1, true, "Phipoea RY-S e3-1112", (decimal?)-1093.03125, (decimal?)60.09375, (decimal?)27846.5, (int)10 )); + AllOfThem.Add(new Nebula( 23792, Nebula.NebulaType.Planetary, "Phipoea SD-T e3-5502", 1, true, "Phipoea SD-T e3-5502", (decimal?)-626.4375, (decimal?)145.5, (decimal?)27839.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23860, Nebula.NebulaType.Planetary, "Phoi Auscs EW-W e1-1069", 1, true, "Phoi Auscs EW-W e1-1069", (decimal?)1363.03125, (decimal?)354.875, (decimal?)26204.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23863, Nebula.NebulaType.Planetary, "Phoi Auscs KH-V e2-588", 1, true, "Phoi Auscs KH-V e2-588", (decimal?)1979.75, (decimal?)522.625, (decimal?)26327.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23864, Nebula.NebulaType.Planetary, "Phoi Auscs LM-W e1-1661", 1, true, "Phoi Auscs LM-W e1-1661", (decimal?)1798.4375, (decimal?)74.53125, (decimal?)26143.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23865, Nebula.NebulaType.Planetary, "Phoi Auscs MI-S e4-1064", 1, true, "Phoi Auscs MI-S e4-1064", (decimal?)1900.375, (decimal?)1025.15625, (decimal?)26618.125, (int)10 )); + AllOfThem.Add(new Nebula( 23867, Nebula.NebulaType.Planetary, "Phoi Auscs WP-X e1-8656", 1, true, "Phoi Auscs WP-X e1-8656", (decimal?)1215.84375, (decimal?)1049.0625, (decimal?)26141.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23868, Nebula.NebulaType.Planetary, "Phoi Auscs XE-Z e10477", 1, true, "Phoi Auscs XE-Z e10477", (decimal?)1784.40625, (decimal?)930.65625, (decimal?)26069.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23869, Nebula.NebulaType.Planetary, "Phoi Auscs YK-O e6-823", 1, true, "Phoi Auscs YK-O e6-823", (decimal?)1981.59375, (decimal?)741.125, (decimal?)26984.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23913, Nebula.NebulaType.Planetary, "Phraa Flya PO-Q e5-2055", 1, true, "Phraa Flya PO-Q e5-2055", (decimal?)448.34375, (decimal?)-1621.5, (decimal?)24231.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23925, Nebula.NebulaType.Planetary, "Phraa Flyuae TZ-O e6-2434", 1, true, "Phraa Flyuae TZ-O e6-2434", (decimal?)-1777.375, (decimal?)-55.25, (decimal?)24478.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23936, Nebula.NebulaType.Planetary, "Phraa Pra HH-U e3-1354", 1, true, "Phraa Pra HH-U e3-1354", (decimal?)823.3125, (decimal?)-1416.125, (decimal?)26584.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23937, Nebula.NebulaType.Planetary, "Phraa Pra OI-S e4-3772", 1, true, "Phraa Pra OI-S e4-3772", (decimal?)935.6875, (decimal?)-1475.46875, (decimal?)26728.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23938, Nebula.NebulaType.Planetary, "Phraa Pra QO-Q e5-2648", 1, true, "Phraa Pra QO-Q e5-2648", (decimal?)695.375, (decimal?)-1569.71875, (decimal?)26846, (int)10 )); + AllOfThem.Add(new Nebula( 23939, Nebula.NebulaType.Planetary, "Phraa Pra WO-Z e1062", 1, true, "Phraa Pra WO-Z e1062", (decimal?)932.71875, (decimal?)-1342.875, (decimal?)26011.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23940, Nebula.NebulaType.Planetary, "Phraa Pra ZU-X e1-5999", 1, true, "Phraa Pra ZU-X e1-5999", (decimal?)832.90625, (decimal?)-1374.03125, (decimal?)26157.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23942, Nebula.NebulaType.Planetary, "Phraa Pruae DW-V e2-8367", 1, true, "Phraa Pruae DW-V e2-8367", (decimal?)-2136.875, (decimal?)-185.4375, (decimal?)26359.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23943, Nebula.NebulaType.Planetary, "Phraa Pruae ER-N e6-7091", 1, true, "Phraa Pruae ER-N e6-7091", (decimal?)-2215.0625, (decimal?)-1192.625, (decimal?)26981.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23944, Nebula.NebulaType.Planetary, "Phraa Pruae GQ-Y e6884", 1, true, "Phraa Pruae GQ-Y e6884", (decimal?)-1592.71875, (decimal?)-967.15625, (decimal?)26107.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23945, Nebula.NebulaType.Planetary, "Phraa Pruae LN-S e4-2034", 1, true, "Phraa Pruae LN-S e4-2034", (decimal?)-1821.6875, (decimal?)-92.65625, (decimal?)26639.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23946, Nebula.NebulaType.Planetary, "Phraa Pruae MM-W e1-6338", 1, true, "Phraa Pruae MM-W e1-6338", (decimal?)-1974.09375, (decimal?)-1161.5, (decimal?)26223.5, (int)10 )); + AllOfThem.Add(new Nebula( 23947, Nebula.NebulaType.Planetary, "Phraa Pruae MY-R e4-8891", 1, true, "Phraa Pruae MY-R e4-8891", (decimal?)-2596.34375, (decimal?)-512.875, (decimal?)26673.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23948, Nebula.NebulaType.Planetary, "Phraa Pruae NI-B e3049", 1, true, "Phraa Pruae NI-B e3049", (decimal?)-2442.3125, (decimal?)-39.1875, (decimal?)25938.375, (int)10 )); + AllOfThem.Add(new Nebula( 23949, Nebula.NebulaType.Planetary, "Phraa Pruae OC-V e2-1898", 1, true, "Phraa Pruae OC-V e2-1898", (decimal?)-1645.59375, (decimal?)-947.71875, (decimal?)26297.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23950, Nebula.NebulaType.Planetary, "Phraa Pruae RE-Q e5-5657", 1, true, "Phraa Pruae RE-Q e5-5657", (decimal?)-2396.875, (decimal?)-646.40625, (decimal?)26885.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23951, Nebula.NebulaType.Planetary, "Phraa Pruae UD-B e5042", 1, true, "Phraa Pruae UD-B e5042", (decimal?)-1513.03125, (decimal?)-256.9375, (decimal?)25965.25, (int)10 )); + AllOfThem.Add(new Nebula( 23963, Nebula.NebulaType.Planetary, "Phrio prao aw-n e6-7611", 1, true, "Phrio Prao AW-N e6-7611", (decimal?)1285.46875, (decimal?)-1029.53125, (decimal?)27079.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23964, Nebula.NebulaType.Planetary, "Phrio Prao DB-O e6-1166", 1, true, "Phrio Prao DB-O e6-1166", (decimal?)2039.125, (decimal?)-851.25, (decimal?)26944.25, (int)10 )); + AllOfThem.Add(new Nebula( 23965, Nebula.NebulaType.Planetary, "Phrio Prao DQ-Y e4986", 1, true, "Phrio Prao DQ-Y e4986", (decimal?)1762.65625, (decimal?)-850.40625, (decimal?)25998.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23969, Nebula.NebulaType.Planetary, "Phrio Prao KX-U e2-2611", 1, true, "Phrio Prao KX-U e2-2611", (decimal?)1226.0625, (decimal?)-1000.4375, (decimal?)26303.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23970, Nebula.NebulaType.Planetary, "Phrio Prao MC-V e2-9594", 1, true, "Phrio Prao MC-V e2-9594", (decimal?)1870.25, (decimal?)-878.46875, (decimal?)26429.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23972, Nebula.NebulaType.Planetary, "Phrio Prao ND-S e4-952", 1, true, "Phrio Prao ND-S e4-952", (decimal?)1699.90625, (decimal?)-501.34375, (decimal?)26657.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23975, Nebula.NebulaType.Planetary, "Phrio Prao YP-X e1-4244", 1, true, "Phrio Prao YP-X e1-4244", (decimal?)1583.71875, (decimal?)-228.9375, (decimal?)26274.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23976, Nebula.NebulaType.Planetary, "Phrio Prue KI-S e4-2418", 1, true, "Phrio Prue KI-S e4-2418", (decimal?)1615.3125, (decimal?)-1546.71875, (decimal?)26677.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23977, Nebula.NebulaType.Planetary, "Phrio Prue SP-O e6-210", 1, true, "Phrio Prue SP-O e6-210", (decimal?)1282.375, (decimal?)-1660.40625, (decimal?)27005.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24097, Nebula.NebulaType.Planetary, "Phroi Flya ND-S e4-1692", 1, true, "Phroi Flya ND-S e4-1692", (decimal?)-828.21875, (decimal?)-1729.59375, (decimal?)24149.125, (int)10 )); + AllOfThem.Add(new Nebula( 24098, Nebula.NebulaType.Planetary, "Phroi Flya NT-Q e5-4370", 1, true, "Phroi Flya NT-Q e5-4370", (decimal?)-714.9375, (decimal?)-1427.875, (decimal?)24317.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24099, Nebula.NebulaType.Planetary, "Phroi Flya OD-S e4-97", 1, true, "Phroi Flya OD-S e4-97", (decimal?)-694.78125, (decimal?)-1641.53125, (decimal?)24193.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24100, Nebula.NebulaType.Planetary, "Phroi Flya PT-Q e5-5445", 1, true, "Phroi Flya PT-Q e5-5445", (decimal?)-411.75, (decimal?)-1445, (decimal?)24368.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24101, Nebula.NebulaType.Planetary, "Phroi Flya RJ-Q e5-2739", 1, true, "Phroi Flya RJ-Q e5-2739", (decimal?)-851.09375, (decimal?)-1767.96875, (decimal?)24219.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24117, Nebula.NebulaType.Planetary, "Phroi Pra OI-B e6807", 1, true, "Phroi Pra OI-B e6807", (decimal?)-934.5, (decimal?)-1388.21875, (decimal?)25970.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24118, Nebula.NebulaType.Planetary, "Phroi Pra RJ-Q e5-2984", 1, true, "Phroi Pra RJ-Q e5-2984", (decimal?)-754.625, (decimal?)-1757.28125, (decimal?)26886.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24119, Nebula.NebulaType.Planetary, "Phroi Pra TD-B e3752", 1, true, "Phroi Pra TD-B e3752", (decimal?)-430.8125, (decimal?)-1527.59375, (decimal?)25887.625, (int)10 )); + AllOfThem.Add(new Nebula( 24120, Nebula.NebulaType.Planetary, "Phroi Pra UU-O e6-1539", 1, true, "Phroi Pra UU-O e6-1539", (decimal?)-632.15625, (decimal?)-1517.28125, (decimal?)27094.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24121, Nebula.NebulaType.Planetary, "Phroi Pri ER-V e2-1109", 1, true, "Phroi Pri ER-V e2-1109", (decimal?)-975.15625, (decimal?)-454.03125, (decimal?)26313.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24122, Nebula.NebulaType.Planetary, "Phroi Pri FR-N e6-9622", 1, true, "Phroi Pri FR-N e6-9622", (decimal?)-863.125, (decimal?)-1290.40625, (decimal?)27027.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24123, Nebula.NebulaType.Planetary, "Phroi Pri GC-U e3-8557", 1, true, "Phroi Pri GC-U e3-8557", (decimal?)-1020.5625, (decimal?)-319.5, (decimal?)26611.125, (int)10 )); + AllOfThem.Add(new Nebula( 24124, Nebula.NebulaType.Planetary, "Phroi Pri GR-N e6-4618", 1, true, "Phroi Pri GR-N e6-4618", (decimal?)-595.375, (decimal?)-1212.75, (decimal?)27089.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24125, Nebula.NebulaType.Planetary, "Phroi Pri NI-B e7361", 1, true, "Phroi Pri NI-B e7361", (decimal?)-1167.90625, (decimal?)-132.53125, (decimal?)25825.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24126, Nebula.NebulaType.Planetary, "Phroi Pri PX-U e2-1084", 1, true, "Phroi Pri PX-U e2-1084", (decimal?)-482.59375, (decimal?)-1016.15625, (decimal?)26437.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24127, Nebula.NebulaType.Planetary, "Phroi Pri SY-A e4534", 1, true, "Phroi Pri SY-A e4534", (decimal?)-993.09375, (decimal?)-467.28125, (decimal?)25827.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24128, Nebula.NebulaType.Planetary, "Phroi Pri SZ-O e6-4527", 1, true, "Phroi Pri SZ-O e6-4527", (decimal?)-670.375, (decimal?)-39.28125, (decimal?)27005.375, (int)10 )); + AllOfThem.Add(new Nebula( 24129, Nebula.NebulaType.Planetary, "Phroi Pri VO-A e754", 1, true, "Phroi Pri VO-A e754", (decimal?)-1154.125, (decimal?)-743.21875, (decimal?)25896.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24136, Nebula.NebulaType.Planetary, "Phroi Pruae HG-X e1-4851", 1, true, "Phroi Pruae HG-X e1-4851", (decimal?)-2682.125, (decimal?)-620.59375, (decimal?)26184.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24156, Nebula.NebulaType.Planetary, "Phua Aub DR-N e6-7012", 1, true, "Phua Aub DR-N e6-7012", (decimal?)-1069.8125, (decimal?)37.28125, (decimal?)26948.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24157, Nebula.NebulaType.Planetary, "Phua Aub FM-V e2-8064", 1, true, "Phua Aub FM-V e2-8064", (decimal?)-1076.125, (decimal?)694.125, (decimal?)26436.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24158, Nebula.NebulaType.Planetary, "Phua Aub GR-W e1-3512", 1, true, "Phua Aub GR-W e1-3512", (decimal?)-1227.625, (decimal?)198, (decimal?)26271.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24159, Nebula.NebulaType.Planetary, "Phua Aub GW-W e1-3262", 1, true, "Phua Aub GW-W e1-3262", (decimal?)-963, (decimal?)407.34375, (decimal?)26139.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24160, Nebula.NebulaType.Planetary, "Phua Aub LX-U e2-5708", 1, true, "Phua Aub LX-U e2-5708", (decimal?)-1085.15625, (decimal?)137.3125, (decimal?)26439.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24161, Nebula.NebulaType.Planetary, "Phua Aub MC-V e2-3466", 1, true, "Phua Aub MC-V e2-3466", (decimal?)-643.15625, (decimal?)352.40625, (decimal?)26358.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24162, Nebula.NebulaType.Planetary, "Phua Aub MX-U e2-7221", 1, true, "Phua Aub MX-U e2-7221", (decimal?)-976.71875, (decimal?)277.1875, (decimal?)26303.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24163, Nebula.NebulaType.Planetary, "Phua Aub MX-U e2-7396", 1, true, "Phua Aub MX-U e2-7396", (decimal?)-962, (decimal?)170.59375, (decimal?)26386.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24164, Nebula.NebulaType.Planetary, "Phua Aub ND-S e4-93", 1, true, "Phua Aub ND-S e4-93", (decimal?)-708.84375, (decimal?)856.0625, (decimal?)26708.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24165, Nebula.NebulaType.Planetary, "Phua Aub PX-U e2-6959", 1, true, "Phua Aub PX-U e2-6959", (decimal?)-525.6875, (decimal?)290.78125, (decimal?)26433.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24166, Nebula.NebulaType.Planetary, "Phua Aub QO-R E4-1790", 1, true, "Phua Aub QO-R e4-1790", (decimal?)-1238.25, (decimal?)368.125, (decimal?)26720.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24167, Nebula.NebulaType.Planetary, "Phua Aub QZ-O e6-6452", 1, true, "Phua Aub QZ-O e6-6452", (decimal?)-963.28125, (decimal?)1119.25, (decimal?)26989.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24168, Nebula.NebulaType.Planetary, "Phua Aub SJ-R e4-8234", 1, true, "Phua Aub SJ-R e4-8234", (decimal?)-1341.15625, (decimal?)158.125, (decimal?)26651.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24169, Nebula.NebulaType.Planetary, "Phua Aub UO-R e4-972", 1, true, "Phua Aub UO-R e4-972", (decimal?)-556.1875, (decimal?)443.53125, (decimal?)26671.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24170, Nebula.NebulaType.Planetary, "Phua Aub UY-A e1369", 1, true, "Phua Aub UY-A e1369", (decimal?)-653.90625, (decimal?)791.40625, (decimal?)25912.375, (int)10 )); + AllOfThem.Add(new Nebula( 24171, Nebula.NebulaType.Planetary, "Phua Aub VK-O e6-6194", 1, true, "Phua Aub VK-O e6-6194", (decimal?)-1126.9375, (decimal?)745.0625, (decimal?)26997.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24172, Nebula.NebulaType.Planetary, "Phua Aub VY-S e3-3899", 1, true, "Phua Aub VY-S e3-3899", (decimal?)-495.84375, (decimal?)9.90625, (decimal?)26581.25, (int)10 )); + AllOfThem.Add(new Nebula( 24173, Nebula.NebulaType.Planetary, "Phua Aub WP-P E5-723", 1, true, "Phua Aub WP-P e5-723", (decimal?)-1304.46875, (decimal?)233.9375, (decimal?)26830.25, (int)10 )); + AllOfThem.Add(new Nebula( 24174, Nebula.NebulaType.Planetary, "Phua Aub YA-O E6-1543", 1, true, "Phua Aub YA-O e6-1543", (decimal?)-1277.15625, (decimal?)296.71875, (decimal?)26956.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24175, Nebula.NebulaType.Planetary, "Phua Aub ZE-A e2734", 1, true, "Phua Aub ZE-A e2734", (decimal?)-1153.4375, (decimal?)154.96875, (decimal?)25925.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24176, Nebula.NebulaType.Planetary, "Phua Audst DF-A e878", 1, true, "Phua Audst DF-A e878", (decimal?)-456.125, (decimal?)1443.25, (decimal?)25852.125, (int)10 )); + AllOfThem.Add(new Nebula( 24177, Nebula.NebulaType.Planetary, "Phua Audst FA-A e5030", 1, true, "Phua Audst FA-A e5030", (decimal?)-413.34375, (decimal?)1305.03125, (decimal?)25817.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24178, Nebula.NebulaType.Planetary, "Phua Audst MM-W e1-2029", 1, true, "Phua Audst MM-W e1-2029", (decimal?)-586.1875, (decimal?)1354.09375, (decimal?)26137.625, (int)10 )); + AllOfThem.Add(new Nebula( 24179, Nebula.NebulaType.Planetary, "Phua Audst MM-W e1-3327", 1, true, "Phua Audst MM-W e1-3327", (decimal?)-581.21875, (decimal?)1371.28125, (decimal?)26138.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24180, Nebula.NebulaType.Planetary, "Phua Audst UY-S e3-414", 1, true, "Phua Audst UY-S e3-414", (decimal?)-580.375, (decimal?)1279.71875, (decimal?)26572, (int)10 )); + AllOfThem.Add(new Nebula( 24181, Nebula.NebulaType.Planetary, "Phua Audst XE-R e4-5411", 1, true, "Phua Audst XE-R e4-5411", (decimal?)-741.46875, (decimal?)1384.8125, (decimal?)26765.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24182, Nebula.NebulaType.Planetary, "Phua ausms fb-o e6-1764", 1, true, "Phua Ausms FB-O e6-1764", (decimal?)-2694.15625, (decimal?)1725.0625, (decimal?)26954.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24200, Nebula.NebulaType.Planetary, "Phua Scrua WP-P e5-3030", 1, true, "Phua Scrua WP-P e5-3030", (decimal?)-1288.9375, (decimal?)1417.84375, (decimal?)24269.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24215, Nebula.NebulaType.Planetary, "Plimbee AF-R e4-2991", 1, true, "Plimbee AF-R e4-2991", (decimal?)-1591.03125, (decimal?)1305.40625, (decimal?)27923.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24216, Nebula.NebulaType.Planetary, "Plipoe WJ-A e71", 1, true, "Plipoe WJ-A e71", (decimal?)-1244.4375, (decimal?)1667.34375, (decimal?)27119.625, (int)10 )); + AllOfThem.Add(new Nebula( 24217, Nebula.NebulaType.Planetary, "Plipoe WJ-R e4-3195", 1, true, "Plipoe WJ-R e4-3195", (decimal?)-558.4375, (decimal?)1417.65625, (decimal?)27926.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24218, Nebula.NebulaType.Planetary, "Plipoe YU-P e5-2655", 1, true, "Plipoe YU-P e5-2655", (decimal?)-664.375, (decimal?)1656.0625, (decimal?)28118.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24308, Nebula.NebulaType.Planetary, "Rothaei HR-V e2-1216", 1, true, "Rothaei HR-V e2-1216", (decimal?)849.59375, (decimal?)-1778.375, (decimal?)30161.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24309, Nebula.NebulaType.Planetary, "Rothaei IB-X e1-573", 1, true, "Rothaei IB-X e1-573", (decimal?)1001.34375, (decimal?)-2039.46875, (decimal?)30031.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24310, Nebula.NebulaType.Planetary, "Rothaei SI-B e2047", 1, true, "Rothaei SI-B e2047", (decimal?)944.71875, (decimal?)-1410.59375, (decimal?)29739.625, (int)10 )); + AllOfThem.Add(new Nebula( 24314, Nebula.NebulaType.Planetary, "Rotheou ZE-Z e2200", 1, true, "Rotheou ZE-Z e2200", (decimal?)-475.53125, (decimal?)-1784.40625, (decimal?)29952.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24342, Nebula.NebulaType.Planetary, "Scaulo HC-U e3-427", 1, true, "Scaulo HC-U e3-427", (decimal?)-730.96875, (decimal?)-256.5625, (decimal?)29132.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24343, Nebula.NebulaType.Planetary, "Scaulo OD-S e4-3426", 1, true, "Scaulo OD-S e4-3426", (decimal?)-594.1875, (decimal?)-496.3125, (decimal?)29179.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24344, Nebula.NebulaType.Planetary, "Scaulo OZ-O e6-8652", 1, true, "Scaulo OZ-O e6-8652", (decimal?)-1272.46875, (decimal?)-171.09375, (decimal?)29604.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24345, Nebula.NebulaType.Planetary, "Scaulo QY-A E5662", 1, true, "Scaulo QY-A e5662", (decimal?)-1198.53125, (decimal?)-388.53125, (decimal?)28394.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24346, Nebula.NebulaType.Planetary, "Scaulo RD-B e543", 1, true, "Scaulo RD-B e543", (decimal?)-722.75, (decimal?)-258.5, (decimal?)28506.25, (int)10 )); + AllOfThem.Add(new Nebula( 24347, Nebula.NebulaType.Planetary, "Scaulo TP-O e6-5378", 1, true, "Scaulo TP-O e6-5378", (decimal?)-1153.4375, (decimal?)-427.53125, (decimal?)29636.875, (int)10 )); + AllOfThem.Add(new Nebula( 24348, Nebula.NebulaType.Planetary, "Scaulo TZ-O e6-6526", 1, true, "Scaulo TZ-O e6-6526", (decimal?)-535.5, (decimal?)-178.5, (decimal?)29518.25, (int)10 )); + AllOfThem.Add(new Nebula( 24349, Nebula.NebulaType.Planetary, "Scaulo YO-A e7027", 1, true, "Scaulo YO-A e7027", (decimal?)-659.03125, (decimal?)-722.875, (decimal?)28532.375, (int)10 )); + AllOfThem.Add(new Nebula( 24449, Nebula.NebulaType.Planetary, "Scheau Prao YK-P e5-1631", 1, true, "Scheau Prao YK-P e5-1631", (decimal?)1215.09375, (decimal?)-1159.5, (decimal?)25519.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24807, Nebula.NebulaType.Planetary, "Stuemao oi-s e4-9122", 1, true, "Stuemao OI-S e4-9122", (decimal?)-2844.5625, (decimal?)937.78125, (decimal?)26628.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24815, Nebula.NebulaType.Planetary, "Stuemao xo-z e7692", 1, true, "Stuemao XO-Z e7692", (decimal?)-2722.09375, (decimal?)1154.59375, (decimal?)26121.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24818, Nebula.NebulaType.Planetary, "Stuemau AF-A e4228", 1, true, "Stuemau AF-A e4228", (decimal?)-2238.59375, (decimal?)288.8125, (decimal?)25857.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24819, Nebula.NebulaType.Planetary, "Stuemau BB-O e6-258", 1, true, "Stuemau BB-O e6-258", (decimal?)-2048.90625, (decimal?)339.75, (decimal?)26967.75, (int)10 )); + AllOfThem.Add(new Nebula( 24820, Nebula.NebulaType.Planetary, "Stuemau DV-Y e1437", 1, true, "Stuemau DV-Y e1437", (decimal?)-1818.71875, (decimal?)515.15625, (decimal?)26043.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24821, Nebula.NebulaType.Planetary, "Stuemau FG-X e1-7154", 1, true, "Stuemau FG-X e1-7154", (decimal?)-1776.15625, (decimal?)749.96875, (decimal?)26177.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24822, Nebula.NebulaType.Planetary, "Stuemau GG-Y e8209", 1, true, "Stuemau GG-Y e8209", (decimal?)-2193.53125, (decimal?)30.1875, (decimal?)26048.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24823, Nebula.NebulaType.Planetary, "Stuemau GL-Y e6642", 1, true, "Stuemau GL-Y e6642", (decimal?)-1899.78125, (decimal?)206.6875, (decimal?)26045.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24824, Nebula.NebulaType.Planetary, "Stuemau IR-V e2-2498", 1, true, "Stuemau IR-V e2-2498", (decimal?)-1528.53125, (decimal?)863.46875, (decimal?)26424.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24825, Nebula.NebulaType.Planetary, "Stuemau IS-T e3-5288", 1, true, "Stuemau IS-T e3-5288", (decimal?)-2591, (decimal?)705.28125, (decimal?)26505.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24826, Nebula.NebulaType.Planetary, "Stuemau JR-N e6-5477", 1, true, "Stuemau JR-N e6-5477", (decimal?)-1460.71875, (decimal?)-3.6875, (decimal?)26976.5, (int)10 )); + AllOfThem.Add(new Nebula( 24827, Nebula.NebulaType.Planetary, "Stuemau KI-S e4-4394", 1, true, "Stuemau KI-S e4-4394", (decimal?)-2274.5625, (decimal?)977.21875, (decimal?)26657.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24828, Nebula.NebulaType.Planetary, "Stuemau PY-R e4-709", 1, true, "Stuemau PY-R e4-709", (decimal?)-2036.15625, (decimal?)697.96875, (decimal?)26740.875, (int)10 )); + AllOfThem.Add(new Nebula( 24829, Nebula.NebulaType.Planetary, "Stuemau QD-T e3-1976", 1, true, "Stuemau QD-T e3-1976", (decimal?)-2207.03125, (decimal?)165.3125, (decimal?)26592.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24830, Nebula.NebulaType.Planetary, "Stuemau YJ-R e4-5340", 1, true, "Stuemau YJ-R e4-5340", (decimal?)-1609.4375, (decimal?)225.875, (decimal?)26765.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24831, Nebula.NebulaType.Planetary, "Stuemau yp-x e1-89", 1, true, "Stuemau YP-X e1-89", (decimal?)-2244.46875, (decimal?)992.5, (decimal?)26270.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24832, Nebula.NebulaType.Planetary, "Stuemeae AQ-P e5-2173", 1, true, "Stuemeae AQ-P e5-2173", (decimal?)671.15625, (decimal?)175, (decimal?)26826.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24833, Nebula.NebulaType.Planetary, "Stuemeae DG-O e6-4174", 1, true, "Stuemeae DG-O e6-4174", (decimal?)1164.5, (decimal?)526.0625, (decimal?)26969.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24834, Nebula.NebulaType.Planetary, "Stuemeae hb-x e1-2376", 1, true, "Stuemeae HB-X e1-2376", (decimal?)858.71875, (decimal?)514.53125, (decimal?)26183.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24835, Nebula.NebulaType.Planetary, "Stuemeae HM-V e2-1717", 1, true, "Stuemeae HM-V e2-1717", (decimal?)515.96875, (decimal?)618.15625, (decimal?)26444.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24836, Nebula.NebulaType.Planetary, "Stuemeae NM-W e1-5094", 1, true, "Stuemeae NM-W e1-5094", (decimal?)795.5625, (decimal?)50.09375, (decimal?)26185.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24837, Nebula.NebulaType.Planetary, "Stuemeae PI-B e3149", 1, true, "Stuemeae PI-B e3149", (decimal?)515.84375, (decimal?)1107.59375, (decimal?)25953.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24838, Nebula.NebulaType.Planetary, "Stuemeae PS-T e3-5456", 1, true, "Stuemeae PS-T e3-5456", (decimal?)1069.90625, (decimal?)701.875, (decimal?)26529.75, (int)10 )); + AllOfThem.Add(new Nebula( 24839, Nebula.NebulaType.Planetary, "Stuemeae we-q e5-5479", 1, true, "Stuemeae WE-Q e5-5479", (decimal?)910.9375, (decimal?)635.78125, (decimal?)26790.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24840, Nebula.NebulaType.Planetary, "Stuemeae ZO-A e1750", 1, true, "Stuemeae ZO-A e1750", (decimal?)841, (decimal?)488.4375, (decimal?)25833.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24899, Nebula.NebulaType.Planetary, "Syroomeou NM-W e1-58", 1, true, "Syroomeou NM-W e1-58", (decimal?)-458.75, (decimal?)2585, (decimal?)25008.125, (int)10 )); + AllOfThem.Add(new Nebula( 24945, Nebula.NebulaType.Planetary, "Systimbie QO-Q e5-3865", 1, true, "Systimbie QO-Q e5-3865", (decimal?)3209.375, (decimal?)-190.03125, (decimal?)28134.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24947, Nebula.NebulaType.Planetary, "Systimbie RO-R e4-4815", 1, true, "Systimbie RO-R e4-4815", (decimal?)2683.40625, (decimal?)-952.03125, (decimal?)27900.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24949, Nebula.NebulaType.Planetary, "Systimbie to-r e4-6879", 1, true, "Systimbie TO-R e4-6879", (decimal?)3021.375, (decimal?)-968.875, (decimal?)28033.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24952, Nebula.NebulaType.Planetary, "Systimbo JH-U e3-1374", 1, true, "Systimbo JH-U e3-1374", (decimal?)-2780.25, (decimal?)-50.4375, (decimal?)27795.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24958, Nebula.NebulaType.Planetary, "Systimbu BQ-Y e937", 1, true, "Systimbu BQ-Y e937", (decimal?)-1153.40625, (decimal?)-965.5, (decimal?)27261.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24959, Nebula.NebulaType.Planetary, "Systimbu hb-x e1-654", 1, true, "Systimbu HB-X e1-654", (decimal?)-529.53125, (decimal?)-720.78125, (decimal?)27463.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24960, Nebula.NebulaType.Planetary, "Systimbu LC-V e2-2076", 1, true, "Systimbu LC-V e2-2076", (decimal?)-739.25, (decimal?)-863.71875, (decimal?)27638.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24961, Nebula.NebulaType.Planetary, "Systimbu LN-S e4-186", 1, true, "Systimbu LN-S e4-186", (decimal?)-441.21875, (decimal?)-68.28125, (decimal?)27981.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24962, Nebula.NebulaType.Planetary, "Systimbu OJ-Q e5-1114", 1, true, "Systimbu OJ-Q e5-1114", (decimal?)-1321.1875, (decimal?)-397.40625, (decimal?)28078.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24963, Nebula.NebulaType.Planetary, "Systimbu OT-R e4-6070", 1, true, "Systimbu OT-R e4-6070", (decimal?)-1251.28125, (decimal?)-794.75, (decimal?)27933.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24964, Nebula.NebulaType.Planetary, "Systimbu RI-B e2619", 1, true, "Systimbu RI-B e2619", (decimal?)-484.25, (decimal?)-61.78125, (decimal?)27240.25, (int)10 )); + AllOfThem.Add(new Nebula( 24965, Nebula.NebulaType.Planetary, "Systimbu RS-U e2-6971", 1, true, "Systimbu RS-U e2-6971", (decimal?)-419.46875, (decimal?)-1281.21875, (decimal?)27666.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24966, Nebula.NebulaType.Planetary, "Systimbu TU-O e6-1725", 1, true, "Systimbu TU-O e6-1725", (decimal?)-851.78125, (decimal?)-279.46875, (decimal?)28255.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24967, Nebula.NebulaType.Planetary, "Systimbu TZ-P e5-1222", 1, true, "Systimbu TZ-P e5-1222", (decimal?)-1110.3125, (decimal?)-704.1875, (decimal?)28211.875, (int)10 )); + AllOfThem.Add(new Nebula( 24968, Nebula.NebulaType.Planetary, "Systimbu ue-q e5-5492", 1, true, "Systimbu UE-Q e5-5492", (decimal?)-545.375, (decimal?)-593.09375, (decimal?)28177.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24969, Nebula.NebulaType.Planetary, "Systimbu UT-A e9433", 1, true, "Systimbu UT-A e9433", (decimal?)-1017.125, (decimal?)-518.1875, (decimal?)27143.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24970, Nebula.NebulaType.Planetary, "Systimbu UY-A e2839", 1, true, "Systimbu UY-A e2839", (decimal?)-593.90625, (decimal?)-453.96875, (decimal?)27254.375, (int)10 )); + AllOfThem.Add(new Nebula( 24971, Nebula.NebulaType.Planetary, "Systimbu XJ-A e4361", 1, true, "Systimbu XJ-A e4361", (decimal?)-1081.78125, (decimal?)-925.59375, (decimal?)27253.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25003, Nebula.NebulaType.Planetary, "Theema CL-P e5-2040", 1, true, "Theema CL-P e5-2040", (decimal?)715.21875, (decimal?)1315, (decimal?)24298.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25004, Nebula.NebulaType.Planetary, "Theema NM-W e1-2932", 1, true, "Theema NM-W e1-2932", (decimal?)807.125, (decimal?)1396.46875, (decimal?)23660.5, (int)10 )); + AllOfThem.Add(new Nebula( 25130, Nebula.NebulaType.Planetary, "Wepai CL-P e5-1116", 1, true, "Wepai CL-P e5-1116", (decimal?)645.625, (decimal?)-1302.90625, (decimal?)24352.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25136, Nebula.NebulaType.Planetary, "Wepai XK-O e6-3214", 1, true, "Wepai XK-O e6-3214", (decimal?)517.28125, (decimal?)-658.40625, (decimal?)24387.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25137, Nebula.NebulaType.Planetary, "Wepai YE-R E4-6098", 1, true, "Wepai YE-R e4-6098", (decimal?)614.8125, (decimal?)-1196.5625, (decimal?)24163.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25200, Nebula.NebulaType.Planetary, "Wepue LH-V e2-1930", 1, true, "Wepue LH-V e2-1930", (decimal?)-501.96875, (decimal?)-789.5625, (decimal?)23791.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25201, Nebula.NebulaType.Planetary, "Wepue MN-T e3-7057", 1, true, "Wepue MN-T e3-7057", (decimal?)-883.625, (decimal?)-818.875, (decimal?)23952.40625, (int)10 )); + AllOfThem.Add(new Nebula( 25265, Nebula.NebulaType.Planetary, "Wrupaea XY-A e1450", 1, true, "Wrupaea XY-A e1450", (decimal?)-1424.375, (decimal?)-1637.09375, (decimal?)28494.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25314, Nebula.NebulaType.Planetary, "Zuni HW-V E2-8133", 1, true, "Zuni HW-V e2-8133", (decimal?)1081.375, (decimal?)1088.25, (decimal?)23763.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25316, Nebula.NebulaType.Planetary, "Zuni MI-S e4-7693", 1, true, "Zuni MI-S e4-7693", (decimal?)679.3125, (decimal?)986.4375, (decimal?)24162, (int)10 )); + AllOfThem.Add(new Nebula( 25319, Nebula.NebulaType.Planetary, "Zuni ZU-X e1-5397", 1, true, "Zuni ZU-X e1-5397", (decimal?)769.71875, (decimal?)1178.21875, (decimal?)23733.125, (int)10 )); + AllOfThem.Add(new Nebula( 25349, Nebula.NebulaType.Planetary, "Zunou BL-O e6-2832", 1, true, "Zunou BL-O e6-2832", (decimal?)-1427.28125, (decimal?)668.5625, (decimal?)24433.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25350, Nebula.NebulaType.Planetary, "Zunou DQ-P e5-4424", 1, true, "Zunou DQ-P e5-4424", (decimal?)-1458.59375, (decimal?)230.9375, (decimal?)24284.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25351, Nebula.NebulaType.Planetary, "Zunou GW-N e6-2838", 1, true, "Zunou GW-N e6-2838", (decimal?)-1519.25, (decimal?)242.78125, (decimal?)24499.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25353, Nebula.NebulaType.Planetary, "Zunou IR-N e6-9079", 1, true, "Zunou IR-N e6-9079", (decimal?)-1508.4375, (decimal?)5.875, (decimal?)24457.625, (int)10 )); + AllOfThem.Add(new Nebula( 25368, Nebula.NebulaType.Planetary, "Zunuae AL-P e5-4668", 1, true, "Zunuae AL-P e5-4668", (decimal?)-879.09375, (decimal?)107.96875, (decimal?)24223.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25369, Nebula.NebulaType.Planetary, "Zunuae AL-P e5-9430", 1, true, "Zunuae AL-P e5-9430", (decimal?)-946.65625, (decimal?)106.75, (decimal?)24265.375, (int)10 )); + AllOfThem.Add(new Nebula( 25371, Nebula.NebulaType.Planetary, "Zunuae CB-O e6-1886", 1, true, "Zunuae CB-O e6-1886", (decimal?)-562.875, (decimal?)372, (decimal?)24410.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25372, Nebula.NebulaType.Planetary, "Zunuae CR-N e6-1748", 1, true, "Zunuae CR-N e6-1748", (decimal?)-1344.46875, (decimal?)0.6875, (decimal?)24469.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25376, Nebula.NebulaType.Planetary, "Zunuae mi-s e4-5899", 1, true, "Zunuae MI-S e4-5899", (decimal?)-571.15625, (decimal?)1092.375, (decimal?)24209.84375, (int)10 )); + AllOfThem.Add(new Nebula( 25377, Nebula.NebulaType.Planetary, "Zunuae PN-T e3-5772", 1, true, "Zunuae PN-T e3-5772", (decimal?)-412.375, (decimal?)545.96875, (decimal?)23919.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25378, Nebula.NebulaType.Planetary, "Zunuae RZ-O e6-1973", 1, true, "Zunuae RZ-O e6-1973", (decimal?)-787.46875, (decimal?)1097.78125, (decimal?)24519.125, (int)10 )); + AllOfThem.Add(new Nebula( 25379, Nebula.NebulaType.Planetary, "Zunuae TU-O e6-6623", 1, true, "Zunuae TU-O e6-6623", (decimal?)-752.21875, (decimal?)946.0625, (decimal?)24390.1875, (int)10 )); + AllOfThem.Add(new Nebula( 30036, Nebula.NebulaType.Real, "G2 Dust Cloud", 1, false, "G2 Dust Cloud Sector JH-V c2-2851", (decimal?)26.6875, (decimal?)-22.9375, (decimal?)27900.59375, (int)100 )); + } + public static void init_Region_2() + { + AllOfThem.Add(new Nebula( 10007, Nebula.NebulaType.Standard, "Dryaa Pruae AA-A h133", 2, true, "Dryaa Pruae GG-Y e5180", (decimal?)-2197.53125, (decimal?)-1186.40625, (decimal?)20979.34375, (int)100 )); + AllOfThem.Add(new Nebula( 10008, Nebula.NebulaType.Standard, "Dryaa Pruae AA-A h157", 2, true, "Dryaa Pruae BG-X d1-1087", (decimal?)-2516.53125, (decimal?)-966.15625, (decimal?)20884.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10009, Nebula.NebulaType.Standard, "Dryi Aoc AA-A h60", 2, true, "Dryi Aoc CH-C d13-218", (decimal?)3187.53125, (decimal?)392.34375, (decimal?)19299.8125, (int)100 )); + AllOfThem.Add(new Nebula( 10010, Nebula.NebulaType.Standard, "Eor Auscs AA-A h18", 2, true, "Eor Auscs XV-K d9-2074", (decimal?)3283.5625, (decimal?)1065.75, (decimal?)20290.78125, (int)100 )); + AllOfThem.Add(new Nebula( 10011, Nebula.NebulaType.Standard, "Eorl Auwsy AA-A h72", 2, true, "Eorl Auwsy WB-V a114-1", (decimal?)4935.3125, (decimal?)177.75, (decimal?)20645.59375, (int)100 )); + AllOfThem.Add(new Nebula( 10012, Nebula.NebulaType.Standard, "Eorm Phyloi AA-A h13", 2, true, "Eorm Phyloi OY-Z d37", (decimal?)6548.3125, (decimal?)2042.625, (decimal?)27246.28125, (int)100 )); + AllOfThem.Add(new Nebula( 10013, Nebula.NebulaType.Standard, "Hypuae Scrua AA-A h693", 2, true, "Hypuae Scrua FL-W d2-90", (decimal?)825.09375, (decimal?)2023.78125, (decimal?)22254.09375, (int)100 )); + AllOfThem.Add(new Nebula( 10014, Nebula.NebulaType.Standard, "Mylaifai AA-A h528", 2, true, "Mylaifai CN-C b45-44", (decimal?)-608.0625, (decimal?)-340.40625, (decimal?)19105.90625, (int)100 )); + AllOfThem.Add(new Nebula( 10015, Nebula.NebulaType.Standard, "Pheia Auscs AA-A h23", 2, true, "Pheia Auscs RO-G d11-83", (decimal?)8676.6875, (decimal?)768.28125, (decimal?)26845.78125, (int)100 )); + AllOfThem.Add(new Nebula( 10016, Nebula.NebulaType.Standard, "Scheau Prao AA-A h401", 2, true, "Scheau Prao XF-E d12-1389", (decimal?)2005.34375, (decimal?)-816.03125, (decimal?)25631.6875, (int)100 )); + AllOfThem.Add(new Nebula( 10017, Nebula.NebulaType.Standard, "Shrogaae AA-A h78", 2, true, "Shrogaae LB-C c14-1067", (decimal?)4958.21875, (decimal?)507.6875, (decimal?)21307.96875, (int)100 )); + AllOfThem.Add(new Nebula( 20038, Nebula.NebulaType.Planetary, "Agnainks DB-O e6-1974", 2, true, "Agnainks DB-O e6-1974", (decimal?)-1679.375, (decimal?)-936.59375, (decimal?)23162.75, (int)10 )); + AllOfThem.Add(new Nebula( 20039, Nebula.NebulaType.Planetary, "Agnainks DB-W e2-1998", 2, true, "Agnainks DB-W e2-1998", (decimal?)-1714.71875, (decimal?)-117.0625, (decimal?)22545.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20040, Nebula.NebulaType.Planetary, "Agnainks FR-N e6-1202", 2, true, "Agnainks FR-N e6-1202", (decimal?)-2090.875, (decimal?)-1237.03125, (decimal?)23117.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20041, Nebula.NebulaType.Planetary, "Agnainks LC-V e2-3268", 2, true, "Agnainks LC-V e2-3268", (decimal?)-2123.21875, (decimal?)-903.90625, (decimal?)22534.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20042, Nebula.NebulaType.Planetary, "Agnainks PD-B e444", 2, true, "Agnainks PD-B e444", (decimal?)-2364.15625, (decimal?)-231.5, (decimal?)22132.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20043, Nebula.NebulaType.Planetary, "Agnainks RY-A e2542", 2, true, "Agnainks RY-A e2542", (decimal?)-2312.03125, (decimal?)-490.125, (decimal?)22032.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20044, Nebula.NebulaType.Planetary, "Agnainks SO-Z e7536", 2, true, "Agnainks SO-Z e7536", (decimal?)-2266.625, (decimal?)-90.5625, (decimal?)22138.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20045, Nebula.NebulaType.Planetary, "Agnainks TY-A e4340", 2, true, "Agnainks TY-A e4340", (decimal?)-2079.875, (decimal?)-481.46875, (decimal?)22113.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20046, Nebula.NebulaType.Planetary, "Agnainks WO-Z e425", 2, true, "Agnainks WO-Z e425", (decimal?)-1589.40625, (decimal?)-173.59375, (decimal?)22268.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20047, Nebula.NebulaType.Planetary, "Agnainks XJ-R e4-4478", 2, true, "Agnainks XJ-R e4-4478", (decimal?)-1732.78125, (decimal?)-1106.84375, (decimal?)22780.375, (int)10 )); + AllOfThem.Add(new Nebula( 20048, Nebula.NebulaType.Planetary, "Agnainks ZZ-Y e634", 2, true, "Agnainks ZZ-Y e634", (decimal?)-2015.3125, (decimal?)-538.09375, (decimal?)22247.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20067, Nebula.NebulaType.Planetary, "Agnairy JH-U e3-2113", 2, true, "Agnairy JH-U e3-2113", (decimal?)-2713.65625, (decimal?)-77.03125, (decimal?)22617.5, (int)10 )); + AllOfThem.Add(new Nebula( 20139, Nebula.NebulaType.Planetary, "Aishaism LS-T e3-8", 2, true, "Aishaism LS-T e3-8", (decimal?)6856.96875, (decimal?)694.40625, (decimal?)34163.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20142, Nebula.NebulaType.Planetary, "Athaihn AW-V e2-424", 2, true, "Athaihn AW-V e2-424", (decimal?)1235.03125, (decimal?)-280.8125, (decimal?)22598.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20143, Nebula.NebulaType.Planetary, "Athaihn CK-A e5322", 2, true, "Athaihn CK-A e5322", (decimal?)2273.8125, (decimal?)-892.03125, (decimal?)22047.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20144, Nebula.NebulaType.Planetary, "Athaihn DB-X e1-5971", 2, true, "Athaihn DB-X e1-5971", (decimal?)1432.46875, (decimal?)-734.875, (decimal?)22392, (int)10 )); + AllOfThem.Add(new Nebula( 20145, Nebula.NebulaType.Planetary, "Athaihn EV-Y e431", 2, true, "Athaihn EV-Y e431", (decimal?)2230.21875, (decimal?)-727.09375, (decimal?)22146.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20146, Nebula.NebulaType.Planetary, "Athaihn EV-Y e5143", 2, true, "Athaihn EV-Y e5143", (decimal?)2332.875, (decimal?)-739.78125, (decimal?)22207.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20147, Nebula.NebulaType.Planetary, "Athaihn FG-X e1-9243", 2, true, "Athaihn FG-X e1-9243", (decimal?)2153.125, (decimal?)-593.875, (decimal?)22429.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20148, Nebula.NebulaType.Planetary, "Athaihn HH-V e2-8388", 2, true, "Athaihn HH-V e2-8388", (decimal?)1514.25, (decimal?)-723.96875, (decimal?)22608.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20149, Nebula.NebulaType.Planetary, "Athaihn IH-V e2-3460", 2, true, "Athaihn IH-V e2-3460", (decimal?)1606.4375, (decimal?)-762.03125, (decimal?)22554.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20150, Nebula.NebulaType.Planetary, "Athaihn LI-S e4-887", 2, true, "Athaihn LI-S e4-887", (decimal?)1833.96875, (decimal?)-243.5625, (decimal?)22863.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20151, Nebula.NebulaType.Planetary, "Athaihn NH-V e2-4954", 2, true, "Athaihn NH-V e2-4954", (decimal?)2363.90625, (decimal?)-820.90625, (decimal?)22539.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20152, Nebula.NebulaType.Planetary, "Athaihn OT-R e4-6954", 2, true, "Athaihn OT-R e4-6954", (decimal?)1362.125, (decimal?)-666.09375, (decimal?)22859.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20153, Nebula.NebulaType.Planetary, "Athaihn PJ-Q e5-746", 2, true, "Athaihn PJ-Q e5-746", (decimal?)1441.53125, (decimal?)-446.71875, (decimal?)23071.25, (int)10 )); + AllOfThem.Add(new Nebula( 20154, Nebula.NebulaType.Planetary, "Athaihn QY-R e4-9676", 2, true, "Athaihn QY-R e4-9676", (decimal?)1924.5625, (decimal?)-527, (decimal?)22897.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20155, Nebula.NebulaType.Planetary, "Athaihn UJ-Q e5-552", 2, true, "Athaihn UJ-Q e5-552", (decimal?)2177.5, (decimal?)-353.15625, (decimal?)23091.875, (int)10 )); + AllOfThem.Add(new Nebula( 20156, Nebula.NebulaType.Planetary, "Athaihn WO-A e9221", 2, true, "Athaihn WO-A e9221", (decimal?)1686.71875, (decimal?)-749.09375, (decimal?)22060.25, (int)10 )); + AllOfThem.Add(new Nebula( 20157, Nebula.NebulaType.Planetary, "Athaip DW-N e6-3063", 2, true, "Athaip DW-N e6-3063", (decimal?)511.84375, (decimal?)-1020.875, (decimal?)23171.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20158, Nebula.NebulaType.Planetary, "Athaip GL-Y e7400", 2, true, "Athaip GL-Y e7400", (decimal?)645.09375, (decimal?)-1103.5625, (decimal?)22250.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20159, Nebula.NebulaType.Planetary, "Athaip PN-T e3-5188", 2, true, "Athaip PN-T e3-5188", (decimal?)812.4375, (decimal?)-749.375, (decimal?)22623.875, (int)10 )); + AllOfThem.Add(new Nebula( 20160, Nebula.NebulaType.Planetary, "Athaip QD-S e4-12", 2, true, "Athaip QD-S e4-12", (decimal?)919.0625, (decimal?)-499.03125, (decimal?)22776, (int)10 )); + AllOfThem.Add(new Nebula( 20161, Nebula.NebulaType.Planetary, "Athaip QN-T e3-2030", 2, true, "Athaip QN-T e3-2030", (decimal?)940.96875, (decimal?)-786.09375, (decimal?)22751.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20162, Nebula.NebulaType.Planetary, "Athaip QN-T e3-8082", 2, true, "Athaip QN-T e3-8082", (decimal?)1000.59375, (decimal?)-766.75, (decimal?)22714.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20163, Nebula.NebulaType.Planetary, "Athaip TY-S e3-5853", 2, true, "Athaip TY-S e3-5853", (decimal?)478.875, (decimal?)-1230.59375, (decimal?)22627.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20164, Nebula.NebulaType.Planetary, "Athaip YU-P e5-8031", 2, true, "Athaip YU-P e5-8031", (decimal?)678.09375, (decimal?)-899.1875, (decimal?)23054.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20165, Nebula.NebulaType.Planetary, "Athaip ZP-P e5-6688", 2, true, "Athaip ZP-P e5-6688", (decimal?)426.40625, (decimal?)-1091.9375, (decimal?)22967.625, (int)10 )); + AllOfThem.Add(new Nebula( 20172, Nebula.NebulaType.Planetary, "Athairk BQ-Y e2099", 2, true, "Athairk BQ-Y e2099", (decimal?)2730.21875, (decimal?)-886.03125, (decimal?)22154.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20173, Nebula.NebulaType.Planetary, "Athairk DG-O e6-6528", 2, true, "Athairk DG-O e6-6528", (decimal?)3761, (decimal?)-705.625, (decimal?)23159.375, (int)10 )); + AllOfThem.Add(new Nebula( 20174, Nebula.NebulaType.Planetary, "Athairk DG-O e6-8226", 2, true, "Athairk DG-O e6-8226", (decimal?)3666.46875, (decimal?)-786.21875, (decimal?)23199.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20175, Nebula.NebulaType.Planetary, "Athairk EC-U e3-186", 2, true, "Athairk EC-U e3-186", (decimal?)2627.25, (decimal?)-338.9375, (decimal?)22748.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20176, Nebula.NebulaType.Planetary, "Athairk HC-U e3-1709", 2, true, "Athairk HC-U e3-1709", (decimal?)3077.09375, (decimal?)-250.125, (decimal?)22679.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20177, Nebula.NebulaType.Planetary, "Athairk JB-X e1-1309", 2, true, "Athairk JB-X e1-1309", (decimal?)3736.96875, (decimal?)-807.125, (decimal?)22419.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20178, Nebula.NebulaType.Planetary, "Athairk MH-V e2-1078", 2, true, "Athairk MH-V e2-1078", (decimal?)3560.875, (decimal?)-760.4375, (decimal?)22557.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20179, Nebula.NebulaType.Planetary, "Athairk PN-T e3-3267", 2, true, "Athairk PN-T e3-3267", (decimal?)3446.28125, (decimal?)-820.8125, (decimal?)22617.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20180, Nebula.NebulaType.Planetary, "Athairk TZ-P e5-10496", 2, true, "Athairk TZ-P e5-10496", (decimal?)2731.1875, (decimal?)-810.09375, (decimal?)23012, (int)10 )); + AllOfThem.Add(new Nebula( 20184, Nebula.NebulaType.Planetary, "Aunair AQ-P e5-2234", 2, true, "Aunair AQ-P e5-2234", (decimal?)-619.125, (decimal?)1562.65625, (decimal?)21686.25, (int)10 )); + AllOfThem.Add(new Nebula( 20185, Nebula.NebulaType.Planetary, "Aunair BB-O e6-1382", 2, true, "Aunair BB-O e6-1382", (decimal?)-848.0625, (decimal?)1722.21875, (decimal?)21904.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20186, Nebula.NebulaType.Planetary, "Aunair MI-S e4-126", 2, true, "Aunair MI-S e4-126", (decimal?)-622.6875, (decimal?)2347.96875, (decimal?)21580.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20187, Nebula.NebulaType.Planetary, "Aunairm MH-V e2-658", 2, true, "Aunairm MH-V e2-658", (decimal?)999.90625, (decimal?)1773.34375, (decimal?)21223.125, (int)10 )); + AllOfThem.Add(new Nebula( 20188, Nebula.NebulaType.Planetary, "Aunairm VJ-R e4-2411", 2, true, "Aunairm VJ-R e4-2411", (decimal?)431.4375, (decimal?)1484.8125, (decimal?)21605.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20191, Nebula.NebulaType.Planetary, "Baukaae AB-O e6-497", 2, true, "Baukaae AB-O e6-497", (decimal?)4252.5, (decimal?)315.34375, (decimal?)29584.25, (int)10 )); + AllOfThem.Add(new Nebula( 20192, Nebula.NebulaType.Planetary, "Baukaae BG-O e6-4362", 2, true, "Baukaae BG-O e6-4362", (decimal?)4707.875, (decimal?)589.3125, (decimal?)29634.625, (int)10 )); + AllOfThem.Add(new Nebula( 20193, Nebula.NebulaType.Planetary, "Baukaae BG-O e6-8605", 2, true, "Baukaae BG-O e6-8605", (decimal?)4685.75, (decimal?)553.03125, (decimal?)29524.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20194, Nebula.NebulaType.Planetary, "Baukaae GW-W e1-4352", 2, true, "Baukaae GW-W e1-4352", (decimal?)4112.71875, (decimal?)296.5, (decimal?)28728.5, (int)10 )); + AllOfThem.Add(new Nebula( 20195, Nebula.NebulaType.Planetary, "Baukaae HG-X e1-1397", 2, true, "Baukaae HG-X e1-1397", (decimal?)4901.65625, (decimal?)659.375, (decimal?)28784.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20196, Nebula.NebulaType.Planetary, "Baukaae JR-V e2-1321", 2, true, "Baukaae JR-V e2-1321", (decimal?)5014.53125, (decimal?)928.46875, (decimal?)28957.5, (int)10 )); + AllOfThem.Add(new Nebula( 20197, Nebula.NebulaType.Planetary, "Baukaae NX-U e2-3870", 2, true, "Baukaae NX-U e2-3870", (decimal?)4257.59375, (decimal?)276.8125, (decimal?)28872.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20198, Nebula.NebulaType.Planetary, "Baukaae OC-V e2-7688", 2, true, "Baukaae OC-V e2-7688", (decimal?)4867.71875, (decimal?)384.84375, (decimal?)28929.25, (int)10 )); + AllOfThem.Add(new Nebula( 20199, Nebula.NebulaType.Planetary, "Baukaae TT-A e653", 2, true, "Baukaae TT-A e653", (decimal?)4049.875, (decimal?)769.03125, (decimal?)28534.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20200, Nebula.NebulaType.Planetary, "Baukeau BA-A e6935", 2, true, "Baukeau BA-A e6935", (decimal?)5281.90625, (decimal?)47.09375, (decimal?)28426.875, (int)10 )); + AllOfThem.Add(new Nebula( 20201, Nebula.NebulaType.Planetary, "Baukeau EL-P e5-4369", 2, true, "Baukeau EL-P e5-4369", (decimal?)6086.71875, (decimal?)126.8125, (decimal?)29472.625, (int)10 )); + AllOfThem.Add(new Nebula( 20202, Nebula.NebulaType.Planetary, "Baukeau FA-A e8876", 2, true, "Baukeau FA-A e8876", (decimal?)5969.46875, (decimal?)123.21875, (decimal?)28428.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20203, Nebula.NebulaType.Planetary, "Baukeau FV-Y e6523", 2, true, "Baukeau FV-Y e6523", (decimal?)6294.09375, (decimal?)607.625, (decimal?)28649.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20204, Nebula.NebulaType.Planetary, "Baukeau GH-V e2-2506", 2, true, "Baukeau GH-V e2-2506", (decimal?)5206.21875, (decimal?)497.46875, (decimal?)28906.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20205, Nebula.NebulaType.Planetary, "Baukeau GL-Y e7617", 2, true, "Baukeau GL-Y e7617", (decimal?)5749.125, (decimal?)293.53125, (decimal?)28657.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20206, Nebula.NebulaType.Planetary, "Baukeau HW-V e2-1072", 2, true, "Baukeau HW-V e2-1072", (decimal?)6289.25, (decimal?)989.375, (decimal?)28948.25, (int)10 )); + AllOfThem.Add(new Nebula( 20207, Nebula.NebulaType.Planetary, "Baukeau IC-V e2-1573", 2, true, "Baukeau IC-V e2-1573", (decimal?)5089.4375, (decimal?)345.3125, (decimal?)28987.125, (int)10 )); + AllOfThem.Add(new Nebula( 20208, Nebula.NebulaType.Planetary, "Baukeau JW-W e1-9803", 2, true, "Baukeau JW-W e1-9803", (decimal?)5984.3125, (decimal?)438.53125, (decimal?)28761.125, (int)10 )); + AllOfThem.Add(new Nebula( 20209, Nebula.NebulaType.Planetary, "Baukeau MC-V e2-3833", 2, true, "Baukeau MC-V e2-3833", (decimal?)5802.125, (decimal?)297.1875, (decimal?)28967.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20210, Nebula.NebulaType.Planetary, "Baukeau OC-V e2-6922", 2, true, "Baukeau OC-V e2-6922", (decimal?)6068.625, (decimal?)371.9375, (decimal?)28913.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20211, Nebula.NebulaType.Planetary, "Baukeau QD-S e4-325", 2, true, "Baukeau QD-S e4-325", (decimal?)6058.65625, (decimal?)797.09375, (decimal?)29311.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20212, Nebula.NebulaType.Planetary, "Baukeau VD-T e3-2839", 2, true, "Baukeau VD-T e3-2839", (decimal?)6179.84375, (decimal?)271.78125, (decimal?)29137.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20213, Nebula.NebulaType.Planetary, "Baukeau WP-X e1-2123", 2, true, "Baukeau WP-X e1-2123", (decimal?)5190.90625, (decimal?)1061, (decimal?)28772.375, (int)10 )); + AllOfThem.Add(new Nebula( 20214, Nebula.NebulaType.Planetary, "Baukeau WP-X e1-5169", 2, true, "Baukeau WP-X e1-5169", (decimal?)5129.625, (decimal?)968.15625, (decimal?)28737.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20215, Nebula.NebulaType.Planetary, "Baukeau XE-Q e5-3536", 2, true, "Baukeau XE-Q e5-3536", (decimal?)6246.9375, (decimal?)617.40625, (decimal?)29470.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20216, Nebula.NebulaType.Planetary, "Baukeau ZJ-A e2165", 2, true, "Baukeau ZJ-A e2165", (decimal?)5669.03125, (decimal?)388.21875, (decimal?)28496.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20217, Nebula.NebulaType.Planetary, "Baukeau ZJ-A e8007", 2, true, "Baukeau ZJ-A e8007", (decimal?)5577.96875, (decimal?)342.90625, (decimal?)28420.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20218, Nebula.NebulaType.Planetary, "Baukeau ZZ-Y e4088", 2, true, "Baukeau ZZ-Y e4088", (decimal?)5587.875, (decimal?)722.875, (decimal?)28634.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20219, Nebula.NebulaType.Planetary, "Baukeau ZZ-Y e6751", 2, true, "Baukeau ZZ-Y e6751", (decimal?)5559.78125, (decimal?)630.34375, (decimal?)28571.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20220, Nebula.NebulaType.Planetary, "Baukee AB-O e6-3726", 2, true, "Baukee AB-O e6-3726", (decimal?)6808.1875, (decimal?)357.25, (decimal?)29628.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20221, Nebula.NebulaType.Planetary, "Baukee AV-Y e3634", 2, true, "Baukee AV-Y e3634", (decimal?)6672.78125, (decimal?)533.0625, (decimal?)28645.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20222, Nebula.NebulaType.Planetary, "Baukee EA-A e761", 2, true, "Baukee EA-A e761", (decimal?)7087.03125, (decimal?)52.625, (decimal?)28440.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20223, Nebula.NebulaType.Planetary, "Baukee FB-X e1-2545", 2, true, "Baukee FB-X e1-2545", (decimal?)6824.6875, (decimal?)498.78125, (decimal?)28782.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20224, Nebula.NebulaType.Planetary, "Baukee FL-P e5-142", 2, true, "Baukee FL-P e5-142", (decimal?)7511.65625, (decimal?)25.875, (decimal?)29440.875, (int)10 )); + AllOfThem.Add(new Nebula( 20225, Nebula.NebulaType.Planetary, "Baukee FR-N e6-6020", 2, true, "Baukee FR-N e6-6020", (decimal?)6888.4375, (decimal?)22.90625, (decimal?)29606.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20226, Nebula.NebulaType.Planetary, "Baukee KX-U e2-7195", 2, true, "Baukee KX-U e2-7195", (decimal?)6454.03125, (decimal?)198.1875, (decimal?)28907.75, (int)10 )); + AllOfThem.Add(new Nebula( 20227, Nebula.NebulaType.Planetary, "Baukee PS-U e2-1541", 2, true, "Baukee PS-U e2-1541", (decimal?)6848.90625, (decimal?)-11.21875, (decimal?)28911.875, (int)10 )); + AllOfThem.Add(new Nebula( 20228, Nebula.NebulaType.Planetary, "Baukee WY-S e3-6952", 2, true, "Baukee WY-S e3-6952", (decimal?)7299.40625, (decimal?)25.96875, (decimal?)29071.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20229, Nebula.NebulaType.Planetary, "Baukee XJ-A e9428", 2, true, "Baukee XJ-A e9428", (decimal?)6516.65625, (decimal?)447, (decimal?)28394.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20230, Nebula.NebulaType.Planetary, "Baukee XY-A e2862", 2, true, "Baukee XY-A e2862", (decimal?)7590.625, (decimal?)913.25, (decimal?)28425.375, (int)10 )); + AllOfThem.Add(new Nebula( 20231, Nebula.NebulaType.Planetary, "Baukee ZA-O e6-5584", 2, true, "Baukee ZA-O e6-5584", (decimal?)6645.84375, (decimal?)414.46875, (decimal?)29607.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20235, Nebula.NebulaType.Planetary, "Baukoa HG-X e1-1630", 2, true, "Baukoa HG-X e1-1630", (decimal?)3688.75, (decimal?)642.09375, (decimal?)28805.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20239, Nebula.NebulaType.Planetary, "Baukoa TS-U e2-1830", 2, true, "Baukoa TS-U e2-1830", (decimal?)3640.96875, (decimal?)19.3125, (decimal?)28925.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20240, Nebula.NebulaType.Planetary, "Baukoa TY-R e4-9862", 2, true, "Baukoa TY-R e4-9862", (decimal?)3654.1875, (decimal?)708.75, (decimal?)29277.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20241, Nebula.NebulaType.Planetary, "Baukoa UT-R e4-6433", 2, true, "Baukoa UT-R e4-6433", (decimal?)3562, (decimal?)492.25, (decimal?)29213.5, (int)10 )); + AllOfThem.Add(new Nebula( 20242, Nebula.NebulaType.Planetary, "Baukoa VE-Q e5-2946", 2, true, "Baukoa VE-Q e5-2946", (decimal?)3312.125, (decimal?)697.59375, (decimal?)29419.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20243, Nebula.NebulaType.Planetary, "Baukoa VE-Q e5-5769", 2, true, "Baukoa VE-Q e5-5769", (decimal?)3367, (decimal?)722.8125, (decimal?)29425.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20244, Nebula.NebulaType.Planetary, "Baukoa WO-R e4-1540", 2, true, "Baukoa WO-R e4-1540", (decimal?)3591.5625, (decimal?)318.78125, (decimal?)29266.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20246, Nebula.NebulaType.Planetary, "Baukoa YU-P e5-1741", 2, true, "Baukoa YU-P e5-1741", (decimal?)3223.90625, (decimal?)387.71875, (decimal?)29376.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20250, Nebula.NebulaType.Planetary, "Bauloe FM-V e2-113", 2, true, "Bauloe FM-V e2-113", (decimal?)7885.46875, (decimal?)633.3125, (decimal?)28911.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20251, Nebula.NebulaType.Planetary, "Bauloe PX-U e2-52", 2, true, "Bauloe PX-U e2-52", (decimal?)8417.03125, (decimal?)162.28125, (decimal?)28935.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20252, Nebula.NebulaType.Planetary, "Bauloe QD-T e3-354", 2, true, "Bauloe QD-T e3-354", (decimal?)7988.25, (decimal?)278.1875, (decimal?)29078.125, (int)10 )); + AllOfThem.Add(new Nebula( 20253, Nebula.NebulaType.Planetary, "Bauloe QY-R e4-645", 2, true, "Bauloe QY-R e4-645", (decimal?)8353.34375, (decimal?)773.0625, (decimal?)29186.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20432, Nebula.NebulaType.Planetary, "Braisaa AG-X e1-8296", 2, true, "Braisaa AG-X e1-8296", (decimal?)5114.65625, (decimal?)-650, (decimal?)31349.625, (int)10 )); + AllOfThem.Add(new Nebula( 20433, Nebula.NebulaType.Planetary, "Braisaa FH-U e3-3809", 2, true, "Braisaa FH-U e3-3809", (decimal?)5608.78125, (decimal?)-133.9375, (decimal?)31721.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20434, Nebula.NebulaType.Planetary, "Braisaa GB-X e1-4759", 2, true, "Braisaa GB-X e1-4759", (decimal?)5827.5625, (decimal?)-723.5, (decimal?)31323.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20435, Nebula.NebulaType.Planetary, "Braisaa GN-S e4-4767", 2, true, "Braisaa GN-S e4-4767", (decimal?)5113.4375, (decimal?)-164.3125, (decimal?)31813.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20436, Nebula.NebulaType.Planetary, "Braisaa HH-V e2-1900", 2, true, "Braisaa HH-V e2-1900", (decimal?)5332.09375, (decimal?)-796.96875, (decimal?)31563.75, (int)10 )); + AllOfThem.Add(new Nebula( 20437, Nebula.NebulaType.Planetary, "Braisaa HW-V e2-1207", 2, true, "Braisaa HW-V e2-1207", (decimal?)6185, (decimal?)-318.25, (decimal?)31516.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20438, Nebula.NebulaType.Planetary, "Braisaa LD-S e4-7117", 2, true, "Braisaa LD-S e4-7117", (decimal?)5296.46875, (decimal?)-424.84375, (decimal?)31738.75, (int)10 )); + AllOfThem.Add(new Nebula( 20439, Nebula.NebulaType.Planetary, "Braisaa RD-B e8663", 2, true, "Braisaa RD-B e8663", (decimal?)5546.875, (decimal?)-228.0625, (decimal?)31078.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20440, Nebula.NebulaType.Planetary, "Braisaa RN-T e3-3679", 2, true, "Braisaa RN-T e3-3679", (decimal?)6204.125, (decimal?)-783.625, (decimal?)31701.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20441, Nebula.NebulaType.Planetary, "Braisaa SP-O e6-7170", 2, true, "Braisaa SP-O e6-7170", (decimal?)5181.34375, (decimal?)-382.46875, (decimal?)32214.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20442, Nebula.NebulaType.Planetary, "Braisaa VE-Q e5-5415", 2, true, "Braisaa VE-Q e5-5415", (decimal?)5969.1875, (decimal?)-617.21875, (decimal?)32010.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20462, Nebula.NebulaType.Planetary, "Braisoea AP-A e5148", 2, true, "Braisoea AP-A e5148", (decimal?)3526.6875, (decimal?)-701.03125, (decimal?)31003.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20469, Nebula.NebulaType.Planetary, "Braisoi BW-V e2-1811", 2, true, "Braisoi BW-V e2-1811", (decimal?)4048.28125, (decimal?)-264.625, (decimal?)31508.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20470, Nebula.NebulaType.Planetary, "Braisoi CB-W e2-3924", 2, true, "Braisoi CB-W e2-3924", (decimal?)4558.15625, (decimal?)-162.125, (decimal?)31501.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20471, Nebula.NebulaType.Planetary, "Braisoi DB-W e2-7454", 2, true, "Braisoi DB-W e2-7454", (decimal?)4623.25, (decimal?)-63.09375, (decimal?)31460.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20472, Nebula.NebulaType.Planetary, "Braisoi DR-V e2-399", 2, true, "Braisoi DR-V e2-399", (decimal?)3980.375, (decimal?)-455.25, (decimal?)31487.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20473, Nebula.NebulaType.Planetary, "Braisoi DV-Y e1110", 2, true, "Braisoi DV-Y e1110", (decimal?)4611.09375, (decimal?)-705.71875, (decimal?)31135.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20474, Nebula.NebulaType.Planetary, "Braisoi FB-W e2-2313", 2, true, "Braisoi FB-W e2-2313", (decimal?)5007.03125, (decimal?)-126, (decimal?)31500.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20477, Nebula.NebulaType.Planetary, "Braisoi NX-T e3-6547", 2, true, "Braisoi NX-T e3-6547", (decimal?)4898.59375, (decimal?)-486.21875, (decimal?)31652.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20479, Nebula.NebulaType.Planetary, "Braisoi SD-B e5884", 2, true, "Braisoi SD-B e5884", (decimal?)4426.21875, (decimal?)-290.09375, (decimal?)31009.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20481, Nebula.NebulaType.Planetary, "Braisua FH-U e3-2700", 2, true, "Braisua FH-U e3-2700", (decimal?)6838.21875, (decimal?)-33.65625, (decimal?)31632.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20562, Nebula.NebulaType.Planetary, "Byoomeae BL-X e1-1128", 2, true, "Byoomeae BL-X e1-1128", (decimal?)3017.375, (decimal?)-456.84375, (decimal?)24970.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20563, Nebula.NebulaType.Planetary, "Byoomeae FB-O e6-4638", 2, true, "Byoomeae FB-O e6-4638", (decimal?)3696.96875, (decimal?)-920.75, (decimal?)25722.625, (int)10 )); + AllOfThem.Add(new Nebula( 20564, Nebula.NebulaType.Planetary, "Byoomeae FB-O e6-8508", 2, true, "Byoomeae FB-O e6-8508", (decimal?)3755.625, (decimal?)-920.625, (decimal?)25667.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20565, Nebula.NebulaType.Planetary, "Byoomeae HH-U e3-5952", 2, true, "Byoomeae HH-U e3-5952", (decimal?)3340.78125, (decimal?)-104.125, (decimal?)25211.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20566, Nebula.NebulaType.Planetary, "Byoomeae IC-V e2-6834", 2, true, "Byoomeae IC-V e2-6834", (decimal?)2612.34375, (decimal?)-936.90625, (decimal?)25140.125, (int)10 )); + AllOfThem.Add(new Nebula( 20567, Nebula.NebulaType.Planetary, "Byoomeae JS-T e3-1304", 2, true, "Byoomeae JS-T e3-1304", (decimal?)2671.3125, (decimal?)-600.34375, (decimal?)25273.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20568, Nebula.NebulaType.Planetary, "Byoomeae LD-S e4-10275", 2, true, "Byoomeae LD-S e4-10275", (decimal?)2769.15625, (decimal?)-469.71875, (decimal?)25437.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20569, Nebula.NebulaType.Planetary, "Byoomeae MN-S e4-5444", 2, true, "Byoomeae MN-S e4-5444", (decimal?)3458.65625, (decimal?)-99.125, (decimal?)25373.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20570, Nebula.NebulaType.Planetary, "Byoomeae OT-R e4-1257", 2, true, "Byoomeae OT-R e4-1257", (decimal?)2651.28125, (decimal?)-789.875, (decimal?)25368, (int)10 )); + AllOfThem.Add(new Nebula( 20571, Nebula.NebulaType.Planetary, "Byoomeae PN-T e3-7021", 2, true, "Byoomeae PN-T e3-7021", (decimal?)3442.03125, (decimal?)-751.90625, (decimal?)25229.25, (int)10 )); + AllOfThem.Add(new Nebula( 20572, Nebula.NebulaType.Planetary, "Byoomeae PT-Q e5-4731", 2, true, "Byoomeae PT-Q e5-4731", (decimal?)3397.09375, (decimal?)-172.375, (decimal?)25624.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20573, Nebula.NebulaType.Planetary, "Byoomeae PT-R e4-5260", 2, true, "Byoomeae PT-R e4-5260", (decimal?)2799.96875, (decimal?)-724.75, (decimal?)25425.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20574, Nebula.NebulaType.Planetary, "Byoomeae PT-R e4-7140", 2, true, "Byoomeae PT-R e4-7140", (decimal?)2688.25, (decimal?)-767.46875, (decimal?)25469.875, (int)10 )); + AllOfThem.Add(new Nebula( 20575, Nebula.NebulaType.Planetary, "Byoomeae SJ-Q e5-2829", 2, true, "Byoomeae SJ-Q e5-2829", (decimal?)3204.0625, (decimal?)-491.8125, (decimal?)25519.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20576, Nebula.NebulaType.Planetary, "Byoomeae WP-O e6-2016", 2, true, "Byoomeae WP-O e6-2016", (decimal?)3258.90625, (decimal?)-493.6875, (decimal?)25793.5, (int)10 )); + AllOfThem.Add(new Nebula( 20577, Nebula.NebulaType.Planetary, "Byoomeae XO-R e4-6788", 2, true, "Byoomeae XO-R e4-6788", (decimal?)3749.3125, (decimal?)-894.3125, (decimal?)25492.875, (int)10 )); + AllOfThem.Add(new Nebula( 20578, Nebula.NebulaType.Planetary, "Byoomeae YE-Z e8774", 2, true, "Byoomeae YE-Z e8774", (decimal?)3192.46875, (decimal?)-454.9375, (decimal?)24734.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20626, Nebula.NebulaType.Planetary, "Byoomu AG-O e6-8888", 2, true, "Byoomu AG-O e6-8888", (decimal?)4502.34375, (decimal?)-755.0625, (decimal?)25689.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20627, Nebula.NebulaType.Planetary, "Byoomu BA-Z e6554", 2, true, "Byoomu BA-Z e6554", (decimal?)4597.40625, (decimal?)-570.21875, (decimal?)24787.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20628, Nebula.NebulaType.Planetary, "Byoomu JG-Y e5307", 2, true, "Byoomu JG-Y e5307", (decimal?)4669.59375, (decimal?)-1291.15625, (decimal?)24725.25, (int)10 )); + AllOfThem.Add(new Nebula( 20629, Nebula.NebulaType.Planetary, "Byoomu LI-S e4-1049", 2, true, "Byoomu LI-S e4-1049", (decimal?)4403.375, (decimal?)-187.5625, (decimal?)25455.625, (int)10 )); + AllOfThem.Add(new Nebula( 20630, Nebula.NebulaType.Planetary, "Byoomu MH-V e2-3953", 2, true, "Byoomu MH-V e2-3953", (decimal?)4891.59375, (decimal?)-797.4375, (decimal?)25167.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20631, Nebula.NebulaType.Planetary, "Byoomu OI-T e3-3320", 2, true, "Byoomu OI-T e3-3320", (decimal?)4219.4375, (decimal?)-860.90625, (decimal?)25326, (int)10 )); + AllOfThem.Add(new Nebula( 20632, Nebula.NebulaType.Planetary, "Byoomu PS-T e3-7638", 2, true, "Byoomu PS-T e3-7638", (decimal?)4910.96875, (decimal?)-554.65625, (decimal?)25330.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20633, Nebula.NebulaType.Planetary, "Byoomu QE-Q e5-338", 2, true, "Byoomu QE-Q e5-338", (decimal?)3868.46875, (decimal?)-508.4375, (decimal?)25592.5, (int)10 )); + AllOfThem.Add(new Nebula( 20634, Nebula.NebulaType.Planetary, "Byoomu ST-A e6887", 2, true, "Byoomu ST-A e6887", (decimal?)3832.53125, (decimal?)-592.125, (decimal?)24646.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20635, Nebula.NebulaType.Planetary, "Byoomu TI-T e3-1685", 2, true, "Byoomu TI-T e3-1685", (decimal?)4899.875, (decimal?)-904.25, (decimal?)25267.375, (int)10 )); + AllOfThem.Add(new Nebula( 20636, Nebula.NebulaType.Planetary, "Byoomu YU-Y e185", 2, true, "Byoomu YU-Y e185", (decimal?)3925.15625, (decimal?)-679.25, (decimal?)24812.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20698, Nebula.NebulaType.Planetary, "Choomee OI-B e11042", 2, true, "Choomee OI-B e11042", (decimal?)-2277.46875, (decimal?)1217.59375, (decimal?)24574.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20724, Nebula.NebulaType.Planetary, "Chraisi HH-U e3-470", 2, true, "Chraisi HH-U e3-470", (decimal?)4593.65625, (decimal?)-1383.6875, (decimal?)31702.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20730, Nebula.NebulaType.Planetary, "Cleeqai BG-O e6-7531", 2, true, "Cleeqai BG-O e6-7531", (decimal?)5965.40625, (decimal?)498.6875, (decimal?)25750.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20731, Nebula.NebulaType.Planetary, "Cleeqai DB-X e1-10041", 2, true, "Cleeqai DB-X e1-10041", (decimal?)5260.375, (decimal?)588.90625, (decimal?)24942.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20732, Nebula.NebulaType.Planetary, "Cleeqai FF-A e6259", 2, true, "Cleeqai FF-A e6259", (decimal?)6266.84375, (decimal?)161.78125, (decimal?)24662.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20733, Nebula.NebulaType.Planetary, "Cleeqai GM-V e2-1006", 2, true, "Cleeqai GM-V e2-1006", (decimal?)5413.15625, (decimal?)738.0625, (decimal?)25046.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20734, Nebula.NebulaType.Planetary, "Cleeqai HM-V e2-5051", 2, true, "Cleeqai HM-V e2-5051", (decimal?)5536.71875, (decimal?)712.59375, (decimal?)25168.625, (int)10 )); + AllOfThem.Add(new Nebula( 20735, Nebula.NebulaType.Planetary, "Cleeqai HM-V e2-54", 2, true, "Cleeqai HM-V e2-54", (decimal?)5561.34375, (decimal?)766.28125, (decimal?)25144.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20736, Nebula.NebulaType.Planetary, "Cleeqai HR-V e2-1666", 2, true, "Cleeqai HR-V e2-1666", (decimal?)5947.15625, (decimal?)889.78125, (decimal?)25171.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20737, Nebula.NebulaType.Planetary, "Cleeqai LG-Y e4218", 2, true, "Cleeqai LG-Y e4218", (decimal?)6208.09375, (decimal?)-5.125, (decimal?)24822.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20738, Nebula.NebulaType.Planetary, "Cleeqai MM-W e1-650", 2, true, "Cleeqai MM-W e1-650", (decimal?)5716.75, (decimal?)81.75, (decimal?)24977.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20739, Nebula.NebulaType.Planetary, "Cleeqai PI-S e4-4334", 2, true, "Cleeqai PI-S e4-4334", (decimal?)6298.15625, (decimal?)940.09375, (decimal?)25434.75, (int)10 )); + AllOfThem.Add(new Nebula( 20740, Nebula.NebulaType.Planetary, "Cleeqai SJ-Q e5-1626", 2, true, "Cleeqai SJ-Q e5-1626", (decimal?)5771.71875, (decimal?)919.3125, (decimal?)25618.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20741, Nebula.NebulaType.Planetary, "Cleeqai SO-R e4-1987", 2, true, "Cleeqai SO-R e4-1987", (decimal?)5380.59375, (decimal?)325.125, (decimal?)25463.125, (int)10 )); + AllOfThem.Add(new Nebula( 20742, Nebula.NebulaType.Planetary, "Cleeqai UZ-P e5-9524", 2, true, "Cleeqai UZ-P e5-9524", (decimal?)5408.5625, (decimal?)471.3125, (decimal?)25651.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20743, Nebula.NebulaType.Planetary, "Cleeqai WU-X e1-1934", 2, true, "Cleeqai WU-X e1-1934", (decimal?)5484.09375, (decimal?)1254.21875, (decimal?)24895.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20744, Nebula.NebulaType.Planetary, "Cleeqai XE-Q e5-7468", 2, true, "Cleeqai XE-Q e5-7468", (decimal?)6215.0625, (decimal?)685.96875, (decimal?)25614.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20745, Nebula.NebulaType.Planetary, "Cleeqai YZ-P e5-7316", 2, true, "Cleeqai YZ-P e5-7316", (decimal?)6050.6875, (decimal?)481.5625, (decimal?)25572.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20746, Nebula.NebulaType.Planetary, "Cleeqai YZ-Y e3619", 2, true, "Cleeqai YZ-Y e3619", (decimal?)5446.75, (decimal?)744.0625, (decimal?)24776.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20747, Nebula.NebulaType.Planetary, "Cleeque BL-X e1-9976", 2, true, "Cleeque BL-X e1-9976", (decimal?)4372.84375, (decimal?)837.15625, (decimal?)24995.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20748, Nebula.NebulaType.Planetary, "Cleeque EM-V e2-2721", 2, true, "Cleeque EM-V e2-2721", (decimal?)3813.875, (decimal?)742.71875, (decimal?)25046.625, (int)10 )); + AllOfThem.Add(new Nebula( 20749, Nebula.NebulaType.Planetary, "Cleeque SY-A e7320", 2, true, "Cleeque SY-A e7320", (decimal?)4215.25, (decimal?)799.90625, (decimal?)24541.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20750, Nebula.NebulaType.Planetary, "Cleeque UD-T e3-1740", 2, true, "Cleeque UD-T e3-1740", (decimal?)4888.75, (decimal?)238.875, (decimal?)25265.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20751, Nebula.NebulaType.Planetary, "Cleeque UZ-P e5-2050", 2, true, "Cleeque UZ-P e5-2050", (decimal?)4165.96875, (decimal?)548.59375, (decimal?)25536.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20788, Nebula.NebulaType.Planetary, "Dryaa Bli AL-X e1-1810", 2, true, "Dryaa Bli AL-X e1-1810", (decimal?)8026.96875, (decimal?)-501.125, (decimal?)28843.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20789, Nebula.NebulaType.Planetary, "Dryaa Bli AV-Y e169", 2, true, "Dryaa Bli AV-Y e169", (decimal?)8067.78125, (decimal?)-672.96875, (decimal?)28690.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20790, Nebula.NebulaType.Planetary, "Dryaa Bli AV-Y e6", 2, true, "Dryaa Bli AV-Y e6", (decimal?)7967.15625, (decimal?)-814.46875, (decimal?)28562.125, (int)10 )); + AllOfThem.Add(new Nebula( 20791, Nebula.NebulaType.Planetary, "Dryaa Bli DW-V e2-7", 2, true, "Dryaa Bli DW-V e2-7", (decimal?)8164.25, (decimal?)-288.40625, (decimal?)28980.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20792, Nebula.NebulaType.Planetary, "Dryaa Bli II-S e4-4", 2, true, "Dryaa Bli II-S e4-4", (decimal?)7678.3125, (decimal?)-260.375, (decimal?)29306.625, (int)10 )); + AllOfThem.Add(new Nebula( 20793, Nebula.NebulaType.Planetary, "Dryaa Bli KC-U e3-112", 2, true, "Dryaa Bli KC-U e3-112", (decimal?)8685.46875, (decimal?)-288.40625, (decimal?)29123.75, (int)10 )); + AllOfThem.Add(new Nebula( 20794, Nebula.NebulaType.Planetary, "Dryaa Bli OO-Q e5-188", 2, true, "Dryaa Bli OO-Q e5-188", (decimal?)8058.15625, (decimal?)-334.125, (decimal?)29434.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20795, Nebula.NebulaType.Planetary, "Dryaa Bli TZ-P e5-238", 2, true, "Dryaa Bli TZ-P e5-238", (decimal?)7883.9375, (decimal?)-811.09375, (decimal?)29340.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20823, Nebula.NebulaType.Planetary, "Dryaa Byio SJ-Z e80", 2, true, "Dryaa Byio SJ-Z e80", (decimal?)7634.09375, (decimal?)-200.75, (decimal?)31098.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20825, Nebula.NebulaType.Planetary, "Dryaa Flyi FH-U e3-9159", 2, true, "Dryaa Flyi FH-U e3-9159", (decimal?)454.71875, (decimal?)-108.375, (decimal?)18786, (int)10 )); + AllOfThem.Add(new Nebula( 20826, Nebula.NebulaType.Planetary, "Dryaa Flyi HC-U e3-2700", 2, true, "Dryaa Flyi HC-U e3-2700", (decimal?)548.875, (decimal?)-291.46875, (decimal?)18902.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20829, Nebula.NebulaType.Planetary, "Dryaa Flyi YE-R e4-1009", 2, true, "Dryaa Flyi YE-R e4-1009", (decimal?)711.34375, (decimal?)-1189.09375, (decimal?)19022.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20833, Nebula.NebulaType.Planetary, "Dryaa Flyuae QU-O e6-4738", 2, true, "Dryaa Flyuae QU-O e6-4738", (decimal?)-2612.4375, (decimal?)-254.8125, (decimal?)19313.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20834, Nebula.NebulaType.Planetary, "Dryaa Flyuae SE-Q e5-4599", 2, true, "Dryaa Flyuae SE-Q e5-4599", (decimal?)-2218.59375, (decimal?)-571.15625, (decimal?)19107.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20835, Nebula.NebulaType.Planetary, "Dryaa Flyuae ST-R e4-9136", 2, true, "Dryaa Flyuae ST-R e4-9136", (decimal?)-1922.59375, (decimal?)-793.5625, (decimal?)19009.375, (int)10 )); + AllOfThem.Add(new Nebula( 20837, Nebula.NebulaType.Planetary, "Dryaa Flyuae UT-R e4-3318", 2, true, "Dryaa Flyuae UT-R e4-3318", (decimal?)-1638.125, (decimal?)-748.6875, (decimal?)19009.375, (int)10 )); + AllOfThem.Add(new Nebula( 20838, Nebula.NebulaType.Planetary, "Dryaa Flyuae ZZ-P e5-2843", 2, true, "Dryaa Flyuae ZZ-P e5-2843", (decimal?)-1401.28125, (decimal?)-684.78125, (decimal?)19143.875, (int)10 )); + AllOfThem.Add(new Nebula( 20839, Nebula.NebulaType.Planetary, "Dryaa Pra WJ-Z e286", 2, true, "Dryaa Pra WJ-Z e286", (decimal?)722.375, (decimal?)-1555.4375, (decimal?)20909.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20841, Nebula.NebulaType.Planetary, "Dryaa Pri BF-A e7630", 2, true, "Dryaa Pri BF-A e7630", (decimal?)450.75, (decimal?)-1122.71875, (decimal?)20714.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20842, Nebula.NebulaType.Planetary, "Dryaa Pri KW-W e1-1839", 2, true, "Dryaa Pri KW-W e1-1839", (decimal?)1014.71875, (decimal?)-935.03125, (decimal?)21043.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20843, Nebula.NebulaType.Planetary, "Dryaa Pri PX-U e2-3348", 2, true, "Dryaa Pri PX-U e2-3348", (decimal?)778.875, (decimal?)-1005.25, (decimal?)21229.75, (int)10 )); + AllOfThem.Add(new Nebula( 20844, Nebula.NebulaType.Planetary, "Dryaa Pri PX-U e2-7757", 2, true, "Dryaa Pri PX-U e2-7757", (decimal?)856.90625, (decimal?)-1144.46875, (decimal?)21225.125, (int)10 )); + AllOfThem.Add(new Nebula( 20845, Nebula.NebulaType.Planetary, "Dryaa Pri SD-B e2720", 2, true, "Dryaa Pri SD-B e2720", (decimal?)688.28125, (decimal?)-191.09375, (decimal?)20798.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20846, Nebula.NebulaType.Planetary, "Dryaa Pri TO-Z e1582", 2, true, "Dryaa Pri TO-Z e1582", (decimal?)521.75, (decimal?)-130.78125, (decimal?)20894.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20847, Nebula.NebulaType.Planetary, "Dryaa Pri UD-B e1033", 2, true, "Dryaa Pri UD-B e1033", (decimal?)971.75, (decimal?)-206.71875, (decimal?)20790.25, (int)10 )); + AllOfThem.Add(new Nebula( 20848, Nebula.NebulaType.Planetary, "Dryaa Pri UO-R e4-5146", 2, true, "Dryaa Pri UO-R e4-5146", (decimal?)697.25, (decimal?)-927.625, (decimal?)21575.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20849, Nebula.NebulaType.Planetary, "Dryaa Pri WJ-R e4-3054", 2, true, "Dryaa Pri WJ-R e4-3054", (decimal?)664.96875, (decimal?)-1122.1875, (decimal?)21545.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20850, Nebula.NebulaType.Planetary, "Dryaa Pri WJ-Z e6266", 2, true, "Dryaa Pri WJ-Z e6266", (decimal?)699.6875, (decimal?)-247.40625, (decimal?)20884.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20851, Nebula.NebulaType.Planetary, "Dryaa Pri XY-A e2692", 2, true, "Dryaa Pri XY-A e2692", (decimal?)1107.3125, (decimal?)-495.71875, (decimal?)20796.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20853, Nebula.NebulaType.Planetary, "Dryaa Pruae CB-O e6-1153", 2, true, "Dryaa Pruae CB-O e6-1153", (decimal?)-1931, (decimal?)-953.3125, (decimal?)21923.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20854, Nebula.NebulaType.Planetary, "Dryaa Pruae HW-W e1-9781", 2, true, "Dryaa Pruae HW-W e1-9781", (decimal?)-2036.3125, (decimal?)-882.875, (decimal?)21038.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20855, Nebula.NebulaType.Planetary, "Dryaa Pruae IC-U e3-5189", 2, true, "Dryaa Pruae IC-U e3-5189", (decimal?)-1937.5, (decimal?)-310.78125, (decimal?)21381.875, (int)10 )); + AllOfThem.Add(new Nebula( 20856, Nebula.NebulaType.Planetary, "Dryaa Pruae IC-V e2-2305", 2, true, "Dryaa Pruae IC-V e2-2305", (decimal?)-2485.8125, (decimal?)-940.71875, (decimal?)21290.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20857, Nebula.NebulaType.Planetary, "Dryaa Pruae IH-V e2-4164", 2, true, "Dryaa Pruae IH-V e2-4164", (decimal?)-2179.03125, (decimal?)-757.125, (decimal?)21278.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20858, Nebula.NebulaType.Planetary, "Dryaa Pruae KC-V e2-2494", 2, true, "Dryaa Pruae KC-V e2-2494", (decimal?)-2211.15625, (decimal?)-876.125, (decimal?)21233.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20859, Nebula.NebulaType.Planetary, "Dryaa Pruae KC-V e2-9016", 2, true, "Dryaa Pruae KC-V e2-9016", (decimal?)-2270.9375, (decimal?)-896.125, (decimal?)21284.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20860, Nebula.NebulaType.Planetary, "Dryaa Pruae OI-T e3-3247", 2, true, "Dryaa Pruae OI-T e3-3247", (decimal?)-2173.4375, (decimal?)-901.03125, (decimal?)21367.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20861, Nebula.NebulaType.Planetary, "Dryaa Pruae UZ-P e5-581", 2, true, "Dryaa Pruae UZ-P e5-581", (decimal?)-2267.78125, (decimal?)-697.3125, (decimal?)21800.75, (int)10 )); + AllOfThem.Add(new Nebula( 20862, Nebula.NebulaType.Planetary, "Dryaa Pruae VO-R e4-9027", 2, true, "Dryaa Pruae VO-R e4-9027", (decimal?)-1824.3125, (decimal?)-951.09375, (decimal?)21599.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20863, Nebula.NebulaType.Planetary, "Dryaa Pruae WK-O e6-8150", 2, true, "Dryaa Pruae WK-O e6-8150", (decimal?)-2202.84375, (decimal?)-565.40625, (decimal?)21973.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20900, Nebula.NebulaType.Planetary, "Dryao Aowsy GN-S e4-2546", 2, true, "Dryao Aowsy GN-S e4-2546", (decimal?)-1220.65625, (decimal?)1253.8125, (decimal?)18996.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20901, Nebula.NebulaType.Planetary, "Dryao Aowsy IM-V e2-7652", 2, true, "Dryao Aowsy IM-V e2-7652", (decimal?)-700.03125, (decimal?)753.71875, (decimal?)18718.5, (int)10 )); + AllOfThem.Add(new Nebula( 20903, Nebula.NebulaType.Planetary, "Dryao Aowsy RY-R e4-6369", 2, true, "Dryao Aowsy RY-R e4-6369", (decimal?)-403.53125, (decimal?)638, (decimal?)19045.125, (int)10 )); + AllOfThem.Add(new Nebula( 20905, Nebula.NebulaType.Planetary, "Dryao Aowsy ZE-R e4-3865", 2, true, "Dryao Aowsy ZE-R e4-3865", (decimal?)-449.5, (decimal?)21.8125, (decimal?)19086.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20906, Nebula.NebulaType.Planetary, "Dryao Ausms BQ-P e5-1099", 2, true, "Dryao Ausms BQ-P e5-1099", (decimal?)-2962.78125, (decimal?)1424.53125, (decimal?)21797.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20907, Nebula.NebulaType.Planetary, "Dryao Ausms UE-R e4-919", 2, true, "Dryao Ausms UE-R e4-919", (decimal?)-3776.0625, (decimal?)1267.46875, (decimal?)21517.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20908, Nebula.NebulaType.Planetary, "Dryao Broae EL-Y e145", 2, true, "Dryao Broae EL-Y e145", (decimal?)6812.6875, (decimal?)138.3125, (decimal?)31128.375, (int)10 )); + AllOfThem.Add(new Nebula( 20909, Nebula.NebulaType.Planetary, "Dryao Broae PD-B e2396", 2, true, "Dryao Broae PD-B e2396", (decimal?)6590.125, (decimal?)1027.75, (decimal?)31009.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20910, Nebula.NebulaType.Planetary, "Dryao Broae PD-S e4-190", 2, true, "Dryao Broae PD-S e4-190", (decimal?)7223.8125, (decimal?)779.875, (decimal?)31809.25, (int)10 )); + AllOfThem.Add(new Nebula( 20911, Nebula.NebulaType.Planetary, "Dryao Broae UK-O e6-252", 2, true, "Dryao Broae UK-O e6-252", (decimal?)6471.25, (decimal?)747.0625, (decimal?)32095.125, (int)10 )); + AllOfThem.Add(new Nebula( 20912, Nebula.NebulaType.Planetary, "Dryao Broae VO-A e3044", 2, true, "Dryao Broae VO-A e3044", (decimal?)6519, (decimal?)608.375, (decimal?)31020.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20913, Nebula.NebulaType.Planetary, "Dryao Broae WU-P e5-946", 2, true, "Dryao Broae WU-P e5-946", (decimal?)6763.125, (decimal?)314.78125, (decimal?)31926.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20948, Nebula.NebulaType.Planetary, "Dryao Chroa ZF-O e6-2", 2, true, "Dryao Chroa ZF-O e6-2", (decimal?)9451.9375, (decimal?)470.25, (decimal?)29535.375, (int)10 )); + AllOfThem.Add(new Nebula( 20950, Nebula.NebulaType.Planetary, "Dryao Scraa FW-N e6-9", 2, true, "Dryao Scraa FW-N e6-9", (decimal?)-2950.78125, (decimal?)1479.3125, (decimal?)19393.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20952, Nebula.NebulaType.Planetary, "Dryau Aowsy FW-V e2-1402", 2, true, "Dryau Aowsy FW-V e2-1402", (decimal?)759.90625, (decimal?)1092.21875, (decimal?)18745.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20955, Nebula.NebulaType.Planetary, "Dryau Aowsy WJ-R e4-1577", 2, true, "Dryau Aowsy WJ-R e4-1577", (decimal?)641.375, (decimal?)229.40625, (decimal?)19041.625, (int)10 )); + AllOfThem.Add(new Nebula( 20956, Nebula.NebulaType.Planetary, "Dryau Aowsy WJ-R e4-2714", 2, true, "Dryau Aowsy WJ-R e4-2714", (decimal?)606.0625, (decimal?)191.75, (decimal?)18967.875, (int)10 )); + AllOfThem.Add(new Nebula( 20958, Nebula.NebulaType.Planetary, "Dryau Aowsy YK-O e6-7406", 2, true, "Dryau Aowsy YK-O e6-7406", (decimal?)604.4375, (decimal?)655.84375, (decimal?)19256.375, (int)10 )); + AllOfThem.Add(new Nebula( 20997, Nebula.NebulaType.Planetary, "Dryi Aoc HW-N e6-5825", 2, true, "Dryi Aoc HW-N e6-5825", (decimal?)3742.15625, (decimal?)258.21875, (decimal?)19331.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21000, Nebula.NebulaType.Planetary, "Dryi Aoc SO-R e4-480", 2, true, "Dryi Aoc SO-R e4-480", (decimal?)2935.9375, (decimal?)381.03125, (decimal?)19071.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21001, Nebula.NebulaType.Planetary, "Dryi Aoc WF-O e6-42", 2, true, "Dryi Aoc WF-O e6-42", (decimal?)2568.28125, (decimal?)525.96875, (decimal?)19315.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21003, Nebula.NebulaType.Planetary, "Dryi Aoc ZK-P e5-562", 2, true, "Dryi Aoc ZK-P e5-562", (decimal?)2655.875, (decimal?)49.84375, (decimal?)19169.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21004, Nebula.NebulaType.Planetary, "Dryi Aub AF-Z e804", 2, true, "Dryi Aub AF-Z e804", (decimal?)-4095.21875, (decimal?)876.59375, (decimal?)20971.625, (int)10 )); + AllOfThem.Add(new Nebula( 21006, Nebula.NebulaType.Planetary, "Dryi Aub CA-Z e1846", 2, true, "Dryi Aub CA-Z e1846", (decimal?)-4142.78125, (decimal?)685.15625, (decimal?)20896.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21007, Nebula.NebulaType.Planetary, "Dryi Aub CQ-X e1-7881", 2, true, "Dryi Aub CQ-X e1-7881", (decimal?)-4122.40625, (decimal?)991.90625, (decimal?)21141.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21010, Nebula.NebulaType.Planetary, "Dryi Aub GA-A e7373", 2, true, "Dryi Aub GA-A e7373", (decimal?)-4150.21875, (decimal?)77.6875, (decimal?)20760.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21023, Nebula.NebulaType.Planetary, "Dryi Auscs CW-V e2-4091", 2, true, "Dryi Auscs CW-V e2-4091", (decimal?)2882.125, (decimal?)1037.625, (decimal?)21317.125, (int)10 )); + AllOfThem.Add(new Nebula( 21024, Nebula.NebulaType.Planetary, "Dryi Auscs FV-Y E1478", 2, true, "Dryi Auscs FV-Y e1478", (decimal?)3676.28125, (decimal?)481.3125, (decimal?)20938.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21025, Nebula.NebulaType.Planetary, "Dryi Auscs GR-V e2-7780", 2, true, "Dryi Auscs GR-V e2-7780", (decimal?)3177.71875, (decimal?)790.4375, (decimal?)21299.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21026, Nebula.NebulaType.Planetary, "Dryi Auscs HB-X e1-7180", 2, true, "Dryi Auscs HB-X e1-7180", (decimal?)3344.625, (decimal?)517.875, (decimal?)21133.625, (int)10 )); + AllOfThem.Add(new Nebula( 21027, Nebula.NebulaType.Planetary, "Dryi Auscs KI-S e4-4321", 2, true, "Dryi Auscs KI-S e4-4321", (decimal?)2939.5, (decimal?)1005.34375, (decimal?)21575.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21028, Nebula.NebulaType.Planetary, "Dryi Auscs KR-W e1-4253", 2, true, "Dryi Auscs KR-W e1-4253", (decimal?)3141.84375, (decimal?)254.75, (decimal?)21097, (int)10 )); + AllOfThem.Add(new Nebula( 21029, Nebula.NebulaType.Planetary, "Dryi Auscs LC-V e2-181", 2, true, "Dryi Auscs LC-V e2-181", (decimal?)3109.53125, (decimal?)439.75, (decimal?)21292.25, (int)10 )); + AllOfThem.Add(new Nebula( 21030, Nebula.NebulaType.Planetary, "Dryi Auscs LR-W e1-7979", 2, true, "Dryi Auscs LR-W e1-7979", (decimal?)3404.21875, (decimal?)163.90625, (decimal?)21107.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21031, Nebula.NebulaType.Planetary, "Dryi Auscs MM-W e1-382", 2, true, "Dryi Auscs MM-W e1-382", (decimal?)3192.0625, (decimal?)-19.65625, (decimal?)21032.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21032, Nebula.NebulaType.Planetary, "Dryi Auscs MN-T e3-4059", 2, true, "Dryi Auscs MN-T e3-4059", (decimal?)2896.09375, (decimal?)524.65625, (decimal?)21385.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21033, Nebula.NebulaType.Planetary, "Dryi Auscs SI-T e3-3364", 2, true, "Dryi Auscs SI-T e3-3364", (decimal?)3567.75, (decimal?)343.96875, (decimal?)21485, (int)10 )); + AllOfThem.Add(new Nebula( 21034, Nebula.NebulaType.Planetary, "Dryi Auscs WO-A e1630", 2, true, "Dryi Auscs WO-A e1630", (decimal?)2955.6875, (decimal?)576.03125, (decimal?)20798.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21035, Nebula.NebulaType.Planetary, "Dryi Auscs WY-A e2318", 2, true, "Dryi Auscs WY-A e2318", (decimal?)3493.46875, (decimal?)804.3125, (decimal?)20737.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21036, Nebula.NebulaType.Planetary, "Dryi Auscs YE-A e5483", 2, true, "Dryi Auscs YE-A e5483", (decimal?)2597.53125, (decimal?)200.28125, (decimal?)20805.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21037, Nebula.NebulaType.Planetary, "Dryi Auscs YO-A e10522", 2, true, "Dryi Auscs YO-A e10522", (decimal?)3136.90625, (decimal?)491.34375, (decimal?)20708.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21039, Nebula.NebulaType.Planetary, "Dryi Braea YT-A e14", 2, true, "Dryi Braea YT-A e14", (decimal?)6081.5625, (decimal?)2010.09375, (decimal?)30994.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21165, Nebula.NebulaType.Planetary, "Dryio Prao BB-O e6-6632", 2, true, "Dryio Prao BB-O e6-6632", (decimal?)1776.90625, (decimal?)-878.0625, (decimal?)21869.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21166, Nebula.NebulaType.Planetary, "Dryio Prao BQ-Y e6596", 2, true, "Dryio Prao BQ-Y e6596", (decimal?)1410.53125, (decimal?)-967.34375, (decimal?)20942.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21167, Nebula.NebulaType.Planetary, "Dryio Prao EB-X e1-1566", 2, true, "Dryio Prao EB-X e1-1566", (decimal?)1661, (decimal?)-676.46875, (decimal?)21117.375, (int)10 )); + AllOfThem.Add(new Nebula( 21168, Nebula.NebulaType.Planetary, "Dryio Prao LT-Q e5-635", 2, true, "Dryio Prao LT-Q e5-635", (decimal?)1479.90625, (decimal?)-160.5, (decimal?)21696.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21169, Nebula.NebulaType.Planetary, "Dryio Prao OJ-Q e5-2369", 2, true, "Dryio Prao OJ-Q e5-2369", (decimal?)1340.875, (decimal?)-384.5, (decimal?)21718, (int)10 )); + AllOfThem.Add(new Nebula( 21170, Nebula.NebulaType.Planetary, "Dryio Prao VJ-Z e4611", 2, true, "Dryio Prao VJ-Z e4611", (decimal?)1730, (decimal?)-229.90625, (decimal?)20871.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21171, Nebula.NebulaType.Planetary, "Dryio Prao WJ-A e1672", 2, true, "Dryio Prao WJ-A e1672", (decimal?)1257, (decimal?)-956.4375, (decimal?)20727.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21180, Nebula.NebulaType.Planetary, "Dryoea Blao AG-X e1-4053", 2, true, "Dryoea Blao AG-X e1-4053", (decimal?)5203.1875, (decimal?)-511, (decimal?)28712.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21181, Nebula.NebulaType.Planetary, "Dryoea Blao BV-X e1-6571", 2, true, "Dryoea Blao BV-X e1-6571", (decimal?)6234.40625, (decimal?)-60.78125, (decimal?)28817.875, (int)10 )); + AllOfThem.Add(new Nebula( 21182, Nebula.NebulaType.Planetary, "Dryoea Blao JR-V e2-5554", 2, true, "Dryoea Blao JR-V e2-5554", (decimal?)6304.28125, (decimal?)-352.0625, (decimal?)28973.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21183, Nebula.NebulaType.Planetary, "Dryoea Blao KM-V e2-9108", 2, true, "Dryoea Blao KM-V e2-9108", (decimal?)6165.65625, (decimal?)-579.5625, (decimal?)28926.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21184, Nebula.NebulaType.Planetary, "Dryoea Blao LN-T e3-3480", 2, true, "Dryoea Blao LN-T e3-3480", (decimal?)5336.375, (decimal?)-757.9375, (decimal?)29023.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21185, Nebula.NebulaType.Planetary, "Dryoea Blao MI-B e1544", 2, true, "Dryoea Blao MI-B e1544", (decimal?)5099.90625, (decimal?)-102, (decimal?)28529.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21186, Nebula.NebulaType.Planetary, "Dryoea Blao MS-T e3-3798", 2, true, "Dryoea Blao MS-T e3-3798", (decimal?)5768.34375, (decimal?)-523.03125, (decimal?)29062.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21187, Nebula.NebulaType.Planetary, "Dryoea Blao OY-R e4-4975", 2, true, "Dryoea Blao OY-R e4-4975", (decimal?)5443.21875, (decimal?)-531.75, (decimal?)29176.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21188, Nebula.NebulaType.Planetary, "Dryoea Blao QS-U e2-4036", 2, true, "Dryoea Blao QS-U e2-4036", (decimal?)5755.84375, (decimal?)-1285.84375, (decimal?)28868.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21189, Nebula.NebulaType.Planetary, "Dryoea Blao RI-T e3-4878", 2, true, "Dryoea Blao RI-T e3-4878", (decimal?)5918.3125, (decimal?)-968.78125, (decimal?)29130.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21190, Nebula.NebulaType.Planetary, "Dryoea Blao SO-Z e3234", 2, true, "Dryoea Blao SO-Z e3234", (decimal?)5439.5, (decimal?)-110.1875, (decimal?)28632.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21191, Nebula.NebulaType.Planetary, "Dryoea Blao SZ-P e5-4210", 2, true, "Dryoea Blao SZ-P e5-4210", (decimal?)5123, (decimal?)-712.5, (decimal?)29364.375, (int)10 )); + AllOfThem.Add(new Nebula( 21192, Nebula.NebulaType.Planetary, "Dryoea Blao VO-A e3544", 2, true, "Dryoea Blao VO-A e3544", (decimal?)5302.21875, (decimal?)-818.5, (decimal?)28521.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21193, Nebula.NebulaType.Planetary, "Dryoea Blao YA-O e6-5399", 2, true, "Dryoea Blao YA-O e6-5399", (decimal?)5108.3125, (decimal?)-960.09375, (decimal?)29626.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21194, Nebula.NebulaType.Planetary, "Dryoea Blao YJ-A e6282", 2, true, "Dryoea Blao YJ-A e6282", (decimal?)5411.46875, (decimal?)-936.53125, (decimal?)28401.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21195, Nebula.NebulaType.Planetary, "Dryoea Blao YO-A e7026", 2, true, "Dryoea Blao YO-A e7026", (decimal?)5703.5625, (decimal?)-793.46875, (decimal?)28464.125, (int)10 )); + AllOfThem.Add(new Nebula( 21196, Nebula.NebulaType.Planetary, "Dryoea Blao YZ-Y e3605", 2, true, "Dryoea Blao YZ-Y e3605", (decimal?)5388.53125, (decimal?)-552.5625, (decimal?)28690.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21197, Nebula.NebulaType.Planetary, "Dryoea Bli CH-U e3-3754", 2, true, "Dryoea Bli CH-U e3-3754", (decimal?)2507.25, (decimal?)-131.15625, (decimal?)29040.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21198, Nebula.NebulaType.Planetary, "Dryoea Bli EB-O e6-2252", 2, true, "Dryoea Bli EB-O e6-2252", (decimal?)3597.8125, (decimal?)-903.90625, (decimal?)29517.75, (int)10 )); + AllOfThem.Add(new Nebula( 21201, Nebula.NebulaType.Planetary, "Dryoea Bli JW-W e1-7302", 2, true, "Dryoea Bli JW-W e1-7302", (decimal?)3359.4375, (decimal?)-829.25, (decimal?)28773.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21202, Nebula.NebulaType.Planetary, "Dryoea Bli LS-T e3-1662", 2, true, "Dryoea Bli LS-T e3-1662", (decimal?)2981.09375, (decimal?)-538.34375, (decimal?)29143.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21203, Nebula.NebulaType.Planetary, "Dryoea Bli TD-T e3-2002", 2, true, "Dryoea Bli TD-T e3-2002", (decimal?)3384.9375, (decimal?)-1083.0625, (decimal?)29121.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21204, Nebula.NebulaType.Planetary, "Dryoea Bli TP-O e6-4359", 2, true, "Dryoea Bli TP-O e6-4359", (decimal?)2744.3125, (decimal?)-503.375, (decimal?)29506.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21218, Nebula.NebulaType.Planetary, "Dryoea Flyao QZ-O e6-6539", 2, true, "Dryoea Flyao QZ-O e6-6539", (decimal?)2963.59375, (decimal?)-97.75, (decimal?)19392.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21219, Nebula.NebulaType.Planetary, "Dryoea Flyao QZ-O e6-7754", 2, true, "Dryoea Flyao QZ-O e6-7754", (decimal?)2913.46875, (decimal?)-130.8125, (decimal?)19263.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21249, Nebula.NebulaType.Planetary, "Dryoea Pra FL-X e1-762", 2, true, "Dryoea Pra FL-X e1-762", (decimal?)-4035.65625, (decimal?)-1635.875, (decimal?)21151.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21251, Nebula.NebulaType.Planetary, "Dryoea Prao AB-O e6-2664", 2, true, "Dryoea Prao AB-O e6-2664", (decimal?)2937.5625, (decimal?)-954.71875, (decimal?)21950.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21252, Nebula.NebulaType.Planetary, "Dryoea Prao AG-O e6-3719", 2, true, "Dryoea Prao AG-O e6-3719", (decimal?)3142.65625, (decimal?)-669, (decimal?)21872.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21253, Nebula.NebulaType.Planetary, "Dryoea Prao EB-X e1-10269", 2, true, "Dryoea Prao EB-X e1-10269", (decimal?)2885.0625, (decimal?)-817.25, (decimal?)21162.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21254, Nebula.NebulaType.Planetary, "Dryoea Prao HH-U e3-4970", 2, true, "Dryoea Prao HH-U e3-4970", (decimal?)3397.65625, (decimal?)-113.5, (decimal?)21382.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21255, Nebula.NebulaType.Planetary, "Dryoea Prao IR-V e2-2306", 2, true, "Dryoea Prao IR-V e2-2306", (decimal?)3518.84375, (decimal?)-394.96875, (decimal?)21268.5, (int)10 )); + AllOfThem.Add(new Nebula( 21256, Nebula.NebulaType.Planetary, "Dryoea Prao JC-V e2-6711", 2, true, "Dryoea Prao JC-V e2-6711", (decimal?)2700.28125, (decimal?)-852.5, (decimal?)21216.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21257, Nebula.NebulaType.Planetary, "Dryoea Prao QT-Q e5-3845", 2, true, "Dryoea Prao QT-Q e5-3845", (decimal?)3485.71875, (decimal?)-116.5, (decimal?)21755.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21258, Nebula.NebulaType.Planetary, "Dryoea Prao SO-Q e5-3017", 2, true, "Dryoea Prao SO-Q e5-3017", (decimal?)3496.9375, (decimal?)-315.40625, (decimal?)21661.875, (int)10 )); + AllOfThem.Add(new Nebula( 21259, Nebula.NebulaType.Planetary, "Dryoea Prao TZ-P e5-4816", 2, true, "Dryoea Prao TZ-P e5-4816", (decimal?)2739.15625, (decimal?)-682.15625, (decimal?)21787.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21260, Nebula.NebulaType.Planetary, "Dryoea Prao UZ-P e5-6928", 2, true, "Dryoea Prao UZ-P e5-6928", (decimal?)2849.6875, (decimal?)-797.5, (decimal?)21786.25, (int)10 )); + AllOfThem.Add(new Nebula( 21261, Nebula.NebulaType.Planetary, "Dryoea Prao XE-Q e5-8804", 2, true, "Dryoea Prao XE-Q e5-8804", (decimal?)3737.5, (decimal?)-578.875, (decimal?)21703.5, (int)10 )); + AllOfThem.Add(new Nebula( 21262, Nebula.NebulaType.Planetary, "Dryoea Prao XJ-Z e8808", 2, true, "Dryoea Prao XJ-Z e8808", (decimal?)3348.53125, (decimal?)-261.09375, (decimal?)20862.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21263, Nebula.NebulaType.Planetary, "Dryoea Prao XY-A e3900", 2, true, "Dryoea Prao XY-A e3900", (decimal?)3642.25, (decimal?)-384.625, (decimal?)20778.625, (int)10 )); + AllOfThem.Add(new Nebula( 21264, Nebula.NebulaType.Planetary, "Dryoea Prao ZK-X e1-29", 2, true, "Dryoea Prao ZK-X e1-29", (decimal?)2676.8125, (decimal?)-385.03125, (decimal?)21104.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21265, Nebula.NebulaType.Planetary, "Dryoea Prao ZK-X e1-7736", 2, true, "Dryoea Prao ZK-X e1-7736", (decimal?)2804.0625, (decimal?)-452.53125, (decimal?)21110.625, (int)10 )); + AllOfThem.Add(new Nebula( 21269, Nebula.NebulaType.Planetary, "Dryoea Prau IS-T e3-502", 2, true, "Dryoea Prau IS-T e3-502", (decimal?)5110.25, (decimal?)-661.3125, (decimal?)21371.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21270, Nebula.NebulaType.Planetary, "Dryoea Prau MO-Q e5-2084", 2, true, "Dryoea Prau MO-Q e5-2084", (decimal?)5111.28125, (decimal?)-202.53125, (decimal?)21793.125, (int)10 )); + AllOfThem.Add(new Nebula( 21275, Nebula.NebulaType.Planetary, "Dryoea Prue OZ-O e6-3729", 2, true, "Dryoea Prue OZ-O e6-3729", (decimal?)2511.375, (decimal?)-1403.1875, (decimal?)21865.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21276, Nebula.NebulaType.Planetary, "Dryoi Bli II-S e4-2481", 2, true, "Dryoi Bli II-S e4-2481", (decimal?)6457.03125, (decimal?)-221.84375, (decimal?)29203.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21277, Nebula.NebulaType.Planetary, "Dryoi Bli IM-V e2-6430", 2, true, "Dryoi Bli IM-V e2-6430", (decimal?)7125.5625, (decimal?)-637.625, (decimal?)28961.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21278, Nebula.NebulaType.Planetary, "Dryoi Bli JN-S e4-4615", 2, true, "Dryoi Bli JN-S e4-4615", (decimal?)6938.03125, (decimal?)-180.46875, (decimal?)29299.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21279, Nebula.NebulaType.Planetary, "Dryoi Bli LI-S e4-1344", 2, true, "Dryoi Bli LI-S e4-1344", (decimal?)6936.3125, (decimal?)-259.59375, (decimal?)29301.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21280, Nebula.NebulaType.Planetary, "Dryoi Bli OI-B e1047", 2, true, "Dryoi Bli OI-B e1047", (decimal?)6717.28125, (decimal?)-166.28125, (decimal?)28429.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21281, Nebula.NebulaType.Planetary, "Dryoi Bli OM-W e1-179", 2, true, "Dryoi Bli OM-W e1-179", (decimal?)7352.15625, (decimal?)-1293.9375, (decimal?)28723.125, (int)10 )); + AllOfThem.Add(new Nebula( 21282, Nebula.NebulaType.Planetary, "Dryoi Bli TE-Q e5-5309", 2, true, "Dryoi Bli TE-Q e5-5309", (decimal?)6928.34375, (decimal?)-657.5, (decimal?)29387.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21283, Nebula.NebulaType.Planetary, "Dryoi Bli TJ-Q e5-1979", 2, true, "Dryoi Bli TJ-Q e5-1979", (decimal?)7210.8125, (decimal?)-450.28125, (decimal?)29440.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21284, Nebula.NebulaType.Planetary, "Dryoi Bli TP-O e6-9176", 2, true, "Dryoi Bli TP-O e6-9176", (decimal?)6621.84375, (decimal?)-494.90625, (decimal?)29629.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21285, Nebula.NebulaType.Planetary, "Dryoi Bli VJ-Z e9260", 2, true, "Dryoi Bli VJ-Z e9260", (decimal?)6923.03125, (decimal?)-307.71875, (decimal?)28669.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21286, Nebula.NebulaType.Planetary, "Dryoi Bli VZ-P e5-4033", 2, true, "Dryoi Bli VZ-P e5-4033", (decimal?)6967.75, (decimal?)-669.875, (decimal?)29427.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21287, Nebula.NebulaType.Planetary, "Dryoi Bli XP-X e1-9181", 2, true, "Dryoi Bli XP-X e1-9181", (decimal?)6558.34375, (decimal?)-267.03125, (decimal?)28784.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21288, Nebula.NebulaType.Planetary, "Dryoi Bli YO-A e6413", 2, true, "Dryoi Bli YO-A e6413", (decimal?)7050.46875, (decimal?)-771.8125, (decimal?)28533.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21297, Nebula.NebulaType.Planetary, "Dryoi Pra RZ-O e6-1506", 2, true, "Dryoi Pra RZ-O e6-1506", (decimal?)-767.625, (decimal?)-1325.9375, (decimal?)21973.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21298, Nebula.NebulaType.Planetary, "Dryoi Pra TO-Z e287", 2, true, "Dryoi Pra TO-Z e287", (decimal?)-861.65625, (decimal?)-1391.3125, (decimal?)20919.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21299, Nebula.NebulaType.Planetary, "Dryoi Pra XP-X e1-630", 2, true, "Dryoi Pra XP-X e1-630", (decimal?)-1114.5625, (decimal?)-1502.40625, (decimal?)21156.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21300, Nebula.NebulaType.Planetary, "Dryoi Pri BB-W e2-411", 2, true, "Dryoi Pri BB-W e2-411", (decimal?)-781.125, (decimal?)-122.6875, (decimal?)21315.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21301, Nebula.NebulaType.Planetary, "Dryoi Pri IH-V e2-4778", 2, true, "Dryoi Pri IH-V e2-4778", (decimal?)-1002.75, (decimal?)-758.78125, (decimal?)21333.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21302, Nebula.NebulaType.Planetary, "Dryoi Pri TJ-Z e3850", 2, true, "Dryoi Pri TJ-Z e3850", (decimal?)-1134.1875, (decimal?)-306.15625, (decimal?)20980.875, (int)10 )); + AllOfThem.Add(new Nebula( 21303, Nebula.NebulaType.Planetary, "Dryoi Pri TU-O e6-3399", 2, true, "Dryoi Pri TU-O e6-3399", (decimal?)-819.90625, (decimal?)-201.5625, (decimal?)21951.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21304, Nebula.NebulaType.Planetary, "Dryoi Pri TU-O e6-383", 2, true, "Dryoi Pri TU-O e6-383", (decimal?)-808.4375, (decimal?)-252.28125, (decimal?)21831.375, (int)10 )); + AllOfThem.Add(new Nebula( 21305, Nebula.NebulaType.Planetary, "Dryoi Pri UJ-Z e2537", 2, true, "Dryoi Pri UJ-Z e2537", (decimal?)-881.5625, (decimal?)-327.15625, (decimal?)20963.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21306, Nebula.NebulaType.Planetary, "Dryoi Pruae AW-V e2-6747", 2, true, "Dryoi Pruae AW-V e2-6747", (decimal?)-3842.375, (decimal?)-210.78125, (decimal?)21236.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21307, Nebula.NebulaType.Planetary, "Dryoi Pruae BQ-X e1-3875", 2, true, "Dryoi Pruae BQ-X e1-3875", (decimal?)-3091.28125, (decimal?)-286.78125, (decimal?)21150.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21308, Nebula.NebulaType.Planetary, "Dryoi Pruae DK-A e1504", 2, true, "Dryoi Pruae DK-A e1504", (decimal?)-2672.03125, (decimal?)-956.46875, (decimal?)20697.5, (int)10 )); + AllOfThem.Add(new Nebula( 21309, Nebula.NebulaType.Planetary, "Dryoi Pruae EM-V e2-2979", 2, true, "Dryoi Pruae EM-V e2-2979", (decimal?)-3852, (decimal?)-593.46875, (decimal?)21269.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21310, Nebula.NebulaType.Planetary, "Dryoi Pruae FC-U e3-4669", 2, true, "Dryoi Pruae FC-U e3-4669", (decimal?)-3727.96875, (decimal?)-200.4375, (decimal?)21460.75, (int)10 )); + AllOfThem.Add(new Nebula( 21311, Nebula.NebulaType.Planetary, "Dryoi Pruae GX-T e3-3575", 2, true, "Dryoi Pruae GX-T e3-3575", (decimal?)-3782.875, (decimal?)-405.21875, (decimal?)21366.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21312, Nebula.NebulaType.Planetary, "Dryoi Pruae HW-V e2-5220", 2, true, "Dryoi Pruae HW-V e2-5220", (decimal?)-2717.75, (decimal?)-252.40625, (decimal?)21311.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21313, Nebula.NebulaType.Planetary, "Dryoi Pruae IR-V e2-200", 2, true, "Dryoi Pruae IR-V e2-200", (decimal?)-2842.25, (decimal?)-442.875, (decimal?)21225.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21314, Nebula.NebulaType.Planetary, "Dryoi Pruae JC-V e2-6515", 2, true, "Dryoi Pruae JC-V e2-6515", (decimal?)-3695.84375, (decimal?)-975.46875, (decimal?)21233.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21315, Nebula.NebulaType.Planetary, "Dryoi Pruae KI-S e4-877", 2, true, "Dryoi Pruae KI-S e4-877", (decimal?)-3572.34375, (decimal?)-263.84375, (decimal?)21535.25, (int)10 )); + AllOfThem.Add(new Nebula( 21316, Nebula.NebulaType.Planetary, "Dryoi Pruae LX-T e3-996", 2, true, "Dryoi Pruae LX-T e3-996", (decimal?)-3030.5625, (decimal?)-419.9375, (decimal?)21386.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21317, Nebula.NebulaType.Planetary, "Dryoi Pruae NH-V e2-5963", 2, true, "Dryoi Pruae NH-V e2-5963", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 21318, Nebula.NebulaType.Planetary, "Dryoi Pruae NH-V e2-6359", 2, true, "Dryoi Pruae NH-V e2-6359", (decimal?)-2662.8125, (decimal?)-780.6875, (decimal?)21189.75, (int)10 )); + AllOfThem.Add(new Nebula( 21319, Nebula.NebulaType.Planetary, "Dryoi Pruae NI-B e2188", 2, true, "Dryoi Pruae NI-B e2188", (decimal?)-3715.75, (decimal?)-80.25, (decimal?)20708.375, (int)10 )); + AllOfThem.Add(new Nebula( 21320, Nebula.NebulaType.Planetary, "Dryoi Pruae QT-R e4-3131", 2, true, "Dryoi Pruae QT-R e4-3131", (decimal?)-3428.96875, (decimal?)-686.15625, (decimal?)21597.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21321, Nebula.NebulaType.Planetary, "Dryoi Pruae TJ-Q e5-4275", 2, true, "Dryoi Pruae TJ-Q e5-4275", (decimal?)-3097.84375, (decimal?)-363.3125, (decimal?)21761.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21322, Nebula.NebulaType.Planetary, "Dryoi Pruae VO-R e4-723", 2, true, "Dryoi Pruae VO-R e4-723", (decimal?)-3024.65625, (decimal?)-980.90625, (decimal?)21541.25, (int)10 )); + AllOfThem.Add(new Nebula( 21323, Nebula.NebulaType.Planetary, "Dryoi Pruae VP-O e6-6792", 2, true, "Dryoi Pruae VP-O e6-6792", (decimal?)-3365.375, (decimal?)-476.40625, (decimal?)21835.25, (int)10 )); + AllOfThem.Add(new Nebula( 21324, Nebula.NebulaType.Planetary, "Dryoi Pruae WF-O e6-4498", 2, true, "Dryoi Pruae WF-O e6-4498", (decimal?)-3882, (decimal?)-727.34375, (decimal?)21909.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21354, Nebula.NebulaType.Planetary, "Dryuae Auscs AA-Z e2232", 2, true, "Dryuae Auscs AA-Z e2232", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 21355, Nebula.NebulaType.Planetary, "Dryuae Auscs BA-Z e9417", 2, true, "Dryuae Auscs BA-Z e9417", (decimal?)2018.53125, (decimal?)684.84375, (decimal?)20949.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21356, Nebula.NebulaType.Planetary, "Dryuae Auscs BF-R e4-1438", 2, true, "Dryuae Auscs BF-R e4-1438", (decimal?)2432.65625, (decimal?)53.875, (decimal?)21496.25, (int)10 )); + AllOfThem.Add(new Nebula( 21357, Nebula.NebulaType.Planetary, "Dryuae Auscs EC-U e3-1798", 2, true, "Dryuae Auscs EC-U e3-1798", (decimal?)1311.90625, (decimal?)1085.25, (decimal?)21474.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21358, Nebula.NebulaType.Planetary, "Dryuae Auscs FC-U e3-7920", 2, true, "Dryuae Auscs FC-U e3-7920", (decimal?)1468.40625, (decimal?)978.71875, (decimal?)21407.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21359, Nebula.NebulaType.Planetary, "Dryuae Auscs FV-Y e7850", 2, true, "Dryuae Auscs FV-Y e7850", (decimal?)2456.6875, (decimal?)504.3125, (decimal?)20927.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21360, Nebula.NebulaType.Planetary, "Dryuae Auscs IG-Y e3379", 2, true, "Dryuae Auscs IG-Y e3379", (decimal?)1953.125, (decimal?)15.9375, (decimal?)21002.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21361, Nebula.NebulaType.Planetary, "Dryuae Auscs IG-Y e3609", 2, true, "Dryuae Auscs IG-Y e3609", (decimal?)1983.78125, (decimal?)66.59375, (decimal?)20895.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21362, Nebula.NebulaType.Planetary, "Dryuae Auscs IS-T e3-7625", 2, true, "Dryuae Auscs IS-T e3-7625", (decimal?)1257.71875, (decimal?)730.625, (decimal?)21460.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21363, Nebula.NebulaType.Planetary, "Dryuae Auscs KM-W e1-8127", 2, true, "Dryuae Auscs KM-W e1-8127", (decimal?)1692.75, (decimal?)55.78125, (decimal?)21105.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21364, Nebula.NebulaType.Planetary, "Dryuae Auscs NI-S e4-3573", 2, true, "Dryuae Auscs NI-S e4-3573", (decimal?)2081.28125, (decimal?)959.28125, (decimal?)21540.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21365, Nebula.NebulaType.Planetary, "Dryuae Auscs NO-Q e5-6038", 2, true, "Dryuae Auscs NO-Q e5-6038", (decimal?)1406.75, (decimal?)1052.3125, (decimal?)21721.75, (int)10 )); + AllOfThem.Add(new Nebula( 21366, Nebula.NebulaType.Planetary, "Dryuae Auscs TD-B e4610", 2, true, "Dryuae Auscs TD-B e4610", (decimal?)2075.125, (decimal?)998.25, (decimal?)20728.375, (int)10 )); + AllOfThem.Add(new Nebula( 21367, Nebula.NebulaType.Planetary, "Dryuae Auscs TJ-Q e5-5892", 2, true, "Dryuae Auscs TJ-Q e5-5892", (decimal?)2080.03125, (decimal?)882.875, (decimal?)21712.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21368, Nebula.NebulaType.Planetary, "Dryuae Auscs TU-O e6-7082", 2, true, "Dryuae Auscs TU-O e6-7082", (decimal?)1783.8125, (decimal?)1033.5, (decimal?)21913.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21369, Nebula.NebulaType.Planetary, "Dryuae Auscs TY-R e4-4234", 2, true, "Dryuae Auscs TY-R e4-4234", (decimal?)2452.65625, (decimal?)640.5625, (decimal?)21506.25, (int)10 )); + AllOfThem.Add(new Nebula( 21370, Nebula.NebulaType.Planetary, "Dryuae Auscs YE-Z e9395", 2, true, "Dryuae Auscs YE-Z e9395", (decimal?)2014.625, (decimal?)811.8125, (decimal?)20904.75, (int)10 )); + AllOfThem.Add(new Nebula( 21371, Nebula.NebulaType.Planetary, "Dryuae Auscs YF-O e6-5077", 2, true, "Dryuae Auscs YF-O e6-5077", (decimal?)1552.78125, (decimal?)492.84375, (decimal?)21836.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21372, Nebula.NebulaType.Planetary, "Dryuae Auscs ZK-P e5-3052", 2, true, "Dryuae Auscs ZK-P e5-3052", (decimal?)1452.25, (decimal?)38, (decimal?)21737.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21422, Nebula.NebulaType.Planetary, "Dumbae DB-X e1-2307", 2, true, "Dumbae DB-X e1-2307", (decimal?)-1081.15625, (decimal?)597.75, (decimal?)22432.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21423, Nebula.NebulaType.Planetary, "Dumbae HR-W e1-5390", 2, true, "Dumbae HR-W e1-5390", (decimal?)-1096.8125, (decimal?)264.59375, (decimal?)22396.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21424, Nebula.NebulaType.Planetary, "Dumbae KC-V e2-5383", 2, true, "Dumbae KC-V e2-5383", (decimal?)-935.125, (decimal?)335.09375, (decimal?)22506.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21425, Nebula.NebulaType.Planetary, "Dumbae NM-W e1-6323", 2, true, "Dumbae NM-W e1-6323", (decimal?)-419.78125, (decimal?)24.75, (decimal?)22304.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21426, Nebula.NebulaType.Planetary, "Dumbae PO-Q e5-1007", 2, true, "Dumbae PO-Q e5-1007", (decimal?)-792.03125, (decimal?)937.59375, (decimal?)22952.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21427, Nebula.NebulaType.Planetary, "Dumbae QU-O e6-10672", 2, true, "Dumbae QU-O e6-10672", (decimal?)-1324.65625, (decimal?)1017.53125, (decimal?)23151.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21428, Nebula.NebulaType.Planetary, "Dumbae SJ-Z e2563", 2, true, "Dumbae SJ-Z e2563", (decimal?)-1282.90625, (decimal?)974.0625, (decimal?)22181.875, (int)10 )); + AllOfThem.Add(new Nebula( 21429, Nebula.NebulaType.Planetary, "Dumbae SY-S e3-3862", 2, true, "Dumbae SY-S e3-3862", (decimal?)-1008.1875, (decimal?)85.5, (decimal?)22618.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21430, Nebula.NebulaType.Planetary, "Dumbae TO-Z e3112", 2, true, "Dumbae TO-Z e3112", (decimal?)-744.6875, (decimal?)1235.40625, (decimal?)22204.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21431, Nebula.NebulaType.Planetary, "Dumbae TU-O e6-9740", 2, true, "Dumbae TU-O e6-9740", (decimal?)-772.0625, (decimal?)1026.9375, (decimal?)23215.125, (int)10 )); + AllOfThem.Add(new Nebula( 21432, Nebula.NebulaType.Planetary, "Dumbae WJ-R e4-1209", 2, true, "Dumbae WJ-R e4-1209", (decimal?)-697.21875, (decimal?)173.5, (decimal?)22818.75, (int)10 )); + AllOfThem.Add(new Nebula( 21433, Nebula.NebulaType.Planetary, "Dumbae YA-O e6-8992", 2, true, "Dumbae YA-O e6-8992", (decimal?)-1211.34375, (decimal?)372.375, (decimal?)23155.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21434, Nebula.NebulaType.Planetary, "Dumbae ZE-Z e8958", 2, true, "Dumbae ZE-Z e8958", (decimal?)-428.4375, (decimal?)783.21875, (decimal?)22249.5, (int)10 )); + AllOfThem.Add(new Nebula( 21435, Nebula.NebulaType.Planetary, "Dumbae ZP-P e5-7670", 2, true, "Dumbae ZP-P e5-7670", (decimal?)-832.15625, (decimal?)272.375, (decimal?)22994.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21439, Nebula.NebulaType.Planetary, "Dumbai RJ-Q e5-3737", 2, true, "Dumbai RJ-Q e5-3737", (decimal?)5551.84375, (decimal?)806.9375, (decimal?)23092.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21440, Nebula.NebulaType.Planetary, "Dumbai SO-R e4-8930", 2, true, "Dumbai SO-R e4-8930", (decimal?)5414.0625, (decimal?)340.65625, (decimal?)22896.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21442, Nebula.NebulaType.Planetary, "Dumbai YK-P e5-6275", 2, true, "Dumbai YK-P e5-6275", (decimal?)5192.875, (decimal?)36.09375, (decimal?)22990.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21496, Nebula.NebulaType.Planetary, "Dumbooe AF-Z e3052", 2, true, "Dumbooe AF-Z e3052", (decimal?)1018.46875, (decimal?)822.625, (decimal?)22137.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21497, Nebula.NebulaType.Planetary, "Dumbooe BL-X e1-1690", 2, true, "Dumbooe BL-X e1-1690", (decimal?)500.9375, (decimal?)863.25, (decimal?)22405.875, (int)10 )); + AllOfThem.Add(new Nebula( 21498, Nebula.NebulaType.Planetary, "Dumbooe IB-X e1-2315", 2, true, "Dumbooe IB-X e1-2315", (decimal?)1004.0625, (decimal?)608.9375, (decimal?)22404.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21499, Nebula.NebulaType.Planetary, "Dumbooe KC-U e3-937", 2, true, "Dumbooe KC-U e3-937", (decimal?)1039.1875, (decimal?)967.65625, (decimal?)22751.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21500, Nebula.NebulaType.Planetary, "Dumbooe KH-V e2-3657", 2, true, "Dumbooe KH-V e2-3657", (decimal?)709.09375, (decimal?)518.28125, (decimal?)22479.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21501, Nebula.NebulaType.Planetary, "Dumbooe OT-Q e5-2340", 2, true, "Dumbooe OT-Q e5-2340", (decimal?)642.3125, (decimal?)1189.84375, (decimal?)22950.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21502, Nebula.NebulaType.Planetary, "Dumbooe PY-R e4-2497", 2, true, "Dumbooe PY-R e4-2497", (decimal?)523.8125, (decimal?)635.03125, (decimal?)22898.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21503, Nebula.NebulaType.Planetary, "Dumbooe SO-Q e5-5517", 2, true, "Dumbooe SO-Q e5-5517", (decimal?)909.40625, (decimal?)1038.3125, (decimal?)23001.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21504, Nebula.NebulaType.Planetary, "Dumbooe WY-A e9005", 2, true, "Dumbooe WY-A e9005", (decimal?)1013.625, (decimal?)897.625, (decimal?)21997.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21505, Nebula.NebulaType.Planetary, "Dumbooe YU-X e1-2297", 2, true, "Dumbooe YU-X e1-2297", (decimal?)651.90625, (decimal?)1135.8125, (decimal?)22453.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21507, Nebula.NebulaType.Planetary, "Dumbue BL-O e6-4502", 2, true, "Dumbue BL-O e6-4502", (decimal?)4933.125, (decimal?)646.6875, (decimal?)23240.25, (int)10 )); + AllOfThem.Add(new Nebula( 21508, Nebula.NebulaType.Planetary, "Dumbue EF-A e27", 2, true, "Dumbue EF-A e27", (decimal?)4889.125, (decimal?)198.34375, (decimal?)22033.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21509, Nebula.NebulaType.Planetary, "Dumbue EW-W e1-1537", 2, true, "Dumbue EW-W e1-1537", (decimal?)3896.96875, (decimal?)377.71875, (decimal?)22401.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21510, Nebula.NebulaType.Planetary, "Dumbue EW-W e1-4516", 2, true, "Dumbue EW-W e1-4516", (decimal?)3835.65625, (decimal?)367.15625, (decimal?)22403.625, (int)10 )); + AllOfThem.Add(new Nebula( 21511, Nebula.NebulaType.Planetary, "Dumbue FM-V e2-5867", 2, true, "Dumbue FM-V e2-5867", (decimal?)3986.875, (decimal?)615.96875, (decimal?)22613.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21512, Nebula.NebulaType.Planetary, "Dumbue II-S e4-5810", 2, true, "Dumbue II-S e4-5810", (decimal?)3775.5625, (decimal?)984.6875, (decimal?)22843.125, (int)10 )); + AllOfThem.Add(new Nebula( 21513, Nebula.NebulaType.Planetary, "Dumbue LC-V e2-5652", 2, true, "Dumbue LC-V e2-5652", (decimal?)4267.125, (decimal?)325.90625, (decimal?)22575.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21514, Nebula.NebulaType.Planetary, "Dumbue LM-W e1-5295", 2, true, "Dumbue LM-W e1-5295", (decimal?)4277.625, (decimal?)112.59375, (decimal?)22384.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21515, Nebula.NebulaType.Planetary, "Dumbue LW-W e1-9298", 2, true, "Dumbue LW-W e1-9298", (decimal?)5039.65625, (decimal?)418.625, (decimal?)22444.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21516, Nebula.NebulaType.Planetary, "Dumbue MH-V e2-8368", 2, true, "Dumbue MH-V e2-8368", (decimal?)4834.25, (decimal?)543.53125, (decimal?)22518.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21517, Nebula.NebulaType.Planetary, "Dumbue MN-T e3-7685", 2, true, "Dumbue MN-T e3-7685", (decimal?)4166.1875, (decimal?)553.875, (decimal?)22639.875, (int)10 )); + AllOfThem.Add(new Nebula( 21518, Nebula.NebulaType.Planetary, "Dumbue OC-V e2-583", 2, true, "Dumbue OC-V e2-583", (decimal?)4881.625, (decimal?)389.1875, (decimal?)22538.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21519, Nebula.NebulaType.Planetary, "Dumbue PC-V e2-9068", 2, true, "Dumbue PC-V e2-9068", (decimal?)5020.375, (decimal?)366.65625, (decimal?)22525.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21520, Nebula.NebulaType.Planetary, "Dumbue TT-R e4-8357", 2, true, "Dumbue TT-R e4-8357", (decimal?)4715.21875, (decimal?)566.28125, (decimal?)22842.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21521, Nebula.NebulaType.Planetary, "Dumbue VJ-Q e5-5678", 2, true, "Dumbue VJ-Q e5-5678", (decimal?)4908.34375, (decimal?)865.125, (decimal?)22998.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21522, Nebula.NebulaType.Planetary, "Dumbue WZ-P e5-4435", 2, true, "Dumbue WZ-P e5-4435", (decimal?)4498.1875, (decimal?)499.4375, (decimal?)23020.25, (int)10 )); + AllOfThem.Add(new Nebula( 21523, Nebula.NebulaType.Planetary, "Dumbue XF-O e6-4693", 2, true, "Dumbue XF-O e6-4693", (decimal?)4013.375, (decimal?)536.375, (decimal?)23182.75, (int)10 )); + AllOfThem.Add(new Nebula( 21524, Nebula.NebulaType.Planetary, "Dumbue ZF-O e6-4934", 2, true, "Dumbue ZF-O e6-4934", (decimal?)4300.65625, (decimal?)458.9375, (decimal?)23215.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21534, Nebula.NebulaType.Planetary, "Eembaids CW-V e2-2599", 2, true, "Eembaids CW-V e2-2599", (decimal?)5450.15625, (decimal?)990.75, (decimal?)30145.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21535, Nebula.NebulaType.Planetary, "Eembaids JR-N e6-729", 2, true, "Eembaids JR-N e6-729", (decimal?)6307.78125, (decimal?)-10.09375, (decimal?)30872.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21536, Nebula.NebulaType.Planetary, "Eembaids RX-U e2-4040", 2, true, "Eembaids RX-U e2-4040", (decimal?)6322.84375, (decimal?)255.375, (decimal?)30141.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21537, Nebula.NebulaType.Planetary, "Eembaids UD-B e2107", 2, true, "Eembaids UD-B e2107", (decimal?)6057.84375, (decimal?)1067.40625, (decimal?)29739.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21538, Nebula.NebulaType.Planetary, "Eembaids VT-A e3513", 2, true, "Eembaids VT-A e3513", (decimal?)5651.625, (decimal?)774.09375, (decimal?)29685.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21539, Nebula.NebulaType.Planetary, "Eembaids WP-P e5-2976", 2, true, "Eembaids WP-P e5-2976", (decimal?)5116.53125, (decimal?)237.34375, (decimal?)30629.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21540, Nebula.NebulaType.Planetary, "Eembaids WT-A e2092", 2, true, "Eembaids WT-A e2092", (decimal?)5849.6875, (decimal?)658.125, (decimal?)29804.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21541, Nebula.NebulaType.Planetary, "Eembaids XJ-R e4-6886", 2, true, "Eembaids XJ-R e4-6886", (decimal?)5872.84375, (decimal?)167.90625, (decimal?)30536.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21542, Nebula.NebulaType.Planetary, "Eembaids YE-R e4-6413", 2, true, "Eembaids YE-R e4-6413", (decimal?)5708.46875, (decimal?)24.3125, (decimal?)30590.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21543, Nebula.NebulaType.Planetary, "Eembaids YK-P e5-2911", 2, true, "Eembaids YK-P e5-2911", (decimal?)5159.53125, (decimal?)93.28125, (decimal?)30647.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21547, Nebula.NebulaType.Planetary, "Eembaisk HG-Y e1017", 2, true, "Eembaisk HG-Y e1017", (decimal?)3099.1875, (decimal?)70.53125, (decimal?)29840.625, (int)10 )); + AllOfThem.Add(new Nebula( 21549, Nebula.NebulaType.Planetary, "Eembaisk LS-T e3-6365", 2, true, "Eembaisk LS-T e3-6365", (decimal?)3027.75, (decimal?)619.6875, (decimal?)30305.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21551, Nebula.NebulaType.Planetary, "Eembaisk VU-O e6-4030", 2, true, "Eembaisk VU-O e6-4030", (decimal?)3389.5625, (decimal?)1053.3125, (decimal?)30919.125, (int)10 )); + AllOfThem.Add(new Nebula( 21553, Nebula.NebulaType.Planetary, "Eembaisk WZ-P e5-8527", 2, true, "Eembaisk WZ-P e5-8527", (decimal?)3220.65625, (decimal?)528.5625, (decimal?)30701.125, (int)10 )); + AllOfThem.Add(new Nebula( 21554, Nebula.NebulaType.Planetary, "Eembaisk XZ-P e5-1291", 2, true, "Eembaisk XZ-P e5-1291", (decimal?)3453.6875, (decimal?)611.53125, (decimal?)30705.5, (int)10 )); + AllOfThem.Add(new Nebula( 21555, Nebula.NebulaType.Planetary, "Eembaism AP-A e257", 2, true, "Eembaism AP-A e257", (decimal?)7343.96875, (decimal?)480.1875, (decimal?)29803.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21556, Nebula.NebulaType.Planetary, "Eembaism FA-A e127", 2, true, "Eembaism FA-A e127", (decimal?)7275.4375, (decimal?)27.5, (decimal?)29676.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21557, Nebula.NebulaType.Planetary, "Eembaism OJ-Q e5-32", 2, true, "Eembaism OJ-Q e5-32", (decimal?)6362.25, (decimal?)784.25, (decimal?)30738.625, (int)10 )); + AllOfThem.Add(new Nebula( 21558, Nebula.NebulaType.Planetary, "Eembaism SD-B e170", 2, true, "Eembaism SD-B e170", (decimal?)6997.09375, (decimal?)990.875, (decimal?)29790.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21559, Nebula.NebulaType.Planetary, "Eembaism UK-O e6-264", 2, true, "Eembaism UK-O e6-264", (decimal?)6380, (decimal?)641.625, (decimal?)30835.125, (int)10 )); + AllOfThem.Add(new Nebula( 21560, Nebula.NebulaType.Planetary, "Eembaism VU-P e5-5571", 2, true, "Eembaism VU-P e5-5571", (decimal?)6619.90625, (decimal?)384.03125, (decimal?)30718.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21561, Nebula.NebulaType.Planetary, "Eembaism YE-Z e72", 2, true, "Eembaism YE-Z e72", (decimal?)7113.8125, (decimal?)865.9375, (decimal?)29848.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21634, Nebula.NebulaType.Planetary, "Egnaiw GG-Y e156", 2, true, "Egnaiw GG-Y e156", (decimal?)1683.03125, (decimal?)1263.84375, (decimal?)22227.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21635, Nebula.NebulaType.Planetary, "Egnaiwn HC-U e3-4", 2, true, "Egnaiwn HC-U e3-4", (decimal?)-855.09375, (decimal?)2288.71875, (decimal?)22709.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21636, Nebula.NebulaType.Planetary, "Egnaiwn VZ-P e5-1269", 2, true, "Egnaiwn VZ-P e5-1269", (decimal?)-804.90625, (decimal?)1863.78125, (decimal?)23061.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21646, Nebula.NebulaType.Planetary, "Eoch Blao CQ-Y e6270", 2, true, "Eoch Blao CQ-Y e6270", (decimal?)4135.96875, (decimal?)-842.34375, (decimal?)27290.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21647, Nebula.NebulaType.Planetary, "Eoch Blao KN-S e4-7526", 2, true, "Eoch Blao KN-S e4-7526", (decimal?)4449.78125, (decimal?)-55.78125, (decimal?)27949.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21648, Nebula.NebulaType.Planetary, "Eoch Blao KW-W e1-5992", 2, true, "Eoch Blao KW-W e1-5992", (decimal?)4773, (decimal?)-923.1875, (decimal?)27517.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21649, Nebula.NebulaType.Planetary, "Eoch Blao LN-S e4-9532", 2, true, "Eoch Blao LN-S e4-9532", (decimal?)4727.46875, (decimal?)-28.40625, (decimal?)27998.375, (int)10 )); + AllOfThem.Add(new Nebula( 21650, Nebula.NebulaType.Planetary, "Eoch Blao NI-T e3-1482", 2, true, "Eoch Blao NI-T e3-1482", (decimal?)4092.375, (decimal?)-963.21875, (decimal?)27835.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21651, Nebula.NebulaType.Planetary, "Eoch Blao NN-S e4-10338", 2, true, "Eoch Blao NN-S e4-10338", (decimal?)4960.4375, (decimal?)-90.96875, (decimal?)27938.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21652, Nebula.NebulaType.Planetary, "Eoch Blao OI-T e3-651", 2, true, "Eoch Blao OI-T e3-651", (decimal?)4154, (decimal?)-938.46875, (decimal?)27816.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21653, Nebula.NebulaType.Planetary, "Eoch Blao OS-T e3-1005", 2, true, "Eoch Blao OS-T e3-1005", (decimal?)4821.8125, (decimal?)-597.4375, (decimal?)27748.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21654, Nebula.NebulaType.Planetary, "Eoch Blao RD-B e1474", 2, true, "Eoch Blao RD-B e1474", (decimal?)4384.9375, (decimal?)-248.4375, (decimal?)27146.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21655, Nebula.NebulaType.Planetary, "Eoch Blao SI-T e3-2057", 2, true, "Eoch Blao SI-T e3-2057", (decimal?)4810.34375, (decimal?)-920.71875, (decimal?)27817.625, (int)10 )); + AllOfThem.Add(new Nebula( 21656, Nebula.NebulaType.Planetary, "Eoch Blao TE-Q e5-3793", 2, true, "Eoch Blao TE-Q e5-3793", (decimal?)4364.84375, (decimal?)-634.90625, (decimal?)28073.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21657, Nebula.NebulaType.Planetary, "Eoch Blao UZ-O e6-3694", 2, true, "Eoch Blao UZ-O e6-3694", (decimal?)4832.0625, (decimal?)-75.84375, (decimal?)28287.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21658, Nebula.NebulaType.Planetary, "Eoch Blao WP-O e6-8625", 2, true, "Eoch Blao WP-O e6-8625", (decimal?)4539.375, (decimal?)-466.71875, (decimal?)28312.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21659, Nebula.NebulaType.Planetary, "Eoch Blao XZ-P e5-9127", 2, true, "Eoch Blao XZ-P e5-9127", (decimal?)4718.71875, (decimal?)-690.8125, (decimal?)28205.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21660, Nebula.NebulaType.Planetary, "Eoch Blao YU-X e1-3849", 2, true, "Eoch Blao YU-X e1-3849", (decimal?)4557.59375, (decimal?)-41.75, (decimal?)27543.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21665, Nebula.NebulaType.Planetary, "Eoch Bli JR-V e2-6049", 2, true, "Eoch Bli JR-V e2-6049", (decimal?)2461.875, (decimal?)-383.21875, (decimal?)27577.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21698, Nebula.NebulaType.Planetary, "Eoch Byoea AA-Z e3179", 2, true, "Eoch Byoea AA-Z e3179", (decimal?)4532.90625, (decimal?)-585.84375, (decimal?)29925.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21699, Nebula.NebulaType.Planetary, "Eoch Byoea AF-Z e3915", 2, true, "Eoch Byoea AF-Z e3915", (decimal?)4801.3125, (decimal?)-360.40625, (decimal?)29926.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21700, Nebula.NebulaType.Planetary, "Eoch Byoea CK-A e3271", 2, true, "Eoch Byoea CK-A e3271", (decimal?)4818.375, (decimal?)-852.28125, (decimal?)29666.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21701, Nebula.NebulaType.Planetary, "Eoch Byoea CV-Y e6266", 2, true, "Eoch Byoea CV-Y e6266", (decimal?)4535.03125, (decimal?)-740, (decimal?)29921.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21702, Nebula.NebulaType.Planetary, "Eoch Byoea CV-Y e8854", 2, true, "Eoch Byoea CV-Y e8854", (decimal?)4574.90625, (decimal?)-761.28125, (decimal?)29898.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21703, Nebula.NebulaType.Planetary, "Eoch Byoea FB-O e6-2674", 2, true, "Eoch Byoea FB-O e6-2674", (decimal?)4933.875, (decimal?)-844.34375, (decimal?)30779.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21704, Nebula.NebulaType.Planetary, "Eoch Byoea HN-S e4-2772", 2, true, "Eoch Byoea HN-S e4-2772", (decimal?)4024.0625, (decimal?)-160.0625, (decimal?)30503.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21705, Nebula.NebulaType.Planetary, "Eoch Byoea JX-T e3-4114", 2, true, "Eoch Byoea JX-T e3-4114", (decimal?)4279.34375, (decimal?)-403.78125, (decimal?)30316.875, (int)10 )); + AllOfThem.Add(new Nebula( 21706, Nebula.NebulaType.Planetary, "Eoch Byoea KH-V e2-3056", 2, true, "Eoch Byoea KH-V e2-3056", (decimal?)4475.40625, (decimal?)-820.90625, (decimal?)30155.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21707, Nebula.NebulaType.Planetary, "Eoch Byoea KH-V e2-9759", 2, true, "Eoch Byoea KH-V e2-9759", (decimal?)4495.125, (decimal?)-725.46875, (decimal?)30291.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21708, Nebula.NebulaType.Planetary, "Eoch Byoea LW-W e1-6284", 2, true, "Eoch Byoea LW-W e1-6284", (decimal?)4994.84375, (decimal?)-863.40625, (decimal?)30089.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21709, Nebula.NebulaType.Planetary, "Eoch Byoea NC-V e2-4824", 2, true, "Eoch Byoea NC-V e2-4824", (decimal?)4726.96875, (decimal?)-874.75, (decimal?)30227.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21710, Nebula.NebulaType.Planetary, "Eoch Byoea UU-O e6-7212", 2, true, "Eoch Byoea UU-O e6-7212", (decimal?)4489.65625, (decimal?)-339.4375, (decimal?)30915.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21711, Nebula.NebulaType.Planetary, "Eoch Byoea VK-O e6-321", 2, true, "Eoch Byoea VK-O e6-321", (decimal?)4066.53125, (decimal?)-613.53125, (decimal?)30906.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21712, Nebula.NebulaType.Planetary, "Eoch Byoea VT-A e8143", 2, true, "Eoch Byoea VT-A e8143", (decimal?)4402.46875, (decimal?)-587.59375, (decimal?)29666.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21816, Nebula.NebulaType.Planetary, "Eok Byio CB-X e1-2033", 2, true, "Eok Byio CB-X e1-2033", (decimal?)7686.15625, (decimal?)-748.125, (decimal?)30130.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21817, Nebula.NebulaType.Planetary, "Eok Byio QD-B e212", 2, true, "Eok Byio QD-B e212", (decimal?)7940.8125, (decimal?)-263.4375, (decimal?)29744.875, (int)10 )); + AllOfThem.Add(new Nebula( 21861, Nebula.NebulaType.Planetary, "Eok Pra HR-V e2-143", 2, true, "Eok Pra HR-V e2-143", (decimal?)842.03125, (decimal?)-1638.90625, (decimal?)20027.875, (int)10 )); + AllOfThem.Add(new Nebula( 21862, Nebula.NebulaType.Planetary, "Eok Pruae FW-V e2-3343", 2, true, "Eok Pruae FW-V e2-3343", (decimal?)-1772.375, (decimal?)-330.5, (decimal?)19940.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21863, Nebula.NebulaType.Planetary, "Eok Pruae IB-X e1-4632", 2, true, "Eok Pruae IB-X e1-4632", (decimal?)-1616.1875, (decimal?)-822.71875, (decimal?)19767.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21864, Nebula.NebulaType.Planetary, "Eok Pruae KC-U e3-4875", 2, true, "Eok Pruae KC-U e3-4875", (decimal?)-1640.75, (decimal?)-230.125, (decimal?)20178.125, (int)10 )); + AllOfThem.Add(new Nebula( 21865, Nebula.NebulaType.Planetary, "Eok Pruae NH-V e2-1423", 2, true, "Eok Pruae NH-V e2-1423", (decimal?)-1399.96875, (decimal?)-766.96875, (decimal?)19941.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21866, Nebula.NebulaType.Planetary, "Eok Pruae PI-S e4-2295", 2, true, "Eok Pruae PI-S e4-2295", (decimal?)-1406.5625, (decimal?)-274.65625, (decimal?)20354.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21867, Nebula.NebulaType.Planetary, "Eok Pruae RO-R e4-2481", 2, true, "Eok Pruae RO-R e4-2481", (decimal?)-2405.75, (decimal?)-960.28125, (decimal?)20272.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21868, Nebula.NebulaType.Planetary, "Eok Pruae SZ-P e5-1569", 2, true, "Eok Pruae SZ-P e5-1569", (decimal?)-2512.3125, (decimal?)-682.96875, (decimal?)20450.875, (int)10 )); + AllOfThem.Add(new Nebula( 21869, Nebula.NebulaType.Planetary, "Eok Pruae TI-T e3-3338", 2, true, "Eok Pruae TI-T e3-3338", (decimal?)-1474.4375, (decimal?)-946.8125, (decimal?)20153.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21870, Nebula.NebulaType.Planetary, "Eok Pruae TZ-P e5-102", 2, true, "Eok Pruae TZ-P e5-102", (decimal?)-2450.5, (decimal?)-761.0625, (decimal?)20383.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21871, Nebula.NebulaType.Planetary, "Eok Pruae WO-R e4-8930", 2, true, "Eok Pruae WO-R e4-8930", (decimal?)-1530.375, (decimal?)-888.78125, (decimal?)20307.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21872, Nebula.NebulaType.Planetary, "Eok Pruae YJ-Z e2542", 2, true, "Eok Pruae YJ-Z e2542", (decimal?)-1605.0625, (decimal?)-264.4375, (decimal?)19690.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21873, Nebula.NebulaType.Planetary, "Eok Pruae YU-Y e5581", 2, true, "Eok Pruae YU-Y e5581", (decimal?)-2483.8125, (decimal?)-796.59375, (decimal?)19712.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21874, Nebula.NebulaType.Planetary, "Eok Pruae YZ-P e5-4909", 2, true, "Eok Pruae YZ-P e5-4909", (decimal?)-1507.40625, (decimal?)-817.6875, (decimal?)20396.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21875, Nebula.NebulaType.Planetary, "Eok Pruae YZ-P e5-5407", 2, true, "Eok Pruae YZ-P e5-5407", (decimal?)-1531.84375, (decimal?)-703.875, (decimal?)20425, (int)10 )); + AllOfThem.Add(new Nebula( 21876, Nebula.NebulaType.Planetary, "Eok Pruae ZZ-Y e6516", 2, true, "Eok Pruae ZZ-Y e6516", (decimal?)-2061.40625, (decimal?)-657.5625, (decimal?)19679.125, (int)10 )); + AllOfThem.Add(new Nebula( 21944, Nebula.NebulaType.Planetary, "Eor Aub CQ-P e5-2148", 2, true, "Eor Aub CQ-P e5-2148", (decimal?)-4130.375, (decimal?)284.25, (decimal?)20391.5, (int)10 )); + AllOfThem.Add(new Nebula( 21947, Nebula.NebulaType.Planetary, "Eor Aub FW-N e6-3709", 2, true, "Eor Aub FW-N e6-3709", (decimal?)-4350.6875, (decimal?)261.5, (decimal?)20583.875, (int)10 )); + AllOfThem.Add(new Nebula( 21948, Nebula.NebulaType.Planetary, "Eor Aub HG-X e1-7477", 2, true, "Eor Aub HG-X e1-7477", (decimal?)-4053.6875, (decimal?)682.0625, (decimal?)19881.375, (int)10 )); + AllOfThem.Add(new Nebula( 21953, Nebula.NebulaType.Planetary, "Eor Aub TJ-Q e5-4447", 2, true, "Eor Aub TJ-Q e5-4447", (decimal?)-4298.71875, (decimal?)840.59375, (decimal?)20506.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21955, Nebula.NebulaType.Planetary, "Eor Aub VU-O e6-7480", 2, true, "Eor Aub VU-O e6-7480", (decimal?)-4332.90625, (decimal?)981.34375, (decimal?)20602.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21958, Nebula.NebulaType.Planetary, "Eor Auscs HR-V e2-328", 2, true, "Eor Auscs HR-V e2-328", (decimal?)3354.625, (decimal?)786.5, (decimal?)19962.25, (int)10 )); + AllOfThem.Add(new Nebula( 21959, Nebula.NebulaType.Planetary, "Eor Auscs TD-B e194", 2, true, "Eor Auscs TD-B e194", (decimal?)3339.28125, (decimal?)950.53125, (decimal?)19452.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21960, Nebula.NebulaType.Planetary, "Eor Auscs TJ-Q e5-826", 2, true, "Eor Auscs TJ-Q e5-826", (decimal?)3309.03125, (decimal?)788, (decimal?)20519.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21961, Nebula.NebulaType.Planetary, "Eor Auscs VE-Z e3090", 2, true, "Eor Auscs VE-Z e3090", (decimal?)2667.21875, (decimal?)831.4375, (decimal?)19721.5, (int)10 )); + AllOfThem.Add(new Nebula( 21962, Nebula.NebulaType.Planetary, "Eor Auscs WO-A e1125", 2, true, "Eor Auscs WO-A e1125", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 21963, Nebula.NebulaType.Planetary, "Eor Auscs XO-R e4-223", 2, true, "Eor Auscs XO-R e4-223", (decimal?)3673.59375, (decimal?)329.59375, (decimal?)20368.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21964, Nebula.NebulaType.Planetary, "Eor Auscs XP-P e5-3981", 2, true, "Eor Auscs XP-P e5-3981", (decimal?)2746.25, (decimal?)167.375, (decimal?)20381.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21973, Nebula.NebulaType.Planetary, "Eor Chruia DR-V e2-10457", 2, true, "Eor Chruia DR-V e2-10457", (decimal?)2728.5625, (decimal?)827.90625, (decimal?)27609.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21979, Nebula.NebulaType.Planetary, "Eor Chruia YJ-R e4-601", 2, true, "Eor Chruia YJ-R e4-601", (decimal?)3579.4375, (decimal?)160.65625, (decimal?)27903.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22000, Nebula.NebulaType.Planetary, "Eord Blao BP-A e3451", 2, true, "Eord Blao BP-A e3451", (decimal?)6179.21875, (decimal?)-704.65625, (decimal?)27118.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22001, Nebula.NebulaType.Planetary, "Eord Blao CQ-X e1-1961", 2, true, "Eord Blao CQ-X e1-1961", (decimal?)6040.65625, (decimal?)-274.46875, (decimal?)27554.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22002, Nebula.NebulaType.Planetary, "Eord Blao DG-X e1-9219", 2, true, "Eord Blao DG-X e1-9219", (decimal?)5694.1875, (decimal?)-542.96875, (decimal?)27573.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22003, Nebula.NebulaType.Planetary, "Eord Blao JI-S e4-7234", 2, true, "Eord Blao JI-S e4-7234", (decimal?)5235.96875, (decimal?)-197.53125, (decimal?)28043.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22004, Nebula.NebulaType.Planetary, "Eord Blao JM-V e2-8294", 2, true, "Eord Blao JM-V e2-8294", (decimal?)5877.25, (decimal?)-593.25, (decimal?)27729.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22005, Nebula.NebulaType.Planetary, "Eord Blao NN-S e4-1263", 2, true, "Eord Blao NN-S e4-1263", (decimal?)6257.6875, (decimal?)-146.25, (decimal?)28009.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22006, Nebula.NebulaType.Planetary, "Eord Blao NN-T e3-9762", 2, true, "Eord Blao NN-T e3-9762", (decimal?)5587.25, (decimal?)-672.125, (decimal?)27794.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22007, Nebula.NebulaType.Planetary, "Eord Blao NO-Q e5-8664", 2, true, "Eord Blao NO-Q e5-8664", (decimal?)5356.71875, (decimal?)-329.90625, (decimal?)28079.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22008, Nebula.NebulaType.Planetary, "Eord Blao ON-T e3-3573", 2, true, "Eord Blao ON-T e3-3573", (decimal?)5788.75, (decimal?)-698.6875, (decimal?)27786.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22009, Nebula.NebulaType.Planetary, "Eord Blao ON-T e3-6714", 2, true, "Eord Blao ON-T e3-6714", (decimal?)5849.8125, (decimal?)-817.6875, (decimal?)27758.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22010, Nebula.NebulaType.Planetary, "Eord Blao RT-R e4-6390", 2, true, "Eord Blao RT-R e4-6390", (decimal?)5626.875, (decimal?)-696.6875, (decimal?)28050.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22011, Nebula.NebulaType.Planetary, "Eord Blao RU-O e6-5505", 2, true, "Eord Blao RU-O e6-5505", (decimal?)5263.46875, (decimal?)-211.96875, (decimal?)28293.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22012, Nebula.NebulaType.Planetary, "Eord Blao TE-Q e5-917", 2, true, "Eord Blao TE-Q e5-917", (decimal?)5610.375, (decimal?)-533.375, (decimal?)28175.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22013, Nebula.NebulaType.Planetary, "Eord Blao TI-T e3-1117", 2, true, "Eord Blao TI-T e3-1117", (decimal?)6222.875, (decimal?)-953.53125, (decimal?)27820.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22014, Nebula.NebulaType.Planetary, "Eord Blao VJ-Q e5-5792", 2, true, "Eord Blao VJ-Q e5-5792", (decimal?)6301.71875, (decimal?)-360.5625, (decimal?)28184.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22015, Nebula.NebulaType.Planetary, "Eord Blao VO-Z e5366", 2, true, "Eord Blao VO-Z e5366", (decimal?)5967.84375, (decimal?)-94.0625, (decimal?)27370.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22016, Nebula.NebulaType.Planetary, "Eord Blao WT-A e8764", 2, true, "Eord Blao WT-A e8764", (decimal?)5849.90625, (decimal?)-614.375, (decimal?)27210.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22017, Nebula.NebulaType.Planetary, "Eord Blao YJ-Z e2110", 2, true, "Eord Blao YJ-Z e2110", (decimal?)6081.65625, (decimal?)-321.40625, (decimal?)27398.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22018, Nebula.NebulaType.Planetary, "Eord Blao ZA-O e6-649", 2, true, "Eord Blao ZA-O e6-649", (decimal?)5228.96875, (decimal?)-949.71875, (decimal?)28246.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22030, Nebula.NebulaType.Planetary, "Eord Blue RO-R e4-96", 2, true, "Eord Blue RO-R e4-96", (decimal?)5315.59375, (decimal?)-2234.53125, (decimal?)27991.375, (int)10 )); + AllOfThem.Add(new Nebula( 22032, Nebula.NebulaType.Planetary, "Eord Byio BQ-Y e2693", 2, true, "Eord Byio BQ-Y e2693", (decimal?)2759.71875, (decimal?)-904.53125, (decimal?)29931.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22033, Nebula.NebulaType.Planetary, "Eord Byio BQ-Y e7887", 2, true, "Eord Byio BQ-Y e7887", (decimal?)2685.15625, (decimal?)-858.8125, (decimal?)29911.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22034, Nebula.NebulaType.Planetary, "Eord Byio DB-O e6-2622", 2, true, "Eord Byio DB-O e6-2622", (decimal?)3425.78125, (decimal?)-877, (decimal?)30898.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22035, Nebula.NebulaType.Planetary, "Eord Byio DK-A e6818", 2, true, "Eord Byio DK-A e6818", (decimal?)3629.28125, (decimal?)-833.40625, (decimal?)29706.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22036, Nebula.NebulaType.Planetary, "Eord Byio EB-O e6-362", 2, true, "Eord Byio EB-O e6-362", (decimal?)3541.90625, (decimal?)-908.65625, (decimal?)30845.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22037, Nebula.NebulaType.Planetary, "Eord Byio EB-O e6-6102", 2, true, "Eord Byio EB-O e6-6102", (decimal?)3456.1875, (decimal?)-921.78125, (decimal?)30848.5, (int)10 )); + AllOfThem.Add(new Nebula( 22038, Nebula.NebulaType.Planetary, "Eord Byio JL-Y e544", 2, true, "Eord Byio JL-Y e544", (decimal?)3641, (decimal?)-1114.40625, (decimal?)29895.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22039, Nebula.NebulaType.Planetary, "Eord Byio NH-V e2-6522", 2, true, "Eord Byio NH-V e2-6522", (decimal?)3681.96875, (decimal?)-671.75, (decimal?)30186.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22040, Nebula.NebulaType.Planetary, "Eord Byio SI-T e3-5339", 2, true, "Eord Byio SI-T e3-5339", (decimal?)3606.15625, (decimal?)-926.53125, (decimal?)30313.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22041, Nebula.NebulaType.Planetary, "Eord Byio WO-R e4-7935", 2, true, "Eord Byio WO-R e4-7935", (decimal?)3582.5, (decimal?)-969.09375, (decimal?)30511.25, (int)10 )); + AllOfThem.Add(new Nebula( 22068, Nebula.NebulaType.Planetary, "Eord Pri CQ-P e5-1656", 2, true, "Eord Pri CQ-P e5-1656", (decimal?)-4102.5, (decimal?)-1091.15625, (decimal?)20531.75, (int)10 )); + AllOfThem.Add(new Nebula( 22072, Nebula.NebulaType.Planetary, "Eord Pri NH-V e2-7462", 2, true, "Eord Pri NH-V e2-7462", (decimal?)-3960.59375, (decimal?)-800.875, (decimal?)20000.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22075, Nebula.NebulaType.Planetary, "Eord Pri RZ-O e6-3272", 2, true, "Eord Pri RZ-O e6-3272", (decimal?)-4551.75, (decimal?)-82.40625, (decimal?)20543.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22076, Nebula.NebulaType.Planetary, "Eord Pri SO-Q e5-2554", 2, true, "Eord Pri SO-Q e5-2554", (decimal?)-4197.4375, (decimal?)-281.0625, (decimal?)20447.375, (int)10 )); + AllOfThem.Add(new Nebula( 22077, Nebula.NebulaType.Planetary, "Eord Pri VZ-O e6-1653", 2, true, "Eord Pri VZ-O e6-1653", (decimal?)-3975.59375, (decimal?)-135.25, (decimal?)20674.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22079, Nebula.NebulaType.Planetary, "Eord Pri YU-P e5-4070", 2, true, "Eord Pri YU-P e5-4070", (decimal?)-4526.03125, (decimal?)-854.75, (decimal?)20503.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22094, Nebula.NebulaType.Planetary, "Eorl Auwsy EW-W e1-406", 2, true, "Eorl Auwsy EW-W e1-406", (decimal?)3820.3125, (decimal?)436.875, (decimal?)19751.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22095, Nebula.NebulaType.Planetary, "Eorl Auwsy HG-Y e5744", 2, true, "Eorl Auwsy HG-Y e5744", (decimal?)4410.1875, (decimal?)17.5, (decimal?)19698.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22096, Nebula.NebulaType.Planetary, "Eorl Auwsy NC-V e2-314", 2, true, "Eorl Auwsy NC-V e2-314", (decimal?)4620.21875, (decimal?)408.84375, (decimal?)19942.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22097, Nebula.NebulaType.Planetary, "Eorl Auwsy NS-U e2-1297", 2, true, "Eorl Auwsy NS-U e2-1297", (decimal?)4011.40625, (decimal?)112.1875, (decimal?)19910, (int)10 )); + AllOfThem.Add(new Nebula( 22098, Nebula.NebulaType.Planetary, "Eorl Auwsy NS-U e2-7217", 2, true, "Eorl Auwsy NS-U e2-7217", (decimal?)4063.84375, (decimal?)121.5, (decimal?)19956.625, (int)10 )); + AllOfThem.Add(new Nebula( 22099, Nebula.NebulaType.Planetary, "Eorl Auwsy VK-O e6-940", 2, true, "Eorl Auwsy VK-O e6-940", (decimal?)4019.03125, (decimal?)631.375, (decimal?)20675.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22100, Nebula.NebulaType.Planetary, "Eorl Auwsy ZA-O e6-2070", 2, true, "Eorl Auwsy ZA-O e6-2070", (decimal?)3942.9375, (decimal?)335.03125, (decimal?)20553.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22101, Nebula.NebulaType.Planetary, "Eorl Braea CL-Y e247", 2, true, "Eorl Braea CL-Y e247", (decimal?)3787.125, (decimal?)1460, (decimal?)29829.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22102, Nebula.NebulaType.Planetary, "Eorl Braea TY-A e3", 2, true, "Eorl Braea TY-A e3", (decimal?)4369.84375, (decimal?)2116.90625, (decimal?)29676.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22129, Nebula.NebulaType.Planetary, "Eorl Brou CW-V e2-2350", 2, true, "Eorl Brou CW-V e2-2350", (decimal?)4170.65625, (decimal?)1028.5625, (decimal?)30268.375, (int)10 )); + AllOfThem.Add(new Nebula( 22130, Nebula.NebulaType.Planetary, "Eorl Brou GH-V e2-6104", 2, true, "Eorl Brou GH-V e2-6104", (decimal?)3882.59375, (decimal?)540.6875, (decimal?)30176.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22131, Nebula.NebulaType.Planetary, "Eorl Brou GW-W e1-2095", 2, true, "Eorl Brou GW-W e1-2095", (decimal?)4254.5, (decimal?)302.21875, (decimal?)30031.625, (int)10 )); + AllOfThem.Add(new Nebula( 22132, Nebula.NebulaType.Planetary, "Eorl Brou HG-X e1-1078", 2, true, "Eorl Brou HG-X e1-1078", (decimal?)4997.71875, (decimal?)726.3125, (decimal?)30080.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22133, Nebula.NebulaType.Planetary, "Eorl Brou IM-W e1-1968", 2, true, "Eorl Brou IM-W e1-1968", (decimal?)3869.8125, (decimal?)126.21875, (decimal?)30127.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22134, Nebula.NebulaType.Planetary, "Eorl Brou NC-V e2-3775", 2, true, "Eorl Brou NC-V e2-3775", (decimal?)4657.5, (decimal?)318.6875, (decimal?)30254.875, (int)10 )); + AllOfThem.Add(new Nebula( 22135, Nebula.NebulaType.Planetary, "Eorl Brou OJ-Q e5-3351", 2, true, "Eorl Brou OJ-Q e5-3351", (decimal?)3898.84375, (decimal?)800.0625, (decimal?)30710, (int)10 )); + AllOfThem.Add(new Nebula( 22136, Nebula.NebulaType.Planetary, "Eorl Brou QJ-Q e5-5579", 2, true, "Eorl Brou QJ-Q e5-5579", (decimal?)4164.0625, (decimal?)891, (decimal?)30771.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22137, Nebula.NebulaType.Planetary, "Eorl Brou RD-T e3-4520", 2, true, "Eorl Brou RD-T e3-4520", (decimal?)4340.71875, (decimal?)215.78125, (decimal?)30336.25, (int)10 )); + AllOfThem.Add(new Nebula( 22138, Nebula.NebulaType.Planetary, "Eorl Brou RO-Q e5-1205", 2, true, "Eorl Brou RO-Q e5-1205", (decimal?)4643.6875, (decimal?)1089.5, (decimal?)30623.375, (int)10 )); + AllOfThem.Add(new Nebula( 22139, Nebula.NebulaType.Planetary, "Eorl Brou TT-R e4-9646", 2, true, "Eorl Brou TT-R e4-9646", (decimal?)4646.90625, (decimal?)588.90625, (decimal?)30513.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22140, Nebula.NebulaType.Planetary, "Eorl Brou TZ-P e5-3323", 2, true, "Eorl Brou TZ-P e5-3323", (decimal?)4028.46875, (decimal?)610.375, (decimal?)30698.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22141, Nebula.NebulaType.Planetary, "Eorl Brou XP-O e6-7341", 2, true, "Eorl Brou XP-O e6-7341", (decimal?)4656.09375, (decimal?)891.46875, (decimal?)30911, (int)10 )); + AllOfThem.Add(new Nebula( 22142, Nebula.NebulaType.Planetary, "Eorl Brou XZ-P e5-7544", 2, true, "Eorl Brou XZ-P e5-7544", (decimal?)4618.1875, (decimal?)577.1875, (decimal?)30755.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22143, Nebula.NebulaType.Planetary, "Eorl Brou YJ-A e5076", 2, true, "Eorl Brou YJ-A e5076", (decimal?)4109.40625, (decimal?)313, (decimal?)29746.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22144, Nebula.NebulaType.Planetary, "Eorl Brou YT-A e4264", 2, true, "Eorl Brou YT-A e4264", (decimal?)4843.96875, (decimal?)690.84375, (decimal?)29698.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22148, Nebula.NebulaType.Planetary, "Eorl Chroa AP-A e12658", 2, true, "Eorl Chroa AP-A e12658", (decimal?)4856.1875, (decimal?)499.5625, (decimal?)27236.5, (int)10 )); + AllOfThem.Add(new Nebula( 22149, Nebula.NebulaType.Planetary, "Eorl Chroa AV-Y e3608", 2, true, "Eorl Chroa AV-Y e3608", (decimal?)4232.21875, (decimal?)462.9375, (decimal?)27369.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22150, Nebula.NebulaType.Planetary, "Eorl Chroa CW-V e2-2713", 2, true, "Eorl Chroa CW-V e2-2713", (decimal?)4206.25, (decimal?)1001.375, (decimal?)27599.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22151, Nebula.NebulaType.Planetary, "Eorl Chroa GB-X e1-3432", 2, true, "Eorl Chroa GB-X e1-3432", (decimal?)4456.625, (decimal?)587.8125, (decimal?)27516, (int)10 )); + AllOfThem.Add(new Nebula( 22152, Nebula.NebulaType.Planetary, "Eorl Chroa NS-T e3-6804", 2, true, "Eorl Chroa NS-T e3-6804", (decimal?)4647.8125, (decimal?)657.5, (decimal?)27844.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22153, Nebula.NebulaType.Planetary, "Eorl Chroa TE-Q e5-89", 2, true, "Eorl Chroa TE-Q e5-89", (decimal?)4293.875, (decimal?)746.71875, (decimal?)28087.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22154, Nebula.NebulaType.Planetary, "Eorl Chroa TO-R e4-8594", 2, true, "Eorl Chroa TO-R e4-8594", (decimal?)4352.6875, (decimal?)318.0625, (decimal?)27959.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22155, Nebula.NebulaType.Planetary, "Eorl Chroa VO-A e4454", 2, true, "Eorl Chroa VO-A e4454", (decimal?)3995.875, (decimal?)603.3125, (decimal?)27147.125, (int)10 )); + AllOfThem.Add(new Nebula( 22156, Nebula.NebulaType.Planetary, "Eorl Chroa WT-A e5733", 2, true, "Eorl Chroa WT-A e5733", (decimal?)4573.25, (decimal?)693.0625, (decimal?)27123, (int)10 )); + AllOfThem.Add(new Nebula( 22157, Nebula.NebulaType.Planetary, "Eorl Chroa WY-A e5620", 2, true, "Eorl Chroa WY-A e5620", (decimal?)4808.3125, (decimal?)905.09375, (decimal?)27228.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22158, Nebula.NebulaType.Planetary, "Eorl Chroa YT-A e6321", 2, true, "Eorl Chroa YT-A e6321", (decimal?)4849.625, (decimal?)748.84375, (decimal?)27119.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22162, Nebula.NebulaType.Planetary, "Eorld Byio AG-X e1-5004", 2, true, "Eorld Byio AG-X e1-5004", (decimal?)6399.71875, (decimal?)-601.84375, (decimal?)30024.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22163, Nebula.NebulaType.Planetary, "Eorld Byio EC-U e3-3581", 2, true, "Eorld Byio EC-U e3-3581", (decimal?)6407.8125, (decimal?)-282.03125, (decimal?)30331, (int)10 )); + AllOfThem.Add(new Nebula( 22164, Nebula.NebulaType.Planetary, "Eorld Byio EH-U e3-1783", 2, true, "Eorld Byio EH-U e3-1783", (decimal?)6683.84375, (decimal?)-170.40625, (decimal?)30319.125, (int)10 )); + AllOfThem.Add(new Nebula( 22165, Nebula.NebulaType.Planetary, "Eorld Byio HC-U e3-6954", 2, true, "Eorld Byio HC-U e3-6954", (decimal?)6949.46875, (decimal?)-243.25, (decimal?)30379.375, (int)10 )); + AllOfThem.Add(new Nebula( 22166, Nebula.NebulaType.Planetary, "Eorld Byio SI-T e3-140", 2, true, "Eorld Byio SI-T e3-140", (decimal?)7393.5625, (decimal?)-952.15625, (decimal?)30445.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22167, Nebula.NebulaType.Planetary, "Eorld Byio WT-A e5379", 2, true, "Eorld Byio WT-A e5379", (decimal?)7036.28125, (decimal?)-529.125, (decimal?)29760.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22168, Nebula.NebulaType.Planetary, "Eorld Byio YU-P e5-2107", 2, true, "Eorld Byio YU-P e5-2107", (decimal?)7071.46875, (decimal?)-920.96875, (decimal?)30629.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22169, Nebula.NebulaType.Planetary, "Eorld Byio ZU-X e1-66", 2, true, "Eorld Byio ZU-X e1-66", (decimal?)7232.5625, (decimal?)-168.3125, (decimal?)30056.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22184, Nebula.NebulaType.Planetary, "Eorld Pra OZ-O e6-3731", 2, true, "Eorld Pra OZ-O e6-3731", (decimal?)-1252.15625, (decimal?)-1453.25, (decimal?)20613.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22185, Nebula.NebulaType.Planetary, "Eorld Pra RZ-O e6-3410", 2, true, "Eorld Pra RZ-O e6-3410", (decimal?)-765.53125, (decimal?)-1414.5, (decimal?)20604.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22186, Nebula.NebulaType.Planetary, "Eorld Pra VE-Q e5-779", 2, true, "Eorld Pra VE-Q e5-779", (decimal?)-463.78125, (decimal?)-1878.34375, (decimal?)20381.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22187, Nebula.NebulaType.Planetary, "Eorld Pra WK-O e6-299", 2, true, "Eorld Pra WK-O e6-299", (decimal?)-896.65625, (decimal?)-1802.125, (decimal?)20574.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22188, Nebula.NebulaType.Planetary, "Eorld Pra XK-O e6-149", 2, true, "Eorld Pra XK-O e6-149", (decimal?)-786.34375, (decimal?)-1874.53125, (decimal?)20549.375, (int)10 )); + AllOfThem.Add(new Nebula( 22189, Nebula.NebulaType.Planetary, "Eorld Pri CQ-Y e4602", 2, true, "Eorld Pri CQ-Y e4602", (decimal?)-915.21875, (decimal?)-964.0625, (decimal?)19726.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22190, Nebula.NebulaType.Planetary, "Eorld Pri IH-V e2-607", 2, true, "Eorld Pri IH-V e2-607", (decimal?)-987.6875, (decimal?)-800.6875, (decimal?)19999.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22191, Nebula.NebulaType.Planetary, "Eorld Pri IN-S e4-1502", 2, true, "Eorld Pri IN-S e4-1502", (decimal?)-989.9375, (decimal?)-176.78125, (decimal?)20287.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22192, Nebula.NebulaType.Planetary, "Eorld Pri JI-S e4-931", 2, true, "Eorld Pri JI-S e4-931", (decimal?)-1066.90625, (decimal?)-194.5625, (decimal?)20220.25, (int)10 )); + AllOfThem.Add(new Nebula( 22193, Nebula.NebulaType.Planetary, "Eorld Pri QI-T e3-5420", 2, true, "Eorld Pri QI-T e3-5420", (decimal?)-702.25, (decimal?)-866.875, (decimal?)20139.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22194, Nebula.NebulaType.Planetary, "Eorld Pri RO-Q e5-1037", 2, true, "Eorld Pri RO-Q e5-1037", (decimal?)-539.53125, (decimal?)-261.03125, (decimal?)20523.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22195, Nebula.NebulaType.Planetary, "Eorld Pri XZ-P e5-3945", 2, true, "Eorld Pri XZ-P e5-3945", (decimal?)-477.71875, (decimal?)-798.25, (decimal?)20519.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22196, Nebula.NebulaType.Planetary, "Eorld Proo XO-Z e2335", 2, true, "Eorld Proo XO-Z e2335", (decimal?)-2780.46875, (decimal?)-1372.78125, (decimal?)19639.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22197, Nebula.NebulaType.Planetary, "Eorld Proo YU-X e1-1068", 2, true, "Eorld Proo YU-X e1-1068", (decimal?)-3209.4375, (decimal?)-1429.40625, (decimal?)19757.125, (int)10 )); + AllOfThem.Add(new Nebula( 22227, Nebula.NebulaType.Planetary, "Eorm Chruia DF-A e8312", 2, true, "Eorm Chruia DF-A e8312", (decimal?)7265.90625, (decimal?)209.8125, (decimal?)27249.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22228, Nebula.NebulaType.Planetary, "Eorm Chruia DK-A e4986", 2, true, "Eorm Chruia DK-A e4986", (decimal?)7585.375, (decimal?)375.5625, (decimal?)27156.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22229, Nebula.NebulaType.Planetary, "Eorm Chruia FB-X e1-2821", 2, true, "Eorm Chruia FB-X e1-2821", (decimal?)6919.625, (decimal?)512.8125, (decimal?)27482.375, (int)10 )); + AllOfThem.Add(new Nebula( 22230, Nebula.NebulaType.Planetary, "Eorm Chruia GR-W e1-10981", 2, true, "Eorm Chruia GR-W e1-10981", (decimal?)6376.28125, (decimal?)247.25, (decimal?)27542.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22231, Nebula.NebulaType.Planetary, "Eorm Chruia IB-X e1-751", 2, true, "Eorm Chruia IB-X e1-751", (decimal?)7319.59375, (decimal?)582.5625, (decimal?)27464.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22232, Nebula.NebulaType.Planetary, "Eorm Chruia KW-W e1-3519", 2, true, "Eorm Chruia KW-W e1-3519", (decimal?)7295.28125, (decimal?)384.8125, (decimal?)27421.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22233, Nebula.NebulaType.Planetary, "Eorm Chruia KX-U e2-3796", 2, true, "Eorm Chruia KX-U e2-3796", (decimal?)6470.09375, (decimal?)280.4375, (decimal?)27723.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22234, Nebula.NebulaType.Planetary, "Eorm Chruia LR-W e1-418", 2, true, "Eorm Chruia LR-W e1-418", (decimal?)7247.3125, (decimal?)190.375, (decimal?)27548.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22235, Nebula.NebulaType.Planetary, "Eorm Chruia PT-R e4-438", 2, true, "Eorm Chruia PT-R e4-438", (decimal?)6615.65625, (decimal?)462.15625, (decimal?)27987.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22236, Nebula.NebulaType.Planetary, "Eorm Chruia TJ-R e4-3801", 2, true, "Eorm Chruia TJ-R e4-3801", (decimal?)6585.1875, (decimal?)255.90625, (decimal?)27980.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22237, Nebula.NebulaType.Planetary, "Eorm Chruia WZ-Y e7524", 2, true, "Eorm Chruia WZ-Y e7524", (decimal?)6358.28125, (decimal?)624.6875, (decimal?)27301.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22238, Nebula.NebulaType.Planetary, "Eorm Chruia ZP-P e5-7164", 2, true, "Eorm Chruia ZP-P e5-7164", (decimal?)6827.84375, (decimal?)202.5, (decimal?)28128.75, (int)10 )); + AllOfThem.Add(new Nebula( 22239, Nebula.NebulaType.Planetary, "Eorm Phyloi HM-V e2-114", 2, true, "Eorm Phyloi HM-V e2-114", (decimal?)6876.875, (decimal?)1981.71875, (decimal?)27693.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22245, Nebula.NebulaType.Planetary, "Eos Audst TD-T e3-2163", 2, true, "Eos Audst TD-T e3-2163", (decimal?)795.78125, (decimal?)1452.65625, (decimal?)20155.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22266, Nebula.NebulaType.Planetary, "Eos Broae OS-U e2-3422", 2, true, "Eos Broae OS-U e2-3422", (decimal?)8003.65625, (decimal?)96.53125, (decimal?)30245.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22267, Nebula.NebulaType.Planetary, "Eos Broae SJ-R e4-3857", 2, true, "Eos Broae SJ-R e4-3857", (decimal?)7746.78125, (decimal?)141.53125, (decimal?)30604.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22268, Nebula.NebulaType.Planetary, "Eos Broae TD-T e3-554", 2, true, "Eos Broae TD-T e3-554", (decimal?)8532.40625, (decimal?)172.46875, (decimal?)30428.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22300, Nebula.NebulaType.Planetary, "Eos Chruia HX-T e3-2424", 2, true, "Eos Chruia HX-T e3-2424", (decimal?)7805.0625, (decimal?)793.15625, (decimal?)27867.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22301, Nebula.NebulaType.Planetary, "Eos Chruia KN-T e3-4677", 2, true, "Eos Chruia KN-T e3-4677", (decimal?)7640.9375, (decimal?)516.875, (decimal?)27892.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22302, Nebula.NebulaType.Planetary, "Eos Chruia VE-R e4-2557", 2, true, "Eos Chruia VE-R e4-2557", (decimal?)7919.125, (decimal?)-6.65625, (decimal?)28037.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22303, Nebula.NebulaType.Planetary, "Eos Free BW-N e6-777", 2, true, "Eos Free BW-N e6-777", (decimal?)-2330.40625, (decimal?)250.84375, (decimal?)20554.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22304, Nebula.NebulaType.Planetary, "Eos Free DB-W e2-1287", 2, true, "Eos Free DB-W e2-1287", (decimal?)-1767.21875, (decimal?)1208.59375, (decimal?)20022.25, (int)10 )); + AllOfThem.Add(new Nebula( 22305, Nebula.NebulaType.Planetary, "Eos Free FB-W e2-2428", 2, true, "Eos Free FB-W e2-2428", (decimal?)-1366.5625, (decimal?)1229.25, (decimal?)20042.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22306, Nebula.NebulaType.Planetary, "Eos Free IS-T e3-4942", 2, true, "Eos Free IS-T e3-4942", (decimal?)-2557.34375, (decimal?)762.625, (decimal?)20102.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22307, Nebula.NebulaType.Planetary, "Eos Free KN-T e3-2", 2, true, "Eos Free KN-T e3-2", (decimal?)-2570.84375, (decimal?)466.1875, (decimal?)20065.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22308, Nebula.NebulaType.Planetary, "Eos Free OD-S e4-9707", 2, true, "Eos Free OD-S e4-9707", (decimal?)-1849.34375, (decimal?)787.3125, (decimal?)20355.5, (int)10 )); + AllOfThem.Add(new Nebula( 22309, Nebula.NebulaType.Planetary, "Eos Free XO-R e4-958", 2, true, "Eos Free XO-R e4-958", (decimal?)-1473.46875, (decimal?)412.6875, (decimal?)20373.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22310, Nebula.NebulaType.Planetary, "Eos Free YE-R e4-2188", 2, true, "Eos Free YE-R e4-2188", (decimal?)-1826.40625, (decimal?)124.1875, (decimal?)20371.625, (int)10 )); + AllOfThem.Add(new Nebula( 22311, Nebula.NebulaType.Planetary, "Eos Free YJ-Z e6214", 2, true, "Eos Free YJ-Z e6214", (decimal?)-1601.9375, (decimal?)998.6875, (decimal?)19612.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22312, Nebula.NebulaType.Planetary, "Eos Free ZE-R e4-1828", 2, true, "Eos Free ZE-R e4-1828", (decimal?)-1703.15625, (decimal?)13.6875, (decimal?)20316.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22317, Nebula.NebulaType.Planetary, "Eotchofy YP-P e5-1089", 2, true, "Eotchofy YP-P e5-1089", (decimal?)5507.46875, (decimal?)1506.34375, (decimal?)24329.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22318, Nebula.NebulaType.Planetary, "Eotchops ZA-O e6-938", 2, true, "Eotchops ZA-O e6-938", (decimal?)2798.40625, (decimal?)1666.4375, (decimal?)24526.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22319, Nebula.NebulaType.Planetary, "Eotchopt JR-N e6-2098", 2, true, "Eotchopt JR-N e6-2098", (decimal?)5052.0625, (decimal?)1355.03125, (decimal?)24498.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22320, Nebula.NebulaType.Planetary, "Eotchopt XP-P e5-2245", 2, true, "Eotchopt XP-P e5-2245", (decimal?)4089.125, (decimal?)1434.25, (decimal?)24299.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22416, Nebula.NebulaType.Planetary, "Gleeqai TO-Q e5-1266", 2, true, "Gleeqai TO-Q e5-1266", (decimal?)6238.34375, (decimal?)-1492.53125, (decimal?)25574.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22417, Nebula.NebulaType.Planetary, "Gleeqai ZA-W e2-3214", 2, true, "Gleeqai ZA-W e2-3214", (decimal?)5296.90625, (decimal?)-1391.59375, (decimal?)25050.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22430, Nebula.NebulaType.Planetary, "Granau SZ-O e6-2550", 2, true, "Granau SZ-O e6-2550", (decimal?)664.375, (decimal?)-1451.78125, (decimal?)19394.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22466, Nebula.NebulaType.Planetary, "Huemeae JM-V e2-646", 2, true, "Huemeae JM-V e2-646", (decimal?)4662.96875, (decimal?)-1855.4375, (decimal?)26347.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22467, Nebula.NebulaType.Planetary, "Huemeae ot-q e5-2826", 2, true, "Huemeae OT-Q e5-2826", (decimal?)4471.4375, (decimal?)-1457.3125, (decimal?)26884.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22472, Nebula.NebulaType.Planetary, "Huemu RE-Q e5-71", 2, true, "Huemu RE-Q e5-71", (decimal?)5345.71875, (decimal?)-1931.46875, (decimal?)26920.625, (int)10 )); + AllOfThem.Add(new Nebula( 22494, Nebula.NebulaType.Planetary, "Hypiae Aoc BF-A e2109", 2, true, "Hypiae Aoc BF-A e2109", (decimal?)1751.78125, (decimal?)195.9375, (decimal?)22099.25, (int)10 )); + AllOfThem.Add(new Nebula( 22495, Nebula.NebulaType.Planetary, "Hypiae aoc CG-X e1-10055", 2, true, "Hypiae Aoc CG-X e1-10055", (decimal?)1547.78125, (decimal?)653.03125, (decimal?)22361.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22496, Nebula.NebulaType.Planetary, "Hypiae aoc DV-Y e7724", 2, true, "Hypiae Aoc DV-Y e7724", (decimal?)2119.84375, (decimal?)458.46875, (decimal?)22148.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22497, Nebula.NebulaType.Planetary, "Hypiae aoc FC-U e3-7564", 2, true, "Hypiae Aoc FC-U e3-7564", (decimal?)1396.5, (decimal?)1091.53125, (decimal?)22758.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22498, Nebula.NebulaType.Planetary, "Hypiae Aoc FL-X e1-7897", 2, true, "Hypiae Aoc FL-X e1-7897", (decimal?)2448.75, (decimal?)826.40625, (decimal?)22353, (int)10 )); + AllOfThem.Add(new Nebula( 22499, Nebula.NebulaType.Planetary, "Hypiae Aoc HB-X e1-4640", 2, true, "Hypiae Aoc HB-X e1-4640", (decimal?)2173.09375, (decimal?)571.5625, (decimal?)22338.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22500, Nebula.NebulaType.Planetary, "Hypiae Aoc HB-X e1-5526", 2, true, "Hypiae Aoc HB-X e1-5526", (decimal?)2113.9375, (decimal?)600.0625, (decimal?)22419.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22501, Nebula.NebulaType.Planetary, "Hypiae Aoc HR-V e2-14", 2, true, "Hypiae Aoc HR-V e2-14", (decimal?)2039.5, (decimal?)845.4375, (decimal?)22511.625, (int)10 )); + AllOfThem.Add(new Nebula( 22502, Nebula.NebulaType.Planetary, "Hypiae Aoc KM-V e2-1297", 2, true, "Hypiae Aoc KM-V e2-1297", (decimal?)2257.25, (decimal?)618.21875, (decimal?)22611.5, (int)10 )); + AllOfThem.Add(new Nebula( 22503, Nebula.NebulaType.Planetary, "Hypiae Aoc KM-V e2-2596", 2, true, "Hypiae Aoc KM-V e2-2596", (decimal?)2211.46875, (decimal?)741.03125, (decimal?)22490.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22504, Nebula.NebulaType.Planetary, "Hypiae Aoc MD-S e4-5617", 2, true, "Hypiae Aoc MD-S e4-5617", (decimal?)1541.40625, (decimal?)899.5, (decimal?)22873.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22505, Nebula.NebulaType.Planetary, "Hypiae Aoc NS-T e3-8058", 2, true, "Hypiae Aoc NS-T e3-8058", (decimal?)2112.75, (decimal?)749.3125, (decimal?)22695.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22506, Nebula.NebulaType.Planetary, "Hypiae Aoc OS-T e3-322", 2, true, "Hypiae Aoc OS-T e3-322", (decimal?)2305.5625, (decimal?)727.75, (decimal?)22767.5, (int)10 )); + AllOfThem.Add(new Nebula( 22507, Nebula.NebulaType.Planetary, "Hypiae Aoc YK-X e1-722", 2, true, "Hypiae Aoc YK-X e1-722", (decimal?)1337.4375, (decimal?)778.1875, (decimal?)22372.625, (int)10 )); + AllOfThem.Add(new Nebula( 22513, Nebula.NebulaType.Planetary, "Hypiae Auscs AG-O e6-845", 2, true, "Hypiae Auscs AG-O e6-845", (decimal?)1976.25, (decimal?)460.78125, (decimal?)25706.25, (int)10 )); + AllOfThem.Add(new Nebula( 22514, Nebula.NebulaType.Planetary, "Hypiae Auscs BP-A e9176", 2, true, "Hypiae Auscs BP-A e9176", (decimal?)2349.0625, (decimal?)552.71875, (decimal?)24636.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22515, Nebula.NebulaType.Planetary, "Hypiae Auscs CK-A e3332", 2, true, "Hypiae Auscs CK-A e3332", (decimal?)2215.65625, (decimal?)353.1875, (decimal?)24550.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22516, Nebula.NebulaType.Planetary, "Hypiae Auscs GW-W e1-1461", 2, true, "Hypiae Auscs GW-W e1-1461", (decimal?)1668.15625, (decimal?)424.65625, (decimal?)24952.625, (int)10 )); + AllOfThem.Add(new Nebula( 22517, Nebula.NebulaType.Planetary, "Hypiae Auscs GW-W e1-3885", 2, true, "Hypiae Auscs GW-W e1-3885", (decimal?)1538.90625, (decimal?)387.96875, (decimal?)24998.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22518, Nebula.NebulaType.Planetary, "Hypiae Auscs IC-U e3-8333", 2, true, "Hypiae Auscs IC-U e3-8333", (decimal?)1957.28125, (decimal?)992.59375, (decimal?)25299.5, (int)10 )); + AllOfThem.Add(new Nebula( 22519, Nebula.NebulaType.Planetary, "Hypiae Auscs LC-V e2-2687", 2, true, "Hypiae Auscs LC-V e2-2687", (decimal?)1773.75, (decimal?)342.75, (decimal?)25053.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22520, Nebula.NebulaType.Planetary, "Hypiae Auscs NO-Q e5-385", 2, true, "Hypiae Auscs NO-Q e5-385", (decimal?)1495.625, (decimal?)990.4375, (decimal?)25622.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22521, Nebula.NebulaType.Planetary, "Hypiae Auscs PD-S e4-2306", 2, true, "Hypiae Auscs PD-S e4-2306", (decimal?)2071.28125, (decimal?)849.34375, (decimal?)25423.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22522, Nebula.NebulaType.Planetary, "Hypiae Auscs UU-X e1-986", 2, true, "Hypiae Auscs UU-X e1-986", (decimal?)1249.3125, (decimal?)1128.4375, (decimal?)24861.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22523, Nebula.NebulaType.Planetary, "Hypiae Auscs VE-R e4-736", 2, true, "Hypiae Auscs VE-R e4-736", (decimal?)1517.1875, (decimal?)32.09375, (decimal?)25409.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22524, Nebula.NebulaType.Planetary, "Hypiae auscs WT-A e1756", 2, true, "Hypiae Auscs WT-A e1756", (decimal?)1979.25, (decimal?)669.65625, (decimal?)24692.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22525, Nebula.NebulaType.Planetary, "Hypiae auscs YE-Z e9089", 2, true, "Hypiae Auscs YE-Z e9089", (decimal?)1979.09375, (decimal?)894.65625, (decimal?)24748.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22526, Nebula.NebulaType.Planetary, "Hypiae auscs YO-A e7513", 2, true, "Hypiae Auscs YO-A e7513", (decimal?)1906.46875, (decimal?)573.6875, (decimal?)24692.5, (int)10 )); + AllOfThem.Add(new Nebula( 22527, Nebula.NebulaType.Planetary, "Hypiae Auscs ZF-O e6-3767", 2, true, "Hypiae Auscs ZF-O e6-3767", (decimal?)1852.40625, (decimal?)497.875, (decimal?)25814.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22578, Nebula.NebulaType.Planetary, "Hypio Flya PO-Q e5-1018", 2, true, "Hypio Flya PO-Q e5-1018", (decimal?)419.59375, (decimal?)-1477.96875, (decimal?)22956.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22601, Nebula.NebulaType.Planetary, "Hypio Pri JH-U e3-6719", 2, true, "Hypio Pri JH-U e3-6719", (decimal?)1083.8125, (decimal?)-79.09375, (decimal?)25195.25, (int)10 )); + AllOfThem.Add(new Nebula( 22603, Nebula.NebulaType.Planetary, "Hypio Pri NX-T e3-2175", 2, true, "Hypio Pri NX-T e3-2175", (decimal?)1178.09375, (decimal?)-361.21875, (decimal?)25208.5, (int)10 )); + AllOfThem.Add(new Nebula( 22614, Nebula.NebulaType.Planetary, "Hypoae Aoc BG-O e6-6292", 2, true, "Hypoae Aoc BG-O e6-6292", (decimal?)3356.625, (decimal?)552.59375, (decimal?)23095.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22615, Nebula.NebulaType.Planetary, "Hypoae Aoc BL-X e1-2012", 2, true, "Hypoae Aoc BL-X e1-2012", (decimal?)3130.84375, (decimal?)890.34375, (decimal?)22349.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22616, Nebula.NebulaType.Planetary, "Hypoae Aoc EB-X e1-918", 2, true, "Hypoae Aoc EB-X e1-918", (decimal?)2830.65625, (decimal?)491.84375, (decimal?)22371.125, (int)10 )); + AllOfThem.Add(new Nebula( 22617, Nebula.NebulaType.Planetary, "Hypoae Aoc EG-X e1-8722", 2, true, "Hypoae Aoc EG-X e1-8722", (decimal?)3229.21875, (decimal?)717.6875, (decimal?)22383, (int)10 )); + AllOfThem.Add(new Nebula( 22618, Nebula.NebulaType.Planetary, "Hypoae Aoc KH-V e2-8471", 2, true, "Hypoae Aoc KH-V e2-8471", (decimal?)3233.59375, (decimal?)610.84375, (decimal?)22461.875, (int)10 )); + AllOfThem.Add(new Nebula( 22619, Nebula.NebulaType.Planetary, "Hypoae Aoc LX-U e2-773", 2, true, "Hypoae Aoc LX-U e2-773", (decimal?)2748.625, (decimal?)202.96875, (decimal?)22528, (int)10 )); + AllOfThem.Add(new Nebula( 22620, Nebula.NebulaType.Planetary, "Hypoae Aoc RD-T e3-1872", 2, true, "Hypoae Aoc RD-T e3-1872", (decimal?)3132.4375, (decimal?)211.59375, (decimal?)22753.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22621, Nebula.NebulaType.Planetary, "Hypoae Aoc SP-O e6-1038", 2, true, "Hypoae Aoc SP-O e6-1038", (decimal?)2652.71875, (decimal?)887.125, (decimal?)23134.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22622, Nebula.NebulaType.Planetary, "Hypoae Aoc SP-O e6-4152", 2, true, "Hypoae Aoc SP-O e6-4152", (decimal?)2629.9375, (decimal?)921.65625, (decimal?)23097.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22623, Nebula.NebulaType.Planetary, "Hypoae Aoc UJ-Q e5-5481", 2, true, "Hypoae Aoc UJ-Q e5-5481", (decimal?)3455.8125, (decimal?)861.15625, (decimal?)22962.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22624, Nebula.NebulaType.Planetary, "Hypoae Aoc VU-O e6-3584", 2, true, "Hypoae Aoc VU-O e6-3584", (decimal?)3299.96875, (decimal?)963.28125, (decimal?)23121.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22625, Nebula.NebulaType.Planetary, "Hypoae Aoc WO-A e1845", 2, true, "Hypoae Aoc WO-A e1845", (decimal?)2823.8125, (decimal?)520.875, (decimal?)22078.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22626, Nebula.NebulaType.Planetary, "Hypoae Aoc YJ-A e2177", 2, true, "Hypoae Aoc YJ-A e2177", (decimal?)2831, (decimal?)401.09375, (decimal?)21995.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22653, Nebula.NebulaType.Planetary, "Hypoe Flya HH-U e3-1028", 2, true, "Hypoe Flya HH-U e3-1028", (decimal?)-492.0625, (decimal?)-1425.59375, (decimal?)22706.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22654, Nebula.NebulaType.Planetary, "Hypoe Flya UP-O e6-1154", 2, true, "Hypoe Flya UP-O e6-1154", (decimal?)-931.125, (decimal?)-1651.34375, (decimal?)23207.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22655, Nebula.NebulaType.Planetary, "Hypoe Flyi AB-W e2-2811", 2, true, "Hypoe Flyi AB-W e2-2811", (decimal?)-1006.625, (decimal?)-76.28125, (decimal?)22530.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22656, Nebula.NebulaType.Planetary, "Hypoe Flyi AK-A e3950", 2, true, "Hypoe Flyi AK-A e3950", (decimal?)-678.75, (decimal?)-863.4375, (decimal?)22107.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22657, Nebula.NebulaType.Planetary, "Hypoe Flyi DF-A e5945", 2, true, "Hypoe Flyi DF-A e5945", (decimal?)-500.5625, (decimal?)-1105.28125, (decimal?)21979.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22658, Nebula.NebulaType.Planetary, "Hypoe Flyi EQ-Y e4455", 2, true, "Hypoe Flyi EQ-Y e4455", (decimal?)-667.78125, (decimal?)-896.96875, (decimal?)22168.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22659, Nebula.NebulaType.Planetary, "Hypoe Flyi GC-U e3-3647", 2, true, "Hypoe Flyi GC-U e3-3647", (decimal?)-910.3125, (decimal?)-231.0625, (decimal?)22679.75, (int)10 )); + AllOfThem.Add(new Nebula( 22660, Nebula.NebulaType.Planetary, "Hypoe Flyi HW-W e1-7966", 2, true, "Hypoe Flyi HW-W e1-7966", (decimal?)-857.65625, (decimal?)-912.875, (decimal?)22318.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22661, Nebula.NebulaType.Planetary, "Hypoe Flyi HX-T e3-295", 2, true, "Hypoe Flyi HX-T e3-295", (decimal?)-1063.5, (decimal?)-463.84375, (decimal?)22719.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22662, Nebula.NebulaType.Planetary, "Hypoe Flyi JG-Y e2741", 2, true, "Hypoe Flyi JG-Y e2741", (decimal?)-424.1875, (decimal?)-1162.84375, (decimal?)22146.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22663, Nebula.NebulaType.Planetary, "Hypoe Flyi JI-S e4-2486", 2, true, "Hypoe Flyi JI-S e4-2486", (decimal?)-1117.15625, (decimal?)-187.84375, (decimal?)22930.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22664, Nebula.NebulaType.Planetary, "Hypoe Flyi MI-B e3270", 2, true, "Hypoe Flyi MI-B e3270", (decimal?)-1194.0625, (decimal?)-57.59375, (decimal?)22004.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22665, Nebula.NebulaType.Planetary, "Hypoe Flyi RI-T e3-7739", 2, true, "Hypoe Flyi RI-T e3-7739", (decimal?)-403.8125, (decimal?)-916, (decimal?)22726.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22666, Nebula.NebulaType.Planetary, "Hypoe Flyi WJ-Z e3441", 2, true, "Hypoe Flyi WJ-Z e3441", (decimal?)-610.96875, (decimal?)-223.5625, (decimal?)22274.625, (int)10 )); + AllOfThem.Add(new Nebula( 22667, Nebula.NebulaType.Planetary, "Hypoe Flyi XJ-R e4-4633", 2, true, "Hypoe Flyi XJ-R e4-4633", (decimal?)-436.65625, (decimal?)-1099.84375, (decimal?)22884.875, (int)10 )); + AllOfThem.Add(new Nebula( 22669, Nebula.NebulaType.Planetary, "Hypoe Prao JS-T e3-7385", 2, true, "Hypoe Prao JS-T e3-7385", (decimal?)6585.25, (decimal?)-509.3125, (decimal?)25286.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22670, Nebula.NebulaType.Planetary, "Hypoe Prao OZ-O e6-2655", 2, true, "Hypoe Prao OZ-O e6-2655", (decimal?)6335.09375, (decimal?)-116.90625, (decimal?)25719.75, (int)10 )); + AllOfThem.Add(new Nebula( 22672, Nebula.NebulaType.Planetary, "Hypoe Prao SJ-Z e3115", 2, true, "Hypoe Prao SJ-Z e3115", (decimal?)6390.53125, (decimal?)-218.59375, (decimal?)24725.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22677, Nebula.NebulaType.Planetary, "Hypoe Prao WK-O e6-4770", 2, true, "Hypoe Prao WK-O e6-4770", (decimal?)6763.375, (decimal?)-634.78125, (decimal?)25711.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22697, Nebula.NebulaType.Planetary, "Hypou Aoscs BP-A e2708", 2, true, "Hypou Aoscs BP-A e2708", (decimal?)-2725.78125, (decimal?)490.65625, (decimal?)21984.5, (int)10 )); + AllOfThem.Add(new Nebula( 22700, Nebula.NebulaType.Planetary, "Hypou Aoscs FL-P e5-7", 2, true, "Hypou Aoscs FL-P e5-7", (decimal?)-2729.78125, (decimal?)-0.125, (decimal?)22982.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22701, Nebula.NebulaType.Planetary, "Hypou Aoscs FV-Y e3178", 2, true, "Hypou Aoscs FV-Y e3178", (decimal?)-2781.4375, (decimal?)515.5, (decimal?)22137.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22702, Nebula.NebulaType.Planetary, "Hypou Aoscs LM-V e2-4133", 2, true, "Hypou Aoscs LM-V e2-4133", (decimal?)-2678.3125, (decimal?)756.0625, (decimal?)22567.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22708, Nebula.NebulaType.Planetary, "Hypou Aoscs RD-S e4-2885", 2, true, "Hypou Aoscs RD-S e4-2885", (decimal?)-2669.46875, (decimal?)871.28125, (decimal?)22835.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22709, Nebula.NebulaType.Planetary, "Hypou Aoscs RD-S e4-3942", 2, true, "Hypou Aoscs RD-S e4-3942", (decimal?)-2647.125, (decimal?)872.03125, (decimal?)22829.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22710, Nebula.NebulaType.Planetary, "Hypou Aoscs SD-B e2779", 2, true, "Hypou Aoscs SD-B e2779", (decimal?)-3262.59375, (decimal?)1033.71875, (decimal?)22076.75, (int)10 )); + AllOfThem.Add(new Nebula( 22713, Nebula.NebulaType.Planetary, "Hypou Aoscs XO-Z e1910", 2, true, "Hypou Aoscs XO-Z e1910", (decimal?)-2655.71875, (decimal?)1157.53125, (decimal?)22264.25, (int)10 )); + AllOfThem.Add(new Nebula( 22714, Nebula.NebulaType.Planetary, "Hypou Auscs BW-N e6-5564", 2, true, "Hypou Auscs BW-N e6-5564", (decimal?)6607.625, (decimal?)217.46875, (decimal?)25678, (int)10 )); + AllOfThem.Add(new Nebula( 22715, Nebula.NebulaType.Planetary, "Hypou Auscs CR-N e6-4730", 2, true, "Hypou Auscs CR-N e6-4730", (decimal?)6380.90625, (decimal?)32.8125, (decimal?)25713.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22717, Nebula.NebulaType.Planetary, "Hypou Auscs FR-N e6-1328", 2, true, "Hypou Auscs FR-N e6-1328", (decimal?)6857.5625, (decimal?)14, (decimal?)25782.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22718, Nebula.NebulaType.Planetary, "Hypou Auscs OS-U e2-5657", 2, true, "Hypou Auscs OS-U e2-5657", (decimal?)6681.125, (decimal?)101.96875, (decimal?)25028.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22719, Nebula.NebulaType.Planetary, "Hypou Auscs OT-R e4-710", 2, true, "Hypou Auscs OT-R e4-710", (decimal?)6447.25, (decimal?)500.5625, (decimal?)25395.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22721, Nebula.NebulaType.Planetary, "Hypou Auscs UU-P e5-727", 2, true, "Hypou Auscs UU-P e5-727", (decimal?)6461.71875, (decimal?)326.4375, (decimal?)25546.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22724, Nebula.NebulaType.Planetary, "Hypou Auscs ZE-A e237", 2, true, "Hypou Auscs ZE-A e237", (decimal?)6582.9375, (decimal?)217, (decimal?)24657.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22744, Nebula.NebulaType.Planetary, "Hypou Chruia JI-S e4-456", 2, true, "Hypou Chruia JI-S e4-456", (decimal?)6563.09375, (decimal?)1055.9375, (decimal?)33032.125, (int)10 )); + AllOfThem.Add(new Nebula( 22745, Nebula.NebulaType.Planetary, "Hypou Chruia VO-A e947", 2, true, "Hypou Chruia VO-A e947", (decimal?)6615.40625, (decimal?)538.3125, (decimal?)32230.625, (int)10 )); + AllOfThem.Add(new Nebula( 22746, Nebula.NebulaType.Planetary, "Hypou Chruia VU-P e5-194", 2, true, "Hypou Chruia VU-P e5-194", (decimal?)6579.34375, (decimal?)450.71875, (decimal?)33191.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22747, Nebula.NebulaType.Planetary, "Hypou Chruia WE-R e4-234", 2, true, "Hypou Chruia WE-R e4-234", (decimal?)6782.53125, (decimal?)94.40625, (decimal?)33161.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22748, Nebula.NebulaType.Planetary, "Hypou Scraa ZJ-R e4-3611", 2, true, "Hypou Scraa ZJ-R e4-3611", (decimal?)-2731.21875, (decimal?)1443.71875, (decimal?)22893.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22757, Nebula.NebulaType.Planetary, "Hypuae Aoscs AW-V e2-322", 2, true, "Hypuae Aoscs AW-V e2-322", (decimal?)-2584.1875, (decimal?)944.5, (decimal?)22609.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22758, Nebula.NebulaType.Planetary, "Hypuae Aoscs BL-P e5-6534", 2, true, "Hypuae Aoscs BL-P e5-6534", (decimal?)-2047.8125, (decimal?)97.3125, (decimal?)22972.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22759, Nebula.NebulaType.Planetary, "Hypuae Aoscs BP-A e1707", 2, true, "Hypuae Aoscs BP-A e1707", (decimal?)-1499.09375, (decimal?)506.96875, (decimal?)22128.25, (int)10 )); + AllOfThem.Add(new Nebula( 22760, Nebula.NebulaType.Planetary, "Hypuae Aoscs HC-U e3-5337", 2, true, "Hypuae Aoscs HC-U e3-5337", (decimal?)-1991.40625, (decimal?)1089.15625, (decimal?)22739.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22761, Nebula.NebulaType.Planetary, "Hypuae Aoscs NC-V e2-2080", 2, true, "Hypuae Aoscs NC-V e2-2080", (decimal?)-1779.9375, (decimal?)368.71875, (decimal?)22503.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22762, Nebula.NebulaType.Planetary, "Hypuae Aoscs NI-S e4-7640", 2, true, "Hypuae Aoscs NI-S e4-7640", (decimal?)-1802.5, (decimal?)1094.4375, (decimal?)22871.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22763, Nebula.NebulaType.Planetary, "Hypuae Aoscs NY-R e4-9254", 2, true, "Hypuae Aoscs NY-R e4-9254", (decimal?)-2399.71875, (decimal?)657.9375, (decimal?)22783.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22764, Nebula.NebulaType.Planetary, "Hypuae Aoscs RO-Q e5-2818", 2, true, "Hypuae Aoscs RO-Q e5-2818", (decimal?)-1770.46875, (decimal?)984.59375, (decimal?)23022.375, (int)10 )); + AllOfThem.Add(new Nebula( 22765, Nebula.NebulaType.Planetary, "Hypuae Aoscs RO-Q e5-5073", 2, true, "Hypuae Aoscs RO-Q e5-5073", (decimal?)-1735.28125, (decimal?)1004.8125, (decimal?)23049.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22766, Nebula.NebulaType.Planetary, "Hypuae Aoscs TE-Q e5-3655", 2, true, "Hypuae Aoscs TE-Q e5-3655", (decimal?)-1999.875, (decimal?)739.5, (decimal?)23041.125, (int)10 )); + AllOfThem.Add(new Nebula( 22767, Nebula.NebulaType.Planetary, "Hypuae Aoscs TT-R e4-6637", 2, true, "Hypuae Aoscs TT-R e4-6637", (decimal?)-1680.53125, (decimal?)610.96875, (decimal?)22876.375, (int)10 )); + AllOfThem.Add(new Nebula( 22768, Nebula.NebulaType.Planetary, "Hypuae Aoscs UU-O e6-8072", 2, true, "Hypuae Aoscs UU-O e6-8072", (decimal?)-1875.625, (decimal?)1058, (decimal?)23099.75, (int)10 )); + AllOfThem.Add(new Nebula( 22769, Nebula.NebulaType.Planetary, "Hypuae Aoscs UY-S e3-2298", 2, true, "Hypuae Aoscs UY-S e3-2298", (decimal?)-1882, (decimal?)23.0625, (decimal?)22653.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22770, Nebula.NebulaType.Planetary, "Hypuae Aoscs VY-A e1148", 2, true, "Hypuae Aoscs VY-A e1148", (decimal?)-1696.8125, (decimal?)850.78125, (decimal?)21978.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22771, Nebula.NebulaType.Planetary, "Hypuae Aoscs WJ-R e4-1519", 2, true, "Hypuae Aoscs WJ-R e4-1519", (decimal?)-1846.1875, (decimal?)207.46875, (decimal?)22820.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22772, Nebula.NebulaType.Planetary, "Hypuae Aoscs XK-O e6-4359", 2, true, "Hypuae Aoscs XK-O e6-4359", (decimal?)-2129.71875, (decimal?)679.34375, (decimal?)23213.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22774, Nebula.NebulaType.Planetary, "Hypuae Audst KG-Y e4351", 2, true, "Hypuae Audst KG-Y e4351", (decimal?)1044.96875, (decimal?)1344.71875, (decimal?)24700.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22882, Nebula.NebulaType.Planetary, "Iwhaism HX-T e3-106", 2, true, "Iwhaism HX-T e3-106", (decimal?)6547.5, (decimal?)-490.84375, (decimal?)32897.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22883, Nebula.NebulaType.Planetary, "Iwhaism SJ-Z e2357", 2, true, "Iwhaism SJ-Z e2357", (decimal?)6356.3125, (decimal?)-317.9375, (decimal?)32413.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22884, Nebula.NebulaType.Planetary, "Iwhaism WE-Z e2781", 2, true, "Iwhaism WE-Z e2781", (decimal?)6764.1875, (decimal?)-348.9375, (decimal?)32518.875, (int)10 )); + AllOfThem.Add(new Nebula( 22902, Nebula.NebulaType.Planetary, "Juena DG-O e6-7874", 2, true, "Juena DG-O e6-7874", (decimal?)4959.84375, (decimal?)-779.71875, (decimal?)27083.625, (int)10 )); + AllOfThem.Add(new Nebula( 22903, Nebula.NebulaType.Planetary, "Juena EW-W e1-8016", 2, true, "Juena EW-W e1-8016", (decimal?)3850.375, (decimal?)-863.25, (decimal?)26245.5, (int)10 )); + AllOfThem.Add(new Nebula( 22904, Nebula.NebulaType.Planetary, "Juena FV-Y e1650", 2, true, "Juena FV-Y e1650", (decimal?)4996.625, (decimal?)-735.21875, (decimal?)26082.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22905, Nebula.NebulaType.Planetary, "Juena GQ-Y e4695", 2, true, "Juena GQ-Y e4695", (decimal?)4769.84375, (decimal?)-893.5, (decimal?)26055.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22906, Nebula.NebulaType.Planetary, "Juena RT-R e4-6132", 2, true, "Juena RT-R e4-6132", (decimal?)4326.5, (decimal?)-693.34375, (decimal?)26752.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22907, Nebula.NebulaType.Planetary, "Juena RT-R e4-8327", 2, true, "Juena RT-R e4-8327", (decimal?)4283.5, (decimal?)-737.3125, (decimal?)26669.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22908, Nebula.NebulaType.Planetary, "Juena SU-O e6-2096", 2, true, "Juena SU-O e6-2096", (decimal?)4151.125, (decimal?)-210.75, (decimal?)26997.875, (int)10 )); + AllOfThem.Add(new Nebula( 22909, Nebula.NebulaType.Planetary, "Juena WF-O e6-3538", 2, true, "Juena WF-O e6-3538", (decimal?)3795.09375, (decimal?)-759.0625, (decimal?)26968.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22910, Nebula.NebulaType.Planetary, "Juena YU-Y e2779", 2, true, "Juena YU-Y e2779", (decimal?)3905.0625, (decimal?)-678.125, (decimal?)26009.25, (int)10 )); + AllOfThem.Add(new Nebula( 22911, Nebula.NebulaType.Planetary, "Juena YZ-P e5-5084", 2, true, "Juena YZ-P e5-5084", (decimal?)4749.03125, (decimal?)-777.71875, (decimal?)26913.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22968, Nebula.NebulaType.Planetary, "Kyli Flyuae AV-X e1-53", 2, true, "Kyli Flyuae AV-X e1-53", (decimal?)-1652.625, (decimal?)-2622.84375, (decimal?)23650.5, (int)10 )); + AllOfThem.Add(new Nebula( 22969, Nebula.NebulaType.Planetary, "Kyloabs AP-A e7304", 2, true, "Kyloabs AP-A e7304", (decimal?)-4200.28125, (decimal?)-772.1875, (decimal?)20744.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22974, Nebula.NebulaType.Planetary, "Kyloabs QI-B e5976", 2, true, "Kyloabs QI-B e5976", (decimal?)-4453.875, (decimal?)-161.84375, (decimal?)20848.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23022, Nebula.NebulaType.Planetary, "Kyloaqs AA-Z e1944", 2, true, "Kyloaqs AA-Z e1944", (decimal?)4552, (decimal?)-567.65625, (decimal?)20918.5, (int)10 )); + AllOfThem.Add(new Nebula( 23023, Nebula.NebulaType.Planetary, "Kyloaqs AB-W e2-829", 2, true, "Kyloaqs AB-W e2-829", (decimal?)4228.25, (decimal?)-161.8125, (decimal?)21245.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23024, Nebula.NebulaType.Planetary, "Kyloaqs CL-X e1-5046", 2, true, "Kyloaqs CL-X e1-5046", (decimal?)4464.90625, (decimal?)-448.375, (decimal?)21082.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23025, Nebula.NebulaType.Planetary, "Kyloaqs FB-O e6-37", 2, true, "Kyloaqs FB-O e6-37", (decimal?)4985.875, (decimal?)-851.09375, (decimal?)21956.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23026, Nebula.NebulaType.Planetary, "Kyloaqs FB-O e6-4060", 2, true, "Kyloaqs FB-O e6-4060", (decimal?)4931.25, (decimal?)-927.375, (decimal?)21855.125, (int)10 )); + AllOfThem.Add(new Nebula( 23027, Nebula.NebulaType.Planetary, "Kyloaqs GH-V e2-6857", 2, true, "Kyloaqs GH-V e2-6857", (decimal?)3867.65625, (decimal?)-731.78125, (decimal?)21319.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23028, Nebula.NebulaType.Planetary, "Kyloaqs IC-U e3-7101", 2, true, "Kyloaqs IC-U e3-7101", (decimal?)4484.8125, (decimal?)-214.6875, (decimal?)21467.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23029, Nebula.NebulaType.Planetary, "Kyloaqs JN-S e4-2065", 2, true, "Kyloaqs JN-S e4-2065", (decimal?)4396.8125, (decimal?)-26.03125, (decimal?)21538.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23030, Nebula.NebulaType.Planetary, "Kyloaqs QD-B e2332", 2, true, "Kyloaqs QD-B e2332", (decimal?)4219.875, (decimal?)-201.40625, (decimal?)20723.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23031, Nebula.NebulaType.Planetary, "Kyloaqs YK-O e6-3224", 2, true, "Kyloaqs YK-O e6-3224", (decimal?)4512.71875, (decimal?)-529.65625, (decimal?)21849.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23032, Nebula.NebulaType.Planetary, "Kyloaqs YU-X e1-5808", 2, true, "Kyloaqs YU-X e1-5808", (decimal?)4483.125, (decimal?)-147.875, (decimal?)21110.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23033, Nebula.NebulaType.Planetary, "Kyloaqs ZU-P e5-5670", 2, true, "Kyloaqs ZU-P e5-5670", (decimal?)4716.4375, (decimal?)-927.3125, (decimal?)21718.125, (int)10 )); + AllOfThem.Add(new Nebula( 23048, Nebula.NebulaType.Planetary, "Lasao AF-Z e935", 2, true, "Lasao AF-Z e935", (decimal?)6025.375, (decimal?)925.375, (decimal?)32458.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23052, Nebula.NebulaType.Planetary, "Lasao CF-A e5209", 2, true, "Lasao CF-A e5209", (decimal?)5752.46875, (decimal?)141.0625, (decimal?)32307.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23054, Nebula.NebulaType.Planetary, "Lasao IR-W e1-238", 2, true, "Lasao IR-W e1-238", (decimal?)5412, (decimal?)198.9375, (decimal?)32645.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23056, Nebula.NebulaType.Planetary, "Lasao WT-A e308", 2, true, "Lasao WT-A e308", (decimal?)5763.46875, (decimal?)689.125, (decimal?)32228.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23057, Nebula.NebulaType.Planetary, "Lasao YP-O e6-1608", 2, true, "Lasao YP-O e6-1608", (decimal?)6030.4375, (decimal?)790.96875, (decimal?)33413.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23115, Nebula.NebulaType.Planetary, "Leamao AG-O e6-1169", 2, true, "Leamao AG-O e6-1169", (decimal?)3268.125, (decimal?)-745.5625, (decimal?)20571.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23116, Nebula.NebulaType.Planetary, "Leamao CG-O e6-7918", 2, true, "Leamao CG-O e6-7918", (decimal?)3581.875, (decimal?)-743.84375, (decimal?)20555.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23117, Nebula.NebulaType.Planetary, "Leamao GN-S e4-4991", 2, true, "Leamao GN-S e4-4991", (decimal?)2598.90625, (decimal?)-118.84375, (decimal?)20305.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23118, Nebula.NebulaType.Planetary, "Leamao KT-Q e5-9047", 2, true, "Leamao KT-Q e5-9047", (decimal?)2615.90625, (decimal?)-60.40625, (decimal?)20420.875, (int)10 )); + AllOfThem.Add(new Nebula( 23119, Nebula.NebulaType.Planetary, "Leamao QZ-O e6-1442", 2, true, "Leamao QZ-O e6-1442", (decimal?)2918.6875, (decimal?)-57.0625, (decimal?)20622.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23120, Nebula.NebulaType.Planetary, "Leamao TY-R e4-316", 2, true, "Leamao TY-R e4-316", (decimal?)3714.40625, (decimal?)-585.03125, (decimal?)20244, (int)10 )); + AllOfThem.Add(new Nebula( 23121, Nebula.NebulaType.Planetary, "Leamao YA-O e6-1517", 2, true, "Leamao YA-O e6-1517", (decimal?)2637.34375, (decimal?)-939.40625, (decimal?)20607.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23123, Nebula.NebulaType.Planetary, "Leami DQ-Y e4717", 2, true, "Leami DQ-Y e4717", (decimal?)1845.53125, (decimal?)-977.4375, (decimal?)19597.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23124, Nebula.NebulaType.Planetary, "Leami FR-V e2-1413", 2, true, "Leami FR-V e2-1413", (decimal?)1844.6875, (decimal?)-475.46875, (decimal?)19902.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23125, Nebula.NebulaType.Planetary, "Leami OD-B e5509", 2, true, "Leami OD-B e5509", (decimal?)1269.53125, (decimal?)-238.75, (decimal?)19478.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23126, Nebula.NebulaType.Planetary, "Leami OT-R e4-7297", 2, true, "Leami OT-R e4-7297", (decimal?)1244.40625, (decimal?)-803.5, (decimal?)20280.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23127, Nebula.NebulaType.Planetary, "Leami PI-T e3-5214", 2, true, "Leami PI-T e3-5214", (decimal?)1752.8125, (decimal?)-836.4375, (decimal?)20084.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23128, Nebula.NebulaType.Planetary, "Leami PZ-O e6-1704", 2, true, "Leami PZ-O e6-1704", (decimal?)1464.625, (decimal?)-52.6875, (decimal?)20658, (int)10 )); + AllOfThem.Add(new Nebula( 23129, Nebula.NebulaType.Planetary, "Leami QN-T e3-8059", 2, true, "Leami QN-T e3-8059", (decimal?)2208.25, (decimal?)-667.71875, (decimal?)20112.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23130, Nebula.NebulaType.Planetary, "Leami QY-S e3-4935", 2, true, "Leami QY-S e3-4935", (decimal?)1306.1875, (decimal?)-1154.15625, (decimal?)20209.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23131, Nebula.NebulaType.Planetary, "Leami UT-R e4-7011", 2, true, "Leami UT-R e4-7011", (decimal?)2327.90625, (decimal?)-762.1875, (decimal?)20318.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23132, Nebula.NebulaType.Planetary, "Leami WO-R e4-7110", 2, true, "Leami WO-R e4-7110", (decimal?)2307.25, (decimal?)-839.5625, (decimal?)20264.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23133, Nebula.NebulaType.Planetary, "Leami WU-X e1-7867", 2, true, "Leami WU-X e1-7867", (decimal?)1643.71875, (decimal?)-58.65625, (decimal?)19882.25, (int)10 )); + AllOfThem.Add(new Nebula( 23135, Nebula.NebulaType.Planetary, "Leamiae BV-X e1-8946", 2, true, "Leamiae BV-X e1-8946", (decimal?)-2773.78125, (decimal?)-136.4375, (decimal?)19759.75, (int)10 )); + AllOfThem.Add(new Nebula( 23136, Nebula.NebulaType.Planetary, "Leamiae CQ-Y e1657", 2, true, "Leamiae CQ-Y e1657", (decimal?)-3549.625, (decimal?)-951.71875, (decimal?)19652.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23137, Nebula.NebulaType.Planetary, "Leamiae CR-V e2-5965", 2, true, "Leamiae CR-V e2-5965", (decimal?)-3835.8125, (decimal?)-384.9375, (decimal?)19932.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23138, Nebula.NebulaType.Planetary, "Leamiae IR-V e2-1317", 2, true, "Leamiae IR-V e2-1317", (decimal?)-2820.34375, (decimal?)-346.59375, (decimal?)20035.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23139, Nebula.NebulaType.Planetary, "Leamiae KX-T e3-8091", 2, true, "Leamiae KX-T e3-8091", (decimal?)-3250.03125, (decimal?)-347, (decimal?)20154.5, (int)10 )); + AllOfThem.Add(new Nebula( 23140, Nebula.NebulaType.Planetary, "Leamiae LS-T e3-3317", 2, true, "Leamiae LS-T e3-3317", (decimal?)-3348.3125, (decimal?)-597.625, (decimal?)20071.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23141, Nebula.NebulaType.Planetary, "Leamiae LW-W e1-4931", 2, true, "Leamiae LW-W e1-4931", (decimal?)-2781.34375, (decimal?)-889.5625, (decimal?)19843.375, (int)10 )); + AllOfThem.Add(new Nebula( 23142, Nebula.NebulaType.Planetary, "Leamiae MI-S e4-45", 2, true, "Leamiae MI-S e4-45", (decimal?)-3257.75, (decimal?)-265.28125, (decimal?)20250.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23143, Nebula.NebulaType.Planetary, "Leamiae PD-S e4-542", 2, true, "Leamiae PD-S e4-542", (decimal?)-3104.3125, (decimal?)-434.03125, (decimal?)20329.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23144, Nebula.NebulaType.Planetary, "Leamiae QE-Q e5-1384", 2, true, "Leamiae QE-Q e5-1384", (decimal?)-3896.125, (decimal?)-663.65625, (decimal?)20426.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23145, Nebula.NebulaType.Planetary, "Leamiae QE-Q e5-9427", 2, true, "Leamiae QE-Q e5-9427", (decimal?)-3876.75, (decimal?)-555.15625, (decimal?)20453.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23146, Nebula.NebulaType.Planetary, "Leamiae UZ-P e5-5403", 2, true, "Leamiae UZ-P e5-5403", (decimal?)-3564.5, (decimal?)-811.71875, (decimal?)20425.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23147, Nebula.NebulaType.Planetary, "Leamiae UZ-P e5-7621", 2, true, "Leamiae UZ-P e5-7621", (decimal?)-3568.6875, (decimal?)-708.34375, (decimal?)20413.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23148, Nebula.NebulaType.Planetary, "Leamiae VO-R e4-4572", 2, true, "Leamiae VO-R e4-4572", (decimal?)-3096.4375, (decimal?)-869.78125, (decimal?)20253.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23149, Nebula.NebulaType.Planetary, "Leamiae XU-X e1-4964", 2, true, "Leamiae XU-X e1-4964", (decimal?)-3349.96875, (decimal?)-115.875, (decimal?)19773.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23150, Nebula.NebulaType.Planetary, "Leamiae YE-Z e3832", 2, true, "Leamiae YE-Z e3832", (decimal?)-3188.3125, (decimal?)-437, (decimal?)19683.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23151, Nebula.NebulaType.Planetary, "Leamiae ZT-A e2014", 2, true, "Leamiae ZT-A e2014", (decimal?)-2707.71875, (decimal?)-607.09375, (decimal?)19512.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23152, Nebula.NebulaType.Planetary, "Leamuae AG-O e6-5136", 2, true, "Leamuae AG-O e6-5136", (decimal?)621.90625, (decimal?)-815.84375, (decimal?)20693.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23153, Nebula.NebulaType.Planetary, "Leamuae AP-A e22", 2, true, "Leamuae AP-A e22", (decimal?)959.0625, (decimal?)-699.625, (decimal?)19539.375, (int)10 )); + AllOfThem.Add(new Nebula( 23154, Nebula.NebulaType.Planetary, "Leamuae BV-X e1-2271", 2, true, "Leamuae BV-X e1-2271", (decimal?)1184, (decimal?)-34.0625, (decimal?)19885.75, (int)10 )); + AllOfThem.Add(new Nebula( 23155, Nebula.NebulaType.Planetary, "Leamuae JR-W e1-763", 2, true, "Leamuae JR-W e1-763", (decimal?)560.59375, (decimal?)-1058.9375, (decimal?)19891.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23156, Nebula.NebulaType.Planetary, "Leamuae LM-V e2-7389", 2, true, "Leamuae LM-V e2-7389", (decimal?)1117.375, (decimal?)-636.875, (decimal?)19935.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23157, Nebula.NebulaType.Planetary, "Leamuae LN-S e4-3691", 2, true, "Leamuae LN-S e4-3691", (decimal?)860.9375, (decimal?)-169.1875, (decimal?)20362.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23158, Nebula.NebulaType.Planetary, "Leamuae QS-U e2-5072", 2, true, "Leamuae QS-U e2-5072", (decimal?)693.34375, (decimal?)-1275.3125, (decimal?)20053.25, (int)10 )); + AllOfThem.Add(new Nebula( 23159, Nebula.NebulaType.Planetary, "Leamuae SI-T e3-4236", 2, true, "Leamuae SI-T e3-4236", (decimal?)945.28125, (decimal?)-877.375, (decimal?)20129.25, (int)10 )); + AllOfThem.Add(new Nebula( 23160, Nebula.NebulaType.Planetary, "Leamuae VJ-Q e5-3973", 2, true, "Leamuae VJ-Q e5-3973", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 23161, Nebula.NebulaType.Planetary, "Leamuae XK-O e6-3016", 2, true, "Leamuae XK-O e6-3016", (decimal?)514.46875, (decimal?)-513.5, (decimal?)20636.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23162, Nebula.NebulaType.Planetary, "Leamuae YK-O e6-3148", 2, true, "Leamuae YK-O e6-3148", (decimal?)695.53125, (decimal?)-574.65625, (decimal?)20622.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23163, Nebula.NebulaType.Planetary, "Leamuae YT-A e5005", 2, true, "Leamuae YT-A e5005", (decimal?)956.375, (decimal?)-529.21875, (decimal?)19432.375, (int)10 )); + AllOfThem.Add(new Nebula( 23175, Nebula.NebulaType.Planetary, "Lyaisa DA-A e11399", 2, true, "Lyaisa DA-A e11399", (decimal?)5584.1875, (decimal?)10.90625, (decimal?)31051.25, (int)10 )); + AllOfThem.Add(new Nebula( 23176, Nebula.NebulaType.Planetary, "Lyaisa EV-Y e5830", 2, true, "Lyaisa EV-Y e5830", (decimal?)6063.0625, (decimal?)529.25, (decimal?)31141.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23177, Nebula.NebulaType.Planetary, "Lyaisa GX-T e3-3038", 2, true, "Lyaisa GX-T e3-3038", (decimal?)5133.8125, (decimal?)869.40625, (decimal?)31639.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23178, Nebula.NebulaType.Planetary, "Lyaisa HR-N e6-178", 2, true, "Lyaisa HR-N e6-178", (decimal?)5894.8125, (decimal?)-2.4375, (decimal?)32190.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23179, Nebula.NebulaType.Planetary, "Lyaisa JC-V e2-5926", 2, true, "Lyaisa JC-V e2-5926", (decimal?)5371.21875, (decimal?)383.25, (decimal?)31419.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23180, Nebula.NebulaType.Planetary, "Lyaisa LR-W e1-328", 2, true, "Lyaisa LR-W e1-328", (decimal?)5989.84375, (decimal?)264.1875, (decimal?)31313.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23181, Nebula.NebulaType.Planetary, "Lyaisa MO-Q e5-2958", 2, true, "Lyaisa MO-Q e5-2958", (decimal?)5092.3125, (decimal?)1094.03125, (decimal?)32031.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23182, Nebula.NebulaType.Planetary, "Lyaisa QY-A e2479", 2, true, "Lyaisa QY-A e2479", (decimal?)5138.375, (decimal?)878.78125, (decimal?)31009.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23183, Nebula.NebulaType.Planetary, "Lyaisa ST-R e4-233", 2, true, "Lyaisa ST-R e4-233", (decimal?)5772.96875, (decimal?)516.375, (decimal?)31821.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23184, Nebula.NebulaType.Planetary, "Lyaisa UY-A e57", 2, true, "Lyaisa UY-A e57", (decimal?)5712.53125, (decimal?)890.84375, (decimal?)31027.625, (int)10 )); + AllOfThem.Add(new Nebula( 23185, Nebula.NebulaType.Planetary, "Lyaisa WU-O e6-15", 2, true, "Lyaisa WU-O e6-15", (decimal?)6038.21875, (decimal?)941.09375, (decimal?)32135.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23215, Nebula.NebulaType.Planetary, "Lyaisai PS-U e2-160", 2, true, "Lyaisai PS-U e2-160", (decimal?)8211.4375, (decimal?)92.8125, (decimal?)31441.375, (int)10 )); + AllOfThem.Add(new Nebula( 23239, Nebula.NebulaType.Planetary, "Lyaisoo CF-A e2970", 2, true, "Lyaisoo CF-A e2970", (decimal?)4465.53125, (decimal?)146.40625, (decimal?)30947.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23240, Nebula.NebulaType.Planetary, "Lyaisoo CQ-P e5-9691", 2, true, "Lyaisoo CQ-P e5-9691", (decimal?)4861.53125, (decimal?)263.625, (decimal?)31982.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23243, Nebula.NebulaType.Planetary, "Lyaisoo KX-U e2-10157", 2, true, "Lyaisoo KX-U e2-10157", (decimal?)3880.96875, (decimal?)223.125, (decimal?)31479.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23245, Nebula.NebulaType.Planetary, "Lyaisoo NI-T e3-5025", 2, true, "Lyaisoo NI-T e3-5025", (decimal?)4087.90625, (decimal?)310.78125, (decimal?)31720.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23246, Nebula.NebulaType.Planetary, "Lyaisoo NI-T e3-5482", 2, true, "Lyaisoo NI-T e3-5482", (decimal?)4083.8125, (decimal?)320.65625, (decimal?)31642.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23247, Nebula.NebulaType.Planetary, "Lyaisoo NS-U e2-555", 2, true, "Lyaisoo NS-U e2-555", (decimal?)4000.46875, (decimal?)-15.5625, (decimal?)31536.375, (int)10 )); + AllOfThem.Add(new Nebula( 23248, Nebula.NebulaType.Planetary, "Lyaisoo NY-R e4-1390", 2, true, "Lyaisoo NY-R e4-1390", (decimal?)4088.78125, (decimal?)741.09375, (decimal?)31793.375, (int)10 )); + AllOfThem.Add(new Nebula( 23250, Nebula.NebulaType.Planetary, "Lyaisoo RT-R e4-5495", 2, true, "Lyaisoo RT-R e4-5495", (decimal?)4264.4375, (decimal?)533.1875, (decimal?)31768.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23251, Nebula.NebulaType.Planetary, "Lyaisoo VY-S e3-6185", 2, true, "Lyaisoo VY-S e3-6185", (decimal?)4699.9375, (decimal?)101.625, (decimal?)31721.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23252, Nebula.NebulaType.Planetary, "Lyaisoo XO-A e9602", 2, true, "Lyaisoo XO-A e9602", (decimal?)4311.25, (decimal?)554.34375, (decimal?)30969.75, (int)10 )); + AllOfThem.Add(new Nebula( 23253, Nebula.NebulaType.Planetary, "Lyaisoo YU-P e5-5244", 2, true, "Lyaisoo YU-P e5-5244", (decimal?)4549.375, (decimal?)389, (decimal?)32007.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23254, Nebula.NebulaType.Planetary, "Lyaisoo ZJ-R e4-4949", 2, true, "Lyaisoo ZJ-R e4-4949", (decimal?)4956.78125, (decimal?)267.40625, (decimal?)31842.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23273, Nebula.NebulaType.Planetary, "Lychoitl NY-R e4-8413", 2, true, "Lychoitl NY-R e4-8413", (decimal?)1429.34375, (decimal?)-658.40625, (decimal?)18957.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23274, Nebula.NebulaType.Planetary, "Lychoitl PI-S e4-107", 2, true, "Lychoitl PI-S e4-107", (decimal?)2477.40625, (decimal?)-341.53125, (decimal?)18957.75, (int)10 )); + AllOfThem.Add(new Nebula( 23275, Nebula.NebulaType.Planetary, "Lychoitl QT-Q e5-1975", 2, true, "Lychoitl QT-Q e5-1975", (decimal?)2291.21875, (decimal?)-34.5625, (decimal?)19152.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23276, Nebula.NebulaType.Planetary, "Lychoitl RU-O e6-8445", 2, true, "Lychoitl RU-O e6-8445", (decimal?)1375.96875, (decimal?)-200.40625, (decimal?)19337.75, (int)10 )); + AllOfThem.Add(new Nebula( 23277, Nebula.NebulaType.Planetary, "Lychoitl RZ-O e6-1494", 2, true, "Lychoitl RZ-O e6-1494", (decimal?)1812.78125, (decimal?)-80.34375, (decimal?)19335.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23278, Nebula.NebulaType.Planetary, "Lychoitl SE-Q e5-8334", 2, true, "Lychoitl SE-Q e5-8334", (decimal?)1681.46875, (decimal?)-541.9375, (decimal?)19213.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23280, Nebula.NebulaType.Planetary, "Lychoitl ZF-O e6-4134", 2, true, "Lychoitl ZF-O e6-4134", (decimal?)1772.6875, (decimal?)-806.90625, (decimal?)19270.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23282, Nebula.NebulaType.Planetary, "Lyrongou WU-P e5-559", 2, true, "Lyrongou WU-P e5-559", (decimal?)6658.3125, (decimal?)1651.59375, (decimal?)26902.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23317, Nebula.NebulaType.Planetary, "Mylaifai LH-V e2-665", 2, true, "Mylaifai LH-V e2-665", (decimal?)-481.15625, (decimal?)-742.28125, (decimal?)18690.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23319, Nebula.NebulaType.Planetary, "Mylaifai UP-O e6-913", 2, true, "Mylaifai UP-O e6-913", (decimal?)-986.78125, (decimal?)-494.40625, (decimal?)19356.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23322, Nebula.NebulaType.Planetary, "Mylaifai VP-O e6-672", 2, true, "Mylaifai VP-O e6-672", (decimal?)-731.78125, (decimal?)-391.1875, (decimal?)19387.125, (int)10 )); + AllOfThem.Add(new Nebula( 23323, Nebula.NebulaType.Planetary, "Mylaifai VU-O e6-1072", 2, true, "Mylaifai VU-O e6-1072", (decimal?)-520.65625, (decimal?)-322.9375, (decimal?)19412.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23341, Nebula.NebulaType.Planetary, "Myrielk BK-A e2976", 2, true, "Myrielk BK-A e2976", (decimal?)776.1875, (decimal?)447.78125, (decimal?)24570.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23342, Nebula.NebulaType.Planetary, "Myrielk CK-A e8117", 2, true, "Myrielk CK-A e8117", (decimal?)1018.34375, (decimal?)433.59375, (decimal?)24578.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23343, Nebula.NebulaType.Planetary, "Myrielk FQ-Y e53", 2, true, "Myrielk FQ-Y e53", (decimal?)834.53125, (decimal?)418.125, (decimal?)24739.25, (int)10 )); + AllOfThem.Add(new Nebula( 23345, Nebula.NebulaType.Planetary, "Myrielk JL-Y e5593", 2, true, "Myrielk JL-Y e5593", (decimal?)1067.1875, (decimal?)146.71875, (decimal?)24734.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23346, Nebula.NebulaType.Planetary, "Myrielk MH-V e2-589", 2, true, "Myrielk MH-V e2-589", (decimal?)914.25, (decimal?)560.78125, (decimal?)25150.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23347, Nebula.NebulaType.Planetary, "Myrielk RX-U e2-4971", 2, true, "Myrielk RX-U e2-4971", (decimal?)1061.34375, (decimal?)202.90625, (decimal?)25088.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23349, Nebula.NebulaType.Planetary, "Myrielk TD-B e5230", 2, true, "Myrielk TD-B e5230", (decimal?)798.4375, (decimal?)1052.25, (decimal?)24542.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23350, Nebula.NebulaType.Planetary, "Myrielk VD-B e3602", 2, true, "Myrielk VD-B e3602", (decimal?)1141.375, (decimal?)1073.71875, (decimal?)24665.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23351, Nebula.NebulaType.Planetary, "Myrierph AQ-Y e30", 2, true, "Myrierph AQ-Y e30", (decimal?)2631.03125, (decimal?)411.65625, (decimal?)24741.25, (int)10 )); + AllOfThem.Add(new Nebula( 23352, Nebula.NebulaType.Planetary, "Myrierph CB-O e6-7984", 2, true, "Myrierph CB-O e6-7984", (decimal?)3209.46875, (decimal?)411.84375, (decimal?)25795.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23353, Nebula.NebulaType.Planetary, "Myrierph CL-X e1-4954", 2, true, "Myrierph CL-X e1-4954", (decimal?)3199.8125, (decimal?)808.25, (decimal?)24973.25, (int)10 )); + AllOfThem.Add(new Nebula( 23354, Nebula.NebulaType.Planetary, "Myrierph CL-X e1-5257", 2, true, "Myrierph CL-X e1-5257", (decimal?)3226.03125, (decimal?)838.625, (decimal?)24921.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23355, Nebula.NebulaType.Planetary, "Myrierph HA-A e2273", 2, true, "Myrierph HA-A e2273", (decimal?)3693.53125, (decimal?)-4.625, (decimal?)24601.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23356, Nebula.NebulaType.Planetary, "Myrierph IS-T e3-7476", 2, true, "Myrierph IS-T e3-7476", (decimal?)2585.84375, (decimal?)731.40625, (decimal?)25301.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23357, Nebula.NebulaType.Planetary, "Myrierph JC-V e2-7378", 2, true, "Myrierph JC-V e2-7378", (decimal?)2731.65625, (decimal?)380.28125, (decimal?)25124.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23358, Nebula.NebulaType.Planetary, "Myrierph KM-W e1-259", 2, true, "Myrierph KM-W e1-259", (decimal?)2835.3125, (decimal?)93.84375, (decimal?)24939.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23359, Nebula.NebulaType.Planetary, "Myrierph LH-V e2-9219", 2, true, "Myrierph LH-V e2-9219", (decimal?)3327.03125, (decimal?)552, (decimal?)25137.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23360, Nebula.NebulaType.Planetary, "Myrierph NN-T e3-4461", 2, true, "Myrierph NN-T e3-4461", (decimal?)3106.75, (decimal?)583.03125, (decimal?)25203.375, (int)10 )); + AllOfThem.Add(new Nebula( 23361, Nebula.NebulaType.Planetary, "Myrierph NX-U e2-3776", 2, true, "Myrierph NX-U e2-3776", (decimal?)3026.09375, (decimal?)197.375, (decimal?)25054.625, (int)10 )); + AllOfThem.Add(new Nebula( 23362, Nebula.NebulaType.Planetary, "Myrierph SJ-Q e5-443", 2, true, "Myrierph SJ-Q e5-443", (decimal?)3291.3125, (decimal?)847.78125, (decimal?)25509.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23363, Nebula.NebulaType.Planetary, "Myrierph WF-O e6-3705", 2, true, "Myrierph WF-O e6-3705", (decimal?)2577.34375, (decimal?)555.90625, (decimal?)25670.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23364, Nebula.NebulaType.Planetary, "Myrierph XO-A e10292", 2, true, "Myrierph XO-A e10292", (decimal?)3125.96875, (decimal?)558.03125, (decimal?)24608.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23365, Nebula.NebulaType.Planetary, "Myrierph XT-A e1288", 2, true, "Myrierph XT-A e1288", (decimal?)3360.9375, (decimal?)717.5, (decimal?)24678.75, (int)10 )); + AllOfThem.Add(new Nebula( 23366, Nebula.NebulaType.Planetary, "Myrierph XT-A e5255", 2, true, "Myrierph XT-A e5255", (decimal?)3340.25, (decimal?)626, (decimal?)24590.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23367, Nebula.NebulaType.Planetary, "Myrierph YZ-P e5-10464", 2, true, "Myrierph YZ-P e5-10464", (decimal?)3592, (decimal?)533.25, (decimal?)25547.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23384, Nebula.NebulaType.Planetary, "Myumbao JN-S e4-2450", 2, true, "Myumbao JN-S e4-2450", (decimal?)3003.875, (decimal?)-1398.53125, (decimal?)22929.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23389, Nebula.NebulaType.Planetary, "Myumboae DW-V e2-1186", 2, true, "Myumboae DW-V e2-1186", (decimal?)-2138.3125, (decimal?)-1607.375, (decimal?)22471.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23390, Nebula.NebulaType.Planetary, "Myumboae WU-P e5-115", 2, true, "Myumboae WU-P e5-115", (decimal?)-2263.4375, (decimal?)-2216.90625, (decimal?)23073.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23497, Nebula.NebulaType.Planetary, "Ogaimy HM-V e2-7812", 2, true, "Ogaimy HM-V e2-7812", (decimal?)-831.15625, (decimal?)640.375, (decimal?)19906.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23498, Nebula.NebulaType.Planetary, "Ogaimy MS-T e3-3542", 2, true, "Ogaimy MS-T e3-3542", (decimal?)-603.625, (decimal?)656.59375, (decimal?)20125.75, (int)10 )); + AllOfThem.Add(new Nebula( 23499, Nebula.NebulaType.Planetary, "Ogaimy NC-V e2-4684", 2, true, "Ogaimy NC-V e2-4684", (decimal?)-483.375, (decimal?)311.75, (decimal?)20031.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23500, Nebula.NebulaType.Planetary, "Ogaimy OD-B e2013", 2, true, "Ogaimy OD-B e2013", (decimal?)-1306.125, (decimal?)1030.875, (decimal?)19562.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23501, Nebula.NebulaType.Planetary, "Ogaimy OI-T e3-1241", 2, true, "Ogaimy OI-T e3-1241", (decimal?)-961.375, (decimal?)422.59375, (decimal?)20208.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23502, Nebula.NebulaType.Planetary, "Ogaimy QE-Q e5-9023", 2, true, "Ogaimy QE-Q e5-9023", (decimal?)-1314.09375, (decimal?)624.84375, (decimal?)20411.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23503, Nebula.NebulaType.Planetary, "Ogaimy QO-Q e5-2298", 2, true, "Ogaimy QO-Q e5-2298", (decimal?)-642.8125, (decimal?)986.25, (decimal?)20442.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23504, Nebula.NebulaType.Planetary, "Ogaimy QO-Q e5-8928", 2, true, "Ogaimy QO-Q e5-8928", (decimal?)-675.875, (decimal?)997.96875, (decimal?)20452.25, (int)10 )); + AllOfThem.Add(new Nebula( 23505, Nebula.NebulaType.Planetary, "Ogaimy RO-Q e5-661", 2, true, "Ogaimy RO-Q e5-661", (decimal?)-476.59375, (decimal?)1004.09375, (decimal?)20469.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23506, Nebula.NebulaType.Planetary, "Ogaimy RY-A e627", 2, true, "Ogaimy RY-A e627", (decimal?)-1158.78125, (decimal?)844.4375, (decimal?)19429.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23507, Nebula.NebulaType.Planetary, "Ogaimy VY-A e8516", 2, true, "Ogaimy VY-A e8516", (decimal?)-417.75, (decimal?)901.71875, (decimal?)19530.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23508, Nebula.NebulaType.Planetary, "Ogainks FB-O e6-2184", 2, true, "Ogainks FB-O e6-2184", (decimal?)2344.25, (decimal?)423.1875, (decimal?)20540.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23509, Nebula.NebulaType.Planetary, "Ogainks FG-X e1-7484", 2, true, "Ogainks FG-X e1-7484", (decimal?)2140.09375, (decimal?)676.625, (decimal?)19770.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23510, Nebula.NebulaType.Planetary, "Ogainks JS-T e3-2599", 2, true, "Ogainks JS-T e3-2599", (decimal?)1461.53125, (decimal?)669.0625, (decimal?)20159.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23511, Nebula.NebulaType.Planetary, "Ogainks LH-V e2-5748", 2, true, "Ogainks LH-V e2-5748", (decimal?)2040.6875, (decimal?)487.34375, (decimal?)19909.25, (int)10 )); + AllOfThem.Add(new Nebula( 23512, Nebula.NebulaType.Planetary, "Ogainks ON-T e3-3681", 2, true, "Ogainks ON-T e3-3681", (decimal?)1923.21875, (decimal?)566.65625, (decimal?)20112.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23513, Nebula.NebulaType.Planetary, "Ogainks OX-U e2-2354", 2, true, "Ogainks OX-U e2-2354", (decimal?)1860.9375, (decimal?)181.21875, (decimal?)20028.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23514, Nebula.NebulaType.Planetary, "Ogainks PJ-Q e5-34", 2, true, "Ogainks PJ-Q e5-34", (decimal?)1499.53125, (decimal?)872.46875, (decimal?)20404.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23515, Nebula.NebulaType.Planetary, "Ogainks QS-U e2-7400", 2, true, "Ogainks QS-U e2-7400", (decimal?)1970.71875, (decimal?)11.28125, (decimal?)20003.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23516, Nebula.NebulaType.Planetary, "Ogainks ZJ-A e8989", 2, true, "Ogainks ZJ-A e8989", (decimal?)1742.21875, (decimal?)382.03125, (decimal?)19442.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23517, Nebula.NebulaType.Planetary, "Ogainks ZU-P e5-7593", 2, true, "Ogainks ZU-P e5-7593", (decimal?)2043.84375, (decimal?)414.03125, (decimal?)20404.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23533, Nebula.NebulaType.Planetary, "Ogairy AF-Z e2477", 2, true, "Ogairy AF-Z e2477", (decimal?)946.4375, (decimal?)896.375, (decimal?)19690.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23534, Nebula.NebulaType.Planetary, "Ogairy AF-Z e6321", 2, true, "Ogairy AF-Z e6321", (decimal?)1027.8125, (decimal?)915.40625, (decimal?)19714.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23535, Nebula.NebulaType.Planetary, "Ogairy AL-O e6-6042", 2, true, "Ogairy AL-O e6-6042", (decimal?)1039.34375, (decimal?)672.375, (decimal?)20560.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23536, Nebula.NebulaType.Planetary, "Ogairy BK-A e5830", 2, true, "Ogairy BK-A e5830", (decimal?)844.59375, (decimal?)412.875, (decimal?)19509.25, (int)10 )); + AllOfThem.Add(new Nebula( 23537, Nebula.NebulaType.Planetary, "Ogairy DV-Y e9667", 2, true, "Ogairy DV-Y e9667", (decimal?)818, (decimal?)550.90625, (decimal?)19691.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23538, Nebula.NebulaType.Planetary, "Ogairy FF-A e3872", 2, true, "Ogairy FF-A e3872", (decimal?)1143.90625, (decimal?)235.25, (decimal?)19480.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23539, Nebula.NebulaType.Planetary, "Ogairy HM-V e2-8699", 2, true, "Ogairy HM-V e2-8699", (decimal?)458.375, (decimal?)686.15625, (decimal?)19898.375, (int)10 )); + AllOfThem.Add(new Nebula( 23540, Nebula.NebulaType.Planetary, "Ogairy JC-U e3-2213", 2, true, "Ogairy JC-U e3-2213", (decimal?)819.75, (decimal?)1060.8125, (decimal?)20084.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23541, Nebula.NebulaType.Planetary, "Ogairy NX-T e3-8447", 2, true, "Ogairy NX-T e3-8447", (decimal?)1072.96875, (decimal?)883.03125, (decimal?)20057.375, (int)10 )); + AllOfThem.Add(new Nebula( 23542, Nebula.NebulaType.Planetary, "Ogairy OS-T e3-3253", 2, true, "Ogairy OS-T e3-3253", (decimal?)1037.59375, (decimal?)689.6875, (decimal?)20194.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23543, Nebula.NebulaType.Planetary, "Ogairy QD-S e4-3084", 2, true, "Ogairy QD-S e4-3084", (decimal?)1054.625, (decimal?)922.59375, (decimal?)20240.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23544, Nebula.NebulaType.Planetary, "Ogairy RD-S e4-3553", 2, true, "Ogairy RD-S e4-3553", (decimal?)1135.3125, (decimal?)789.375, (decimal?)20335.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23545, Nebula.NebulaType.Planetary, "Ogairy WP-O e6-4163", 2, true, "Ogairy WP-O e6-4163", (decimal?)618.03125, (decimal?)790.90625, (decimal?)20613.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23546, Nebula.NebulaType.Planetary, "Ogairy WU-O e6-2364", 2, true, "Ogairy WU-O e6-2364", (decimal?)906.65625, (decimal?)1081.90625, (decimal?)20672.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23547, Nebula.NebulaType.Planetary, "Ogairy YP-O e6-6811", 2, true, "Ogairy YP-O e6-6811", (decimal?)981.71875, (decimal?)806.34375, (decimal?)20576.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23548, Nebula.NebulaType.Planetary, "Ogairy ZP-O e6-5878", 2, true, "Ogairy ZP-O e6-5878", (decimal?)1128.71875, (decimal?)834.4375, (decimal?)20566.75, (int)10 )); + AllOfThem.Add(new Nebula( 23550, Nebula.NebulaType.Planetary, "Ogaiws CQ-Y e6692", 2, true, "Ogaiws CQ-Y e6692", (decimal?)-3455.78125, (decimal?)411.9375, (decimal?)19576.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23551, Nebula.NebulaType.Planetary, "Ogaiws FB-X e1-2565", 2, true, "Ogaiws FB-X e1-2565", (decimal?)-3278.09375, (decimal?)560.625, (decimal?)19740.625, (int)10 )); + AllOfThem.Add(new Nebula( 23552, Nebula.NebulaType.Planetary, "Ogaiws KD-S e4-5405", 2, true, "Ogaiws KD-S e4-5405", (decimal?)-3794.96875, (decimal?)807.21875, (decimal?)20330.25, (int)10 )); + AllOfThem.Add(new Nebula( 23553, Nebula.NebulaType.Planetary, "Ogaiws KD-S e4-6061", 2, true, "Ogaiws KD-S e4-6061", (decimal?)-3768.46875, (decimal?)847.5, (decimal?)20219.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23554, Nebula.NebulaType.Planetary, "Ogaiws MI-T e3-3248", 2, true, "Ogaiws MI-T e3-3248", (decimal?)-3897.125, (decimal?)367.40625, (decimal?)20182.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23555, Nebula.NebulaType.Planetary, "Ogaiws UU-O e6-2708", 2, true, "Ogaiws UU-O e6-2708", (decimal?)-3132.8125, (decimal?)1022.78125, (decimal?)20689.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23556, Nebula.NebulaType.Planetary, "Ogaiws YJ-Z e218", 2, true, "Ogaiws YJ-Z e218", (decimal?)-2931.6875, (decimal?)964.40625, (decimal?)19690.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23557, Nebula.NebulaType.Planetary, "Ongaihn CR-N e6-341", 2, true, "Ongaihn CR-N e6-341", (decimal?)5178.5, (decimal?)18, (decimal?)20625.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23559, Nebula.NebulaType.Planetary, "Ongaihn ZK-P e5-502", 2, true, "Ongaihn ZK-P e5-502", (decimal?)5353.625, (decimal?)34.71875, (decimal?)20390.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23597, Nebula.NebulaType.Planetary, "Oufaisc DW-V e2-1392", 2, true, "Oufaisc DW-V e2-1392", (decimal?)4342.0625, (decimal?)-1495.6875, (decimal?)27628.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23613, Nebula.NebulaType.Planetary, "Phaa Aoc AV-P e5-331", 2, true, "Phaa Aoc AV-P e5-331", (decimal?)3529.78125, (decimal?)431.65625, (decimal?)24225.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23614, Nebula.NebulaType.Planetary, "Phaa Aoc BL-X e1-9396", 2, true, "Phaa Aoc BL-X e1-9396", (decimal?)3004.71875, (decimal?)911.375, (decimal?)23643.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23615, Nebula.NebulaType.Planetary, "Phaa Aoc GX-T e3-8202", 2, true, "Phaa Aoc GX-T e3-8202", (decimal?)2623.71875, (decimal?)916.46875, (decimal?)24045.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23616, Nebula.NebulaType.Planetary, "Phaa Aoc HH-U e3-3028", 2, true, "Phaa Aoc HH-U e3-3028", (decimal?)3446.59375, (decimal?)1096.78125, (decimal?)23986.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23617, Nebula.NebulaType.Planetary, "Phaa Aoc IC-V e2-7534", 2, true, "Phaa Aoc IC-V e2-7534", (decimal?)2506.21875, (decimal?)429.0625, (decimal?)23882.625, (int)10 )); + AllOfThem.Add(new Nebula( 23618, Nebula.NebulaType.Planetary, "Phaa Aoc JX-T e3-134", 2, true, "Phaa Aoc JX-T e3-134", (decimal?)3122.71875, (decimal?)888.40625, (decimal?)23940.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23619, Nebula.NebulaType.Planetary, "Phaa Aoc KX-T e3-252", 2, true, "Phaa Aoc KX-T e3-252", (decimal?)3174.46875, (decimal?)855.03125, (decimal?)24011.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23620, Nebula.NebulaType.Planetary, "Phaa Aoc PD-S e4-9371", 2, true, "Phaa Aoc PD-S e4-9371", (decimal?)3399.6875, (decimal?)788.0625, (decimal?)24073.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23621, Nebula.NebulaType.Planetary, "Phaa Aoc QO-Q e5-957", 2, true, "Phaa Aoc QO-Q e5-957", (decimal?)3183.8125, (decimal?)953.59375, (decimal?)24350.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23622, Nebula.NebulaType.Planetary, "Phaa Aoc SY-A e5049", 2, true, "Phaa Aoc SY-A e5049", (decimal?)2837.4375, (decimal?)872.03125, (decimal?)23263.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23623, Nebula.NebulaType.Planetary, "Phaa Aoc WT-A e5173", 2, true, "Phaa Aoc WT-A e5173", (decimal?)3189.0625, (decimal?)694.9375, (decimal?)23350.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23624, Nebula.NebulaType.Planetary, "Phaa Aoc XP-X e1-3529", 2, true, "Phaa Aoc XP-X e1-3529", (decimal?)2692, (decimal?)994.75, (decimal?)23660.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23631, Nebula.NebulaType.Planetary, "Phaa Aug WJ-R e4-282", 2, true, "Phaa Aug WJ-R e4-282", (decimal?)3173.34375, (decimal?)1470.53125, (decimal?)26678.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23632, Nebula.NebulaType.Planetary, "Phaa Aurb BB-O e6-57", 2, true, "Phaa Aurb BB-O e6-57", (decimal?)5640.09375, (decimal?)1596.75, (decimal?)27042.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23671, Nebula.NebulaType.Planetary, "Pheia Auscs TJ-Q e5-109", 2, true, "Pheia Auscs TJ-Q e5-109", (decimal?)8423.9375, (decimal?)837.96875, (decimal?)26819.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23737, Nebula.NebulaType.Planetary, "Phipaa BK-A e956", 2, true, "Phipaa BK-A e956", (decimal?)2102, (decimal?)412.375, (decimal?)27195.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23749, Nebula.NebulaType.Planetary, "Phipaa ZO-A e1207", 2, true, "Phipaa ZO-A e1207", (decimal?)2094.21875, (decimal?)463.28125, (decimal?)27107.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23750, Nebula.NebulaType.Planetary, "Phipae AA-Z e5452", 2, true, "Phipae AA-Z e5452", (decimal?)5821.03125, (decimal?)772.5625, (decimal?)27406.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23751, Nebula.NebulaType.Planetary, "Phipae AW-N e6-677", 2, true, "Phipae AW-N e6-677", (decimal?)5122.46875, (decimal?)237.40625, (decimal?)28374.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23752, Nebula.NebulaType.Planetary, "Phipae CV-Y e3651", 2, true, "Phipae CV-Y e3651", (decimal?)5709.21875, (decimal?)462.125, (decimal?)27383.5, (int)10 )); + AllOfThem.Add(new Nebula( 23753, Nebula.NebulaType.Planetary, "Phipae CV-Y e5106", 2, true, "Phipae CV-Y e5106", (decimal?)5734.4375, (decimal?)533.84375, (decimal?)27264.75, (int)10 )); + AllOfThem.Add(new Nebula( 23754, Nebula.NebulaType.Planetary, "Phipae DL-X e1-4212", 2, true, "Phipae DL-X e1-4212", (decimal?)5961.875, (decimal?)905.4375, (decimal?)27478.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23755, Nebula.NebulaType.Planetary, "Phipae EL-X e1-1433", 2, true, "Phipae EL-X e1-1433", (decimal?)6029.5, (decimal?)829.34375, (decimal?)27457.625, (int)10 )); + AllOfThem.Add(new Nebula( 23756, Nebula.NebulaType.Planetary, "Phipae KH-V e2-7630", 2, true, "Phipae KH-V e2-7630", (decimal?)5723.6875, (decimal?)599.0625, (decimal?)27606.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23757, Nebula.NebulaType.Planetary, "Phipae WE-Z e7255", 2, true, "Phipae WE-Z e7255", (decimal?)5381.15625, (decimal?)929.65625, (decimal?)27376.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23758, Nebula.NebulaType.Planetary, "Phipae YZ-Y e1163", 2, true, "Phipae YZ-Y e1163", (decimal?)5440.09375, (decimal?)690.28125, (decimal?)27374.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23759, Nebula.NebulaType.Planetary, "Phipae ZF-O e6-7350", 2, true, "Phipae ZF-O e6-7350", (decimal?)5545.1875, (decimal?)588.09375, (decimal?)28292.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23810, Nebula.NebulaType.Planetary, "Phoi Aod AV-Y e4509", 2, true, "Phoi Aod AV-Y e4509", (decimal?)4111.15625, (decimal?)480.65625, (decimal?)23572.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23811, Nebula.NebulaType.Planetary, "Phoi Aod DL-P e5-990", 2, true, "Phoi Aod DL-P e5-990", (decimal?)4717.59375, (decimal?)67.28125, (decimal?)24301.875, (int)10 )); + AllOfThem.Add(new Nebula( 23812, Nebula.NebulaType.Planetary, "Phoi Aod DQ-X e1-2734", 2, true, "Phoi Aod DQ-X e1-2734", (decimal?)5007.84375, (decimal?)1076, (decimal?)23590.25, (int)10 )); + AllOfThem.Add(new Nebula( 23813, Nebula.NebulaType.Planetary, "Phoi Aod EL-Y e1086", 2, true, "Phoi Aod EL-Y e1086", (decimal?)4108.9375, (decimal?)191.375, (decimal?)23448.625, (int)10 )); + AllOfThem.Add(new Nebula( 23814, Nebula.NebulaType.Planetary, "Phoi Aod GW-N e6-1936", 2, true, "Phoi Aod GW-N e6-1936", (decimal?)4778.34375, (decimal?)168.46875, (decimal?)24445.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23815, Nebula.NebulaType.Planetary, "Phoi Aod IM-V e2-1883", 2, true, "Phoi Aod IM-V e2-1883", (decimal?)4419.5625, (decimal?)622.21875, (decimal?)23839.375, (int)10 )); + AllOfThem.Add(new Nebula( 23816, Nebula.NebulaType.Planetary, "Phoi Aod JR-W e1-1691", 2, true, "Phoi Aod JR-W e1-1691", (decimal?)4364.625, (decimal?)221.34375, (decimal?)23715.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23817, Nebula.NebulaType.Planetary, "Phoi Aod NN-T e3-4906", 2, true, "Phoi Aod NN-T e3-4906", (decimal?)4360.15625, (decimal?)497.34375, (decimal?)23983.25, (int)10 )); + AllOfThem.Add(new Nebula( 23818, Nebula.NebulaType.Planetary, "Phoi Aod QD-S e4-1933", 2, true, "Phoi Aod QD-S e4-1933", (decimal?)4820.6875, (decimal?)894.9375, (decimal?)24096.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23819, Nebula.NebulaType.Planetary, "Phoi Aod UZ-P e5-7818", 2, true, "Phoi Aod UZ-P e5-7818", (decimal?)4174.59375, (decimal?)567.59375, (decimal?)24310.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23820, Nebula.NebulaType.Planetary, "Phoi Aod UZ-P e5-8024", 2, true, "Phoi Aod UZ-P e5-8024", (decimal?)4115.25, (decimal?)571.90625, (decimal?)24247.5, (int)10 )); + AllOfThem.Add(new Nebula( 23821, Nebula.NebulaType.Planetary, "Phoi Aod VY-S e3-3043", 2, true, "Phoi Aod VY-S e3-3043", (decimal?)4598.40625, (decimal?)104.40625, (decimal?)23987.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23822, Nebula.NebulaType.Planetary, "Phoi Aod WE-Z e260", 2, true, "Phoi Aod WE-Z e260", (decimal?)4184.84375, (decimal?)840.375, (decimal?)23418.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23823, Nebula.NebulaType.Planetary, "Phoi Aod XT-A e1920", 2, true, "Phoi Aod XT-A e1920", (decimal?)4592.875, (decimal?)673.15625, (decimal?)23327.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23824, Nebula.NebulaType.Planetary, "Phoi Aod YK-X e1-7459", 2, true, "Phoi Aod YK-X e1-7459", (decimal?)3822.09375, (decimal?)779.3125, (decimal?)23730.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23857, Nebula.NebulaType.Planetary, "Phoi Auscs DK-A e904", 2, true, "Phoi Auscs DK-A e904", (decimal?)2450.34375, (decimal?)414.1875, (decimal?)25867.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23858, Nebula.NebulaType.Planetary, "Phoi Auscs EF-A e4312", 2, true, "Phoi Auscs EF-A e4312", (decimal?)2257.21875, (decimal?)231.78125, (decimal?)25888.125, (int)10 )); + AllOfThem.Add(new Nebula( 23859, Nebula.NebulaType.Planetary, "Phoi Auscs EQ-Y e5290", 2, true, "Phoi Auscs EQ-Y e5290", (decimal?)1866.5, (decimal?)400.59375, (decimal?)25985.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23861, Nebula.NebulaType.Planetary, "Phoi Auscs FW-N e6-5633", 2, true, "Phoi Auscs FW-N e6-5633", (decimal?)2160.96875, (decimal?)192.96875, (decimal?)27071, (int)10 )); + AllOfThem.Add(new Nebula( 23862, Nebula.NebulaType.Planetary, "Phoi Auscs KC-U e3-5434", 2, true, "Phoi Auscs KC-U e3-5434", (decimal?)2324.15625, (decimal?)1049.25, (decimal?)26573.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23866, Nebula.NebulaType.Planetary, "Phoi Auscs RY-R e4-1249", 2, true, "Phoi Auscs RY-R e4-1249", (decimal?)2123.1875, (decimal?)688.78125, (decimal?)26737.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23870, Nebula.NebulaType.Planetary, "Phoi Auwsy AL-X e1-6006", 2, true, "Phoi Auwsy AL-X e1-6006", (decimal?)4195.4375, (decimal?)782.28125, (decimal?)26239.25, (int)10 )); + AllOfThem.Add(new Nebula( 23871, Nebula.NebulaType.Planetary, "Phoi Auwsy EL-X e1-1925", 2, true, "Phoi Auwsy EL-X e1-1925", (decimal?)4838.25, (decimal?)844.125, (decimal?)26276.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23872, Nebula.NebulaType.Planetary, "Phoi Auwsy OS-T e3-2593", 2, true, "Phoi Auwsy OS-T e3-2593", (decimal?)4765.53125, (decimal?)719.09375, (decimal?)26577.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23873, Nebula.NebulaType.Planetary, "Phoi Auwsy OY-R e4-5588", 2, true, "Phoi Auwsy OY-R e4-5588", (decimal?)4249.5, (decimal?)708.1875, (decimal?)26711.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23874, Nebula.NebulaType.Planetary, "Phoi Auwsy SP-O e6-3605", 2, true, "Phoi Auwsy SP-O e6-3605", (decimal?)3894.125, (decimal?)782.96875, (decimal?)26938.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23875, Nebula.NebulaType.Planetary, "Phoi Auwsy TT-A e5475", 2, true, "Phoi Auwsy TT-A e5475", (decimal?)3940.53125, (decimal?)673.03125, (decimal?)25899.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23876, Nebula.NebulaType.Planetary, "Phoi Auwsy TT-A e9563", 2, true, "Phoi Auwsy TT-A e9563", (decimal?)4066.8125, (decimal?)759.71875, (decimal?)25970.75, (int)10 )); + AllOfThem.Add(new Nebula( 23877, Nebula.NebulaType.Planetary, "Phoi Auwsy UK-O e6-4284", 2, true, "Phoi Auwsy UK-O e6-4284", (decimal?)3799.84375, (decimal?)749.46875, (decimal?)26941.25, (int)10 )); + AllOfThem.Add(new Nebula( 23878, Nebula.NebulaType.Planetary, "Phoi Auwsy UK-O e6-8903", 2, true, "Phoi Auwsy UK-O e6-8903", (decimal?)3819.125, (decimal?)640.71875, (decimal?)26959, (int)10 )); + AllOfThem.Add(new Nebula( 23879, Nebula.NebulaType.Planetary, "Phoi Auwsy VP-O e6-2614", 2, true, "Phoi Auwsy VP-O e6-2614", (decimal?)4324.625, (decimal?)825.875, (decimal?)27016.5, (int)10 )); + AllOfThem.Add(new Nebula( 23880, Nebula.NebulaType.Planetary, "Phoi Auwsy WY-A e532", 2, true, "Phoi Auwsy WY-A e532", (decimal?)4812.125, (decimal?)787.15625, (decimal?)25940.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23881, Nebula.NebulaType.Planetary, "Phoi Auwsy XF-O e6-9873", 2, true, "Phoi Auwsy XF-O e6-9873", (decimal?)3939.0625, (decimal?)545, (decimal?)27011.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23882, Nebula.NebulaType.Planetary, "Phoi Auwsy XY-A e1497", 2, true, "Phoi Auwsy XY-A e1497", (decimal?)4895.03125, (decimal?)927, (decimal?)25825.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23883, Nebula.NebulaType.Planetary, "Phoi Auwsy ZZ-P e5-2734", 2, true, "Phoi Auwsy ZZ-P e5-2734", (decimal?)4963.25, (decimal?)520.59375, (decimal?)26849.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23884, Nebula.NebulaType.Planetary, "Phoi Auwsy ZZ-Y e9921", 2, true, "Phoi Auwsy ZZ-Y e9921", (decimal?)4346.25, (decimal?)631.0625, (decimal?)25982.75, (int)10 )); + AllOfThem.Add(new Nebula( 23895, Nebula.NebulaType.Planetary, "Phoi Screia GH-V e2-655", 2, true, "Phoi Screia GH-V e2-655", (decimal?)1251.53125, (decimal?)1808.28125, (decimal?)23749.125, (int)10 )); + AllOfThem.Add(new Nebula( 23911, Nebula.NebulaType.Planetary, "Phraa Flya CQ-X e1-2574", 2, true, "Phraa Flya CQ-X e1-2574", (decimal?)897.84375, (decimal?)-1523.3125, (decimal?)23688.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23912, Nebula.NebulaType.Planetary, "Phraa Flya DQ-Y e177", 2, true, "Phraa Flya DQ-Y e177", (decimal?)565.34375, (decimal?)-2169, (decimal?)23571.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23914, Nebula.NebulaType.Planetary, "Phraa Flyoo CB-W e2-4634", 2, true, "Phraa Flyoo CB-W e2-4634", (decimal?)-1836.40625, (decimal?)-1328.25, (decimal?)23880.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23915, Nebula.NebulaType.Planetary, "Phraa Flyuae AF-A e563", 2, true, "Phraa Flyuae AF-A e563", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 23916, Nebula.NebulaType.Planetary, "Phraa Flyuae BW-V e2-6424", 2, true, "Phraa Flyuae BW-V e2-6424", (decimal?)-2323, (decimal?)-319.125, (decimal?)23856.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23917, Nebula.NebulaType.Planetary, "Phraa Flyuae CB-O e6-6622", 2, true, "Phraa Flyuae CB-O e6-6622", (decimal?)-1874.15625, (decimal?)-835.125, (decimal?)24465.75, (int)10 )); + AllOfThem.Add(new Nebula( 23918, Nebula.NebulaType.Planetary, "Phraa Flyuae CV-Y e9066", 2, true, "Phraa Flyuae CV-Y e9066", (decimal?)-1829.6875, (decimal?)-683.09375, (decimal?)23532.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23919, Nebula.NebulaType.Planetary, "Phraa Flyuae EW-W e1-4924", 2, true, "Phraa Flyuae EW-W e1-4924", (decimal?)-2508.625, (decimal?)-897, (decimal?)23649.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23920, Nebula.NebulaType.Planetary, "Phraa Flyuae JC-U e3-4540", 2, true, "Phraa Flyuae JC-U e3-4540", (decimal?)-1739.6875, (decimal?)-215.5625, (decimal?)24035.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23921, Nebula.NebulaType.Planetary, "Phraa Flyuae NT-Q e5-1006", 2, true, "Phraa Flyuae NT-Q e5-1006", (decimal?)-2030.6875, (decimal?)-121.78125, (decimal?)24232.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23922, Nebula.NebulaType.Planetary, "Phraa Flyuae RT-R e4-8549", 2, true, "Phraa Flyuae RT-R e4-8549", (decimal?)-2097.125, (decimal?)-786.53125, (decimal?)24157.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23923, Nebula.NebulaType.Planetary, "Phraa Flyuae SU-O e6-5258", 2, true, "Phraa Flyuae SU-O e6-5258", (decimal?)-2290.09375, (decimal?)-292.625, (decimal?)24470.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23924, Nebula.NebulaType.Planetary, "Phraa Flyuae TD-B e1912", 2, true, "Phraa Flyuae TD-B e1912", (decimal?)-1691.09375, (decimal?)-299.5625, (decimal?)23301.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23926, Nebula.NebulaType.Planetary, "Phraa Flyuae UJ-Q e5-5007", 2, true, "Phraa Flyuae UJ-Q e5-5007", (decimal?)-1627.21875, (decimal?)-500.71875, (decimal?)24248.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23927, Nebula.NebulaType.Planetary, "Phraa Flyuae VJ-Z e2875", 2, true, "Phraa Flyuae VJ-Z e2875", (decimal?)-2106.8125, (decimal?)-263.875, (decimal?)23431.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23928, Nebula.NebulaType.Planetary, "Phraa Flyuae VJ-Z e7160", 2, true, "Phraa Flyuae VJ-Z e7160", (decimal?)-2044.125, (decimal?)-261.21875, (decimal?)23420.125, (int)10 )); + AllOfThem.Add(new Nebula( 23929, Nebula.NebulaType.Planetary, "Phraa Flyuae WJ-A e5505", 2, true, "Phraa Flyuae WJ-A e5505", (decimal?)-2499.875, (decimal?)-902.125, (decimal?)23270.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23930, Nebula.NebulaType.Planetary, "Phraa Flyuae YT-A e1704", 2, true, "Phraa Flyuae YT-A e1704", (decimal?)-1508.875, (decimal?)-654.75, (decimal?)23346.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23931, Nebula.NebulaType.Planetary, "Phraa Flyuae YT-A e3420", 2, true, "Phraa Flyuae YT-A e3420", (decimal?)-1592.75, (decimal?)-538.4375, (decimal?)23256.25, (int)10 )); + AllOfThem.Add(new Nebula( 23932, Nebula.NebulaType.Planetary, "Phraa Flyuae ZA-O e6-5689", 2, true, "Phraa Flyuae ZA-O e6-5689", (decimal?)-2461.6875, (decimal?)-898.65625, (decimal?)24497.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23966, Nebula.NebulaType.Planetary, "Phrio Prao HQ-Y e9370", 2, true, "Phrio Prao HQ-Y e9370", (decimal?)2406.03125, (decimal?)-942.9375, (decimal?)26112.875, (int)10 )); + AllOfThem.Add(new Nebula( 23967, Nebula.NebulaType.Planetary, "Phrio Prao IL-Y e1631", 2, true, "Phrio Prao IL-Y e1631", (decimal?)2272.625, (decimal?)-1116.375, (decimal?)26109.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23968, Nebula.NebulaType.Planetary, "Phrio Prao JB-X e1-10042", 2, true, "Phrio Prao JB-X e1-10042", (decimal?)2344.3125, (decimal?)-785.75, (decimal?)26170.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23971, Nebula.NebulaType.Planetary, "Phrio Prao MN-S e4-4295", 2, true, "Phrio Prao MN-S e4-4295", (decimal?)2331.65625, (decimal?)-85.0625, (decimal?)26753.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23973, Nebula.NebulaType.Planetary, "Phrio Prao PI-S e4-4054", 2, true, "Phrio Prao PI-S e4-4054", (decimal?)2352.03125, (decimal?)-314.53125, (decimal?)26734.75, (int)10 )); + AllOfThem.Add(new Nebula( 23974, Nebula.NebulaType.Planetary, "Phrio Prao VD-T e3-271", 2, true, "Phrio Prao VD-T e3-271", (decimal?)2343.53125, (decimal?)-1016.125, (decimal?)26581.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24005, Nebula.NebulaType.Planetary, "Phroea Flyai ZK-X e1-43", 2, true, "Phroea Flyai ZK-X e1-43", (decimal?)5249.09375, (decimal?)-1641.125, (decimal?)23667.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24023, Nebula.NebulaType.Planetary, "Phroea Ploe AG-X e1-4665", 2, true, "Phroea Ploe AG-X e1-4665", (decimal?)5155, (decimal?)-578.625, (decimal?)23589.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24025, Nebula.NebulaType.Planetary, "Phroea Ploe HB-X e1-1191", 2, true, "Phroea Ploe HB-X e1-1191", (decimal?)5877.46875, (decimal?)-801.15625, (decimal?)23582.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24026, Nebula.NebulaType.Planetary, "Phroea Ploe OD-B e7611", 2, true, "Phroea Ploe OD-B e7611", (decimal?)5090.25, (decimal?)-287.6875, (decimal?)23389.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24027, Nebula.NebulaType.Planetary, "Phroea Ploe OI-B e415", 2, true, "Phroea Ploe OI-B e415", (decimal?)5456.71875, (decimal?)-89.0625, (decimal?)23405.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24028, Nebula.NebulaType.Planetary, "Phroea Ploe PD-B e2165", 2, true, "Phroea Ploe PD-B e2165", (decimal?)5300.46875, (decimal?)-224, (decimal?)23313.75, (int)10 )); + AllOfThem.Add(new Nebula( 24029, Nebula.NebulaType.Planetary, "Phroea Ploe SJ-Z e3908", 2, true, "Phroea Ploe SJ-Z e3908", (decimal?)5094.90625, (decimal?)-287.625, (decimal?)23545.125, (int)10 )); + AllOfThem.Add(new Nebula( 24030, Nebula.NebulaType.Planetary, "Phroea Ploe SJ-Z e5703", 2, true, "Phroea Ploe SJ-Z e5703", (decimal?)5095.65625, (decimal?)-323.6875, (decimal?)23456.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24031, Nebula.NebulaType.Planetary, "Phroea Ploe SO-R e4-5834", 2, true, "Phroea Ploe SO-R e4-5834", (decimal?)5489.125, (decimal?)-921.5, (decimal?)24080.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24032, Nebula.NebulaType.Planetary, "Phroea Ploe SO-Z e5374", 2, true, "Phroea Ploe SO-Z e5374", (decimal?)5480.875, (decimal?)-178.0625, (decimal?)23453.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24033, Nebula.NebulaType.Planetary, "Phroea Ploe UO-R E4-4653", 2, true, "Phroea Ploe UO-R e4-4653", (decimal?)5748.71875, (decimal?)-839.3125, (decimal?)24059.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24034, Nebula.NebulaType.Planetary, "Phroea Ploe UY-A E690", 2, true, "Phroea Ploe UY-A e690", (decimal?)5742.46875, (decimal?)-388.375, (decimal?)23260.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24035, Nebula.NebulaType.Planetary, "Phroea Ploe VZ-P E5-9353", 2, true, "Phroea Ploe VZ-P e5-9353", (decimal?)5625.96875, (decimal?)-751.84375, (decimal?)24240.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24036, Nebula.NebulaType.Planetary, "Phroea Ploe VZ-P e5-9353", 2, true, "Phroea Ploe VZ-P e5-9353", (decimal?)5625.96875, (decimal?)-751.84375, (decimal?)24240.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24037, Nebula.NebulaType.Planetary, "Phroea Ploe WO-A E197", 2, true, "Phroea Ploe WO-A e197", (decimal?)5421.90625, (decimal?)-806.1875, (decimal?)23311.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24038, Nebula.NebulaType.Planetary, "Phroea Ploe ZU-P e5-6516", 2, true, "Phroea Ploe ZU-P e5-6516", (decimal?)5932.09375, (decimal?)-900.4375, (decimal?)24357.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24039, Nebula.NebulaType.Planetary, "Phroea Prao AB-O e6-2118", 2, true, "Phroea Prao AB-O e6-2118", (decimal?)2945.40625, (decimal?)-933.84375, (decimal?)27014.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24040, Nebula.NebulaType.Planetary, "Phroea Prao AB-O e6-6899", 2, true, "Phroea Prao AB-O e6-6899", (decimal?)2963.75, (decimal?)-919.8125, (decimal?)27086.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24041, Nebula.NebulaType.Planetary, "Phroea Prao BL-O e6-7065", 2, true, "Phroea Prao BL-O e6-7065", (decimal?)3664.75, (decimal?)-607.84375, (decimal?)27078.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24042, Nebula.NebulaType.Planetary, "Phroea Prao BW-V e2-3264", 2, true, "Phroea Prao BW-V e2-3264", (decimal?)2812.09375, (decimal?)-334.71875, (decimal?)26439.5, (int)10 )); + AllOfThem.Add(new Nebula( 24043, Nebula.NebulaType.Planetary, "Phroea Prao DB-O e6-6684", 2, true, "Phroea Prao DB-O e6-6684", (decimal?)3371.3125, (decimal?)-885.59375, (decimal?)27090.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24044, Nebula.NebulaType.Planetary, "Phroea Prao FW-V e2-135", 2, true, "Phroea Prao FW-V e2-135", (decimal?)3380.0625, (decimal?)-256.96875, (decimal?)26442.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24045, Nebula.NebulaType.Planetary, "Phroea Prao GR-N e6-651", 2, true, "Phroea Prao GR-N e6-651", (decimal?)3284.59375, (decimal?)-1203, (decimal?)26956.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24046, Nebula.NebulaType.Planetary, "Phroea Prao MM-W e1-855", 2, true, "Phroea Prao MM-W e1-855", (decimal?)3206.46875, (decimal?)-1183.125, (decimal?)26235.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24047, Nebula.NebulaType.Planetary, "Phroea Prao QN-T E3-9228", 2, true, "Phroea Prao QN-T e3-9228", (decimal?)3596.3125, (decimal?)-688.71875, (decimal?)26572.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24048, Nebula.NebulaType.Planetary, "Phroea Prao TO-R e4-4465", 2, true, "Phroea Prao TO-R e4-4465", (decimal?)3133.65625, (decimal?)-879.71875, (decimal?)26707.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24049, Nebula.NebulaType.Planetary, "Phroea Prao TY-A e7549", 2, true, "Phroea Prao TY-A e7549", (decimal?)2982.65625, (decimal?)-393.625, (decimal?)25840.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24050, Nebula.NebulaType.Planetary, "Phroea Prao UZ-P e5-5136", 2, true, "Phroea Prao UZ-P e5-5136", (decimal?)2854.5625, (decimal?)-783.3125, (decimal?)26913.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24051, Nebula.NebulaType.Planetary, "Phroea Prao VU-X e1-1994", 2, true, "Phroea Prao VU-X e1-1994", (decimal?)2660.15625, (decimal?)-74.8125, (decimal?)26138.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24052, Nebula.NebulaType.Planetary, "Phroea Prao WJ-A e2687", 2, true, "Phroea Prao WJ-A e2687", (decimal?)2621.3125, (decimal?)-967.125, (decimal?)25913.875, (int)10 )); + AllOfThem.Add(new Nebula( 24053, Nebula.NebulaType.Planetary, "Phroea Prao XY-S e3-973", 2, true, "Phroea Prao XY-S e3-973", (decimal?)3650.8125, (decimal?)-1304.8125, (decimal?)26525.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24054, Nebula.NebulaType.Planetary, "Phroea Prau BF-Z e3396", 2, true, "Phroea Prau BF-Z e3396", (decimal?)6305.9375, (decimal?)-489.125, (decimal?)26071.75, (int)10 )); + AllOfThem.Add(new Nebula( 24055, Nebula.NebulaType.Planetary, "Phroea Prau DB-O e6-7416", 2, true, "Phroea Prau DB-O e6-7416", (decimal?)5940.375, (decimal?)-924.4375, (decimal?)26938.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24056, Nebula.NebulaType.Planetary, "Phroea Prau EG-X e1-2277", 2, true, "Phroea Prau EG-X e1-2277", (decimal?)5840.4375, (decimal?)-568.65625, (decimal?)26209.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24057, Nebula.NebulaType.Planetary, "Phroea Prau EM-V e2-3559", 2, true, "Phroea Prau EM-V e2-3559", (decimal?)5141.15625, (decimal?)-528.125, (decimal?)26346.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24058, Nebula.NebulaType.Planetary, "Phroea Prau FF-A e1622", 2, true, "Phroea Prau FF-A e1622", (decimal?)6176.6875, (decimal?)-1080.625, (decimal?)25823.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24059, Nebula.NebulaType.Planetary, "Phroea Prau JN-S e4-3524", 2, true, "Phroea Prau JN-S e4-3524", (decimal?)5694.34375, (decimal?)-79.03125, (decimal?)26692.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24060, Nebula.NebulaType.Planetary, "Phroea Prau OX-U e2-4580", 2, true, "Phroea Prau OX-U e2-4580", (decimal?)5756, (decimal?)-1076, (decimal?)26305.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24061, Nebula.NebulaType.Planetary, "Phroea Prau PT-R e4-1282", 2, true, "Phroea Prau PT-R e4-1282", (decimal?)5360.5, (decimal?)-696.5625, (decimal?)26736.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24062, Nebula.NebulaType.Planetary, "Phroea Prau RN-T e3-3787", 2, true, "Phroea Prau RN-T e3-3787", (decimal?)6182.8125, (decimal?)-736.03125, (decimal?)26501.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24063, Nebula.NebulaType.Planetary, "Phroea Prau RT-R e4-9284", 2, true, "Phroea Prau RT-R e4-9284", (decimal?)5585.71875, (decimal?)-681, (decimal?)26638.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24064, Nebula.NebulaType.Planetary, "Phroea Prau TE-Q e5-4663", 2, true, "Phroea Prau TE-Q e5-4663", (decimal?)5615.09375, (decimal?)-539.28125, (decimal?)26911.375, (int)10 )); + AllOfThem.Add(new Nebula( 24065, Nebula.NebulaType.Planetary, "Phroea Prau TJ-Q e5-2949", 2, true, "Phroea Prau TJ-Q e5-2949", (decimal?)6012.03125, (decimal?)-486.375, (decimal?)26806.25, (int)10 )); + AllOfThem.Add(new Nebula( 24066, Nebula.NebulaType.Planetary, "Phroea Prau UK-O e6-9362", 2, true, "Phroea Prau UK-O e6-9362", (decimal?)5153.09375, (decimal?)-612.71875, (decimal?)27017.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24067, Nebula.NebulaType.Planetary, "Phroea Prau VJ-Z e1068", 2, true, "Phroea Prau VJ-Z e1068", (decimal?)5608, (decimal?)-216.3125, (decimal?)25995.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24068, Nebula.NebulaType.Planetary, "Phroea Prau WZ-Y e2433", 2, true, "Phroea Prau WZ-Y e2433", (decimal?)5160.5625, (decimal?)-616.03125, (decimal?)26027.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24069, Nebula.NebulaType.Planetary, "Phroea Prau YK-O e6-4773", 2, true, "Phroea Prau YK-O e6-4773", (decimal?)5727.71875, (decimal?)-585.9375, (decimal?)26937.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24070, Nebula.NebulaType.Planetary, "Phroea Prau YO-A e5734", 2, true, "Phroea Prau YO-A e5734", (decimal?)5837.4375, (decimal?)-711.46875, (decimal?)25866.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24071, Nebula.NebulaType.Planetary, "Phroea Prau ZZ-P e5-2747", 2, true, "Phroea Prau ZZ-P e5-2747", (decimal?)6283.90625, (decimal?)-709.3125, (decimal?)26865.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24072, Nebula.NebulaType.Planetary, "Phroea Prau ZZ-Y e663", 2, true, "Phroea Prau ZZ-Y e663", (decimal?)5669.15625, (decimal?)-591.4375, (decimal?)25999.75, (int)10 )); + AllOfThem.Add(new Nebula( 24096, Nebula.NebulaType.Planetary, "Phroi Flya DG-X e1-772", 2, true, "Phroi Flya DG-X e1-772", (decimal?)-766.8125, (decimal?)-1844.15625, (decimal?)23724.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24105, Nebula.NebulaType.Planetary, "Phroi Flyao MY-R e4-2930", 2, true, "Phroi Flyao MY-R e4-2930", (decimal?)6468.9375, (decimal?)-544.03125, (decimal?)24078.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24110, Nebula.NebulaType.Planetary, "Phroi Flyuae MN-S e4-4719", 2, true, "Phroi Flyuae MN-S e4-4719", (decimal?)-2902.53125, (decimal?)-84.9375, (decimal?)24197.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24111, Nebula.NebulaType.Planetary, "Phroi Flyuae NM-W e1-9102", 2, true, "Phroi Flyuae NM-W e1-9102", (decimal?)-3065.25, (decimal?)-1218.65625, (decimal?)23734, (int)10 )); + AllOfThem.Add(new Nebula( 24219, Nebula.NebulaType.Planetary, "Plipua BW-N e6-1526", 2, true, "Plipua BW-N e6-1526", (decimal?)5311.125, (decimal?)1466.0625, (decimal?)28365.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24220, Nebula.NebulaType.Planetary, "Plipua KX-U e2-280", 2, true, "Plipua KX-U e2-280", (decimal?)5176.59375, (decimal?)1564.3125, (decimal?)27697.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24297, Nebula.NebulaType.Planetary, "Pythaics CR-V e2-37", 2, true, "Pythaics CR-V e2-37", (decimal?)3868.8125, (decimal?)-367, (decimal?)19931.375, (int)10 )); + AllOfThem.Add(new Nebula( 24298, Nebula.NebulaType.Planetary, "Pythaics MI-B e156", 2, true, "Pythaics MI-B e156", (decimal?)3781.21875, (decimal?)-121.96875, (decimal?)19456.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24299, Nebula.NebulaType.Planetary, "Pythaics QZ-O e6-1138", 2, true, "Pythaics QZ-O e6-1138", (decimal?)4233.375, (decimal?)-139.03125, (decimal?)20628.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24300, Nebula.NebulaType.Planetary, "Pythaics VU-X e1-250", 2, true, "Pythaics VU-X e1-250", (decimal?)4049.53125, (decimal?)-68.5625, (decimal?)19820.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24301, Nebula.NebulaType.Planetary, "Pythaics YU-X e1-201", 2, true, "Pythaics YU-X e1-201", (decimal?)4456.6875, (decimal?)-165.46875, (decimal?)19851.125, (int)10 )); + AllOfThem.Add(new Nebula( 24312, Nebula.NebulaType.Planetary, "Rothee YU-Y e0", 2, true, "Rothee YU-Y e0", (decimal?)7752.21875, (decimal?)-2088.09375, (decimal?)29956.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24327, Nebula.NebulaType.Planetary, "Scaulia AG-O e6-7820", 2, true, "Scaulia AG-O e6-7820", (decimal?)4566.25, (decimal?)-687.90625, (decimal?)29559.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24328, Nebula.NebulaType.Planetary, "Scaulia DQ-X e1-5263", 2, true, "Scaulia DQ-X e1-5263", (decimal?)4953.90625, (decimal?)-338.53125, (decimal?)28755.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24329, Nebula.NebulaType.Planetary, "Scaulia KH-V e2-3488", 2, true, "Scaulia KH-V e2-3488", (decimal?)4533.5, (decimal?)-794.03125, (decimal?)28878.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24330, Nebula.NebulaType.Planetary, "Scaulia KN-S e4-1131", 2, true, "Scaulia KN-S e4-1131", (decimal?)4562.75, (decimal?)-68.6875, (decimal?)29220.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24331, Nebula.NebulaType.Planetary, "Scaulia LM-V e2-10060", 2, true, "Scaulia LM-V e2-10060", (decimal?)4910.1875, (decimal?)-565.3125, (decimal?)28969.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24332, Nebula.NebulaType.Planetary, "Scaulia NR-W e1-4502", 2, true, "Scaulia NR-W e1-4502", (decimal?)4952.3125, (decimal?)-1042.375, (decimal?)28760.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24333, Nebula.NebulaType.Planetary, "Scaulia QT-R e4-284", 2, true, "Scaulia QT-R e4-284", (decimal?)4205.59375, (decimal?)-793.375, (decimal?)29246.375, (int)10 )); + AllOfThem.Add(new Nebula( 24334, Nebula.NebulaType.Planetary, "Scaulia RN-T e3-8741", 2, true, "Scaulia RN-T e3-8741", (decimal?)4968.5, (decimal?)-666.5, (decimal?)29056.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24335, Nebula.NebulaType.Planetary, "Scaulia ST-R e4-3081", 2, true, "Scaulia ST-R e4-3081", (decimal?)4553.4375, (decimal?)-747.59375, (decimal?)29283.75, (int)10 )); + AllOfThem.Add(new Nebula( 24336, Nebula.NebulaType.Planetary, "Scaulia TO-Q e5-3809", 2, true, "Scaulia TO-Q e5-3809", (decimal?)4975.875, (decimal?)-218.21875, (decimal?)29347, (int)10 )); + AllOfThem.Add(new Nebula( 24337, Nebula.NebulaType.Planetary, "Scaulia UK-O e6-8584", 2, true, "Scaulia UK-O e6-8584", (decimal?)3836.25, (decimal?)-643.8125, (decimal?)29503.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24338, Nebula.NebulaType.Planetary, "Scaulia ZU-X e1-6656", 2, true, "Scaulia ZU-X e1-6656", (decimal?)4688.15625, (decimal?)-148.78125, (decimal?)28701.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24339, Nebula.NebulaType.Planetary, "Scaulia zu-y e6560", 2, true, "Scaulia ZU-Y e6560", (decimal?)3950.5625, (decimal?)-771.8125, (decimal?)28568.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24413, Nebula.NebulaType.Planetary, "Scheau Flyue ZT-A e687", 2, true, "Scheau Flyue ZT-A e687", (decimal?)2414.75, (decimal?)-1875.21875, (decimal?)21992.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24417, Nebula.NebulaType.Planetary, "Scheau Ploe AQ-X e1-7872", 2, true, "Scheau Ploe AQ-X e1-7872", (decimal?)4532.125, (decimal?)-212.53125, (decimal?)22360.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24418, Nebula.NebulaType.Planetary, "Scheau Ploe CV-Y e3501", 2, true, "Scheau Ploe CV-Y e3501", (decimal?)4479.15625, (decimal?)-667, (decimal?)22248.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24419, Nebula.NebulaType.Planetary, "Scheau Ploe DG-O e6-7779", 2, true, "Scheau Ploe DG-O e6-7779", (decimal?)4918.96875, (decimal?)-694.78125, (decimal?)23119.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24420, Nebula.NebulaType.Planetary, "Scheau Ploe GQ-Y e3239", 2, true, "Scheau Ploe GQ-Y e3239", (decimal?)4819.3125, (decimal?)-887.0625, (decimal?)22244.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24421, Nebula.NebulaType.Planetary, "Scheau Ploe JC-V e2-2480", 2, true, "Scheau Ploe JC-V e2-2480", (decimal?)4002.3125, (decimal?)-975.71875, (decimal?)22524.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24422, Nebula.NebulaType.Planetary, "Scheau Ploe KC-U e3-925", 2, true, "Scheau Ploe KC-U e3-925", (decimal?)4751.15625, (decimal?)-330.71875, (decimal?)22644.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24423, Nebula.NebulaType.Planetary, "Scheau Ploe KD-S e4-611", 2, true, "Scheau Ploe KD-S e4-611", (decimal?)3898.84375, (decimal?)-464.09375, (decimal?)22827.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24424, Nebula.NebulaType.Planetary, "Scheau Ploe LC-V e2-5173", 2, true, "Scheau Ploe LC-V e2-5173", (decimal?)4273.34375, (decimal?)-893.375, (decimal?)22593.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24425, Nebula.NebulaType.Planetary, "Scheau Ploe MC-V e2-7253", 2, true, "Scheau Ploe MC-V e2-7253", (decimal?)4445.84375, (decimal?)-897.96875, (decimal?)22575.875, (int)10 )); + AllOfThem.Add(new Nebula( 24426, Nebula.NebulaType.Planetary, "Scheau Ploe MH-V e2-4682", 2, true, "Scheau Ploe MH-V e2-4682", (decimal?)4837.15625, (decimal?)-760.15625, (decimal?)22556.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24427, Nebula.NebulaType.Planetary, "Scheau Ploe NI-T e3-1941", 2, true, "Scheau Ploe NI-T e3-1941", (decimal?)4031.84375, (decimal?)-930.625, (decimal?)22750.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24428, Nebula.NebulaType.Planetary, "Scheau Ploe PT-R e4-3147", 2, true, "Scheau Ploe PT-R e4-3147", (decimal?)4083.6875, (decimal?)-706.53125, (decimal?)22900.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24429, Nebula.NebulaType.Planetary, "Scheau Ploe RD-S e4-5653", 2, true, "Scheau Ploe RD-S e4-5653", (decimal?)4895.53125, (decimal?)-500.1875, (decimal?)22895.25, (int)10 )); + AllOfThem.Add(new Nebula( 24430, Nebula.NebulaType.Planetary, "Scheau Ploe UU-X e1-8067", 2, true, "Scheau Ploe UU-X e1-8067", (decimal?)3885.8125, (decimal?)-157.0625, (decimal?)22329.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24431, Nebula.NebulaType.Planetary, "Scheau Ploe VU-P e5-2733", 2, true, "Scheau Ploe VU-P e5-2733", (decimal?)4047.1875, (decimal?)-869.46875, (decimal?)23020.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24432, Nebula.NebulaType.Planetary, "Scheau Ploe YA-O e6-6685", 2, true, "Scheau Ploe YA-O e6-6685", (decimal?)3824.25, (decimal?)-929, (decimal?)23158.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24433, Nebula.NebulaType.Planetary, "Scheau Prao AL-O e6-10169", 2, true, "Scheau Prao AL-O e6-10169", (decimal?)2309.6875, (decimal?)-531.25, (decimal?)25747.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24434, Nebula.NebulaType.Planetary, "Scheau Prao AW-V E2-53", 2, true, "Scheau Prao AW-V e2-53", (decimal?)1337.59375, (decimal?)-238.78125, (decimal?)25027.5, (int)10 )); + AllOfThem.Add(new Nebula( 24435, Nebula.NebulaType.Planetary, "Scheau Prao AW-V E2-8891", 2, true, "Scheau Prao AW-V e2-8891", (decimal?)1292.09375, (decimal?)-262.28125, (decimal?)25040.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24436, Nebula.NebulaType.Planetary, "Scheau Prao BP-A e759", 2, true, "Scheau Prao BP-A e759", (decimal?)2340.375, (decimal?)-745.5, (decimal?)24584.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24437, Nebula.NebulaType.Planetary, "Scheau Prao DB-O e6-3671", 2, true, "Scheau Prao DB-O e6-3671", (decimal?)2085.75, (decimal?)-928.65625, (decimal?)25782.875, (int)10 )); + AllOfThem.Add(new Nebula( 24438, Nebula.NebulaType.Planetary, "Scheau Prao EC-U E3-6468", 2, true, "Scheau Prao EC-U e3-6468", (decimal?)1217.5625, (decimal?)-272.03125, (decimal?)25249.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24439, Nebula.NebulaType.Planetary, "Scheau prao fr-v e2-2022", 2, true, "Scheau Prao FR-V e2-2022", (decimal?)1789.40625, (decimal?)-360, (decimal?)25070, (int)10 )); + AllOfThem.Add(new Nebula( 24440, Nebula.NebulaType.Planetary, "Scheau Prao KM-V e2-5150", 2, true, "Scheau Prao KM-V e2-5150", (decimal?)2314, (decimal?)-567.6875, (decimal?)25075.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24441, Nebula.NebulaType.Planetary, "Scheau Prao KW-W E1-6807", 2, true, "Scheau Prao KW-W e1-6807", (decimal?)2309.21875, (decimal?)-911.71875, (decimal?)24980.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24442, Nebula.NebulaType.Planetary, "Scheau Prao MI-B e2252", 2, true, "Scheau Prao MI-B e2252", (decimal?)1244.875, (decimal?)-44.96875, (decimal?)24683.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24443, Nebula.NebulaType.Planetary, "Scheau Prao MI-S e4-5554", 2, true, "Scheau Prao MI-S e4-5554", (decimal?)1928.0625, (decimal?)-338.15625, (decimal?)25420, (int)10 )); + AllOfThem.Add(new Nebula( 24444, Nebula.NebulaType.Planetary, "Scheau Prao NX-U e2-5848", 2, true, "Scheau Prao NX-U e2-5848", (decimal?)1784.125, (decimal?)-1021.9375, (decimal?)25109.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24445, Nebula.NebulaType.Planetary, "Scheau Prao OY-R e4-1443", 2, true, "Scheau Prao OY-R e4-1443", (decimal?)1590.3125, (decimal?)-529.625, (decimal?)25441.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24446, Nebula.NebulaType.Planetary, "Scheau prao vp-o e6-6635", 2, true, "Scheau Prao VP-O e6-6635", (decimal?)1810.46875, (decimal?)-354.96875, (decimal?)25667.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24447, Nebula.NebulaType.Planetary, "Scheau prao vp-o e6-7463", 2, true, "Scheau Prao VP-O e6-7463", (decimal?)1769.90625, (decimal?)-425.625, (decimal?)25693.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24448, Nebula.NebulaType.Planetary, "Scheau prao vt-r e4-2951", 2, true, "Scheau Prao VT-R e4-2951", (decimal?)2470.21875, (decimal?)-724.5, (decimal?)25336.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24450, Nebula.NebulaType.Planetary, "Scheau prao zu-y e4909", 2, true, "Scheau Prao ZU-Y e4909", (decimal?)1423.21875, (decimal?)-738.21875, (decimal?)24803.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24458, Nebula.NebulaType.Planetary, "Scheau Prue LI-S e4-1977", 2, true, "Scheau Prue LI-S e4-1977", (decimal?)1763.6875, (decimal?)-1527.8125, (decimal?)25442.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24459, Nebula.NebulaType.Planetary, "Schee Blao KW-W e1-2083", 2, true, "Schee Blao KW-W e1-2083", (decimal?)6124.03125, (decimal?)-865.65625, (decimal?)32579.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24460, Nebula.NebulaType.Planetary, "Schee Blao NC-V e2-1685", 2, true, "Schee Blao NC-V e2-1685", (decimal?)5968.3125, (decimal?)-931.625, (decimal?)32778.375, (int)10 )); + AllOfThem.Add(new Nebula( 24463, Nebula.NebulaType.Planetary, "Schee Blao UJ-Z e331", 2, true, "Schee Blao UJ-Z e331", (decimal?)5521.6875, (decimal?)-258.90625, (decimal?)32522.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24509, Nebula.NebulaType.Planetary, "Schee Ploe OO-Q e5-4349", 2, true, "Schee Ploe OO-Q e5-4349", (decimal?)5418, (decimal?)-202.4375, (decimal?)22990.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24510, Nebula.NebulaType.Planetary, "Schee Ploe PT-R E4-1584", 2, true, "Schee Ploe PT-R e4-1584", (decimal?)5352.75, (decimal?)-787.6875, (decimal?)22890.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24511, Nebula.NebulaType.Planetary, "Schee Ploe QU-O e6-12", 2, true, "Schee Ploe QU-O e6-12", (decimal?)5178.46875, (decimal?)-318.09375, (decimal?)23118.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24513, Nebula.NebulaType.Planetary, "Schee Ploe SE-Q e5-6631", 2, true, "Schee Ploe SE-Q e5-6631", (decimal?)5391.71875, (decimal?)-618, (decimal?)22962.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24514, Nebula.NebulaType.Planetary, "Schee Ploe TO-Z e6014", 2, true, "Schee Ploe TO-Z e6014", (decimal?)5656.1875, (decimal?)-72.84375, (decimal?)22189.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24516, Nebula.NebulaType.Planetary, "Schee Prau DB-W e2-6603", 2, true, "Schee Prau DB-W e2-6603", (decimal?)5926.28125, (decimal?)-152.71875, (decimal?)25172.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24517, Nebula.NebulaType.Planetary, "Schee Prau DL-X E1-1197", 2, true, "Schee Prau DL-X e1-1197", (decimal?)6014.21875, (decimal?)-351.0625, (decimal?)24979.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24518, Nebula.NebulaType.Planetary, "Schee Prau EL-X E1-8896", 2, true, "Schee Prau EL-X e1-8896", (decimal?)6065.65625, (decimal?)-391.125, (decimal?)24961.5, (int)10 )); + AllOfThem.Add(new Nebula( 24519, Nebula.NebulaType.Planetary, "Schee Prau HR-V E2-486", 2, true, "Schee Prau HR-V e2-486", (decimal?)5999.21875, (decimal?)-396.5625, (decimal?)25168.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24520, Nebula.NebulaType.Planetary, "Schee Prau NY-R e4-5003", 2, true, "Schee Prau NY-R e4-5003", (decimal?)5246.96875, (decimal?)-609.125, (decimal?)25390.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24521, Nebula.NebulaType.Planetary, "Schee Prau PI-S e4-7404", 2, true, "Schee Prau PI-S e4-7404", (decimal?)6262.875, (decimal?)-192.34375, (decimal?)25441.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24522, Nebula.NebulaType.Planetary, "Schee Prau RD-B e4", 2, true, "Schee Prau RD-B e4", (decimal?)5550.4375, (decimal?)-311.5, (decimal?)24567.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24523, Nebula.NebulaType.Planetary, "Schee Prau RI-B e2934", 2, true, "Schee Prau RI-B e2934", (decimal?)5914, (decimal?)-117.71875, (decimal?)24592.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24524, Nebula.NebulaType.Planetary, "Schee Prau UT-A E4629", 2, true, "Schee Prau UT-A e4629", (decimal?)5447.125, (decimal?)-606.21875, (decimal?)24594.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24525, Nebula.NebulaType.Planetary, "Schee Prau VE-Q e5-309", 2, true, "Schee Prau VE-Q e5-309", (decimal?)5953.59375, (decimal?)-586.375, (decimal?)25584.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24526, Nebula.NebulaType.Planetary, "Schee Prau VE-Q e5-9512", 2, true, "Schee Prau VE-Q e5-9512", (decimal?)5895.28125, (decimal?)-575.3125, (decimal?)25614.5, (int)10 )); + AllOfThem.Add(new Nebula( 24527, Nebula.NebulaType.Planetary, "Schee Prau VO-R e4-2086", 2, true, "Schee Prau VO-R e4-2086", (decimal?)6003.96875, (decimal?)-876.375, (decimal?)25339.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24528, Nebula.NebulaType.Planetary, "Schee Prau WZ-P e5-44", 2, true, "Schee Prau WZ-P e5-44", (decimal?)5815.8125, (decimal?)-711.03125, (decimal?)25528.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24529, Nebula.NebulaType.Planetary, "Schee Prau ZA-O e6-4087", 2, true, "Schee Prau ZA-O e6-4087", (decimal?)5347.65625, (decimal?)-859.53125, (decimal?)25699.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24530, Nebula.NebulaType.Planetary, "Schee Prau ZO-A e2995", 2, true, "Schee Prau ZO-A e2995", (decimal?)5876.65625, (decimal?)-799.46875, (decimal?)24665.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24544, Nebula.NebulaType.Planetary, "Schienuia KN-S e4-1775", 2, true, "Schienuia KN-S e4-1775", (decimal?)4522.90625, (decimal?)-1409.78125, (decimal?)21592.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24557, Nebula.NebulaType.Planetary, "Screakao BK-A e885", 2, true, "Screakao BK-A e885", (decimal?)-1684.09375, (decimal?)309.3125, (decimal?)20774.25, (int)10 )); + AllOfThem.Add(new Nebula( 24558, Nebula.NebulaType.Planetary, "Screakao BL-O e6-1687", 2, true, "Screakao BL-O e6-1687", (decimal?)-1371.09375, (decimal?)738.46875, (decimal?)21950.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24559, Nebula.NebulaType.Planetary, "Screakao CA-Z e604", 2, true, "Screakao CA-Z e604", (decimal?)-1511.3125, (decimal?)665.09375, (decimal?)20946.625, (int)10 )); + AllOfThem.Add(new Nebula( 24560, Nebula.NebulaType.Planetary, "Screakao CQ-P e5-6018", 2, true, "Screakao CQ-P e5-6018", (decimal?)-1533.6875, (decimal?)286.34375, (decimal?)21675.625, (int)10 )); + AllOfThem.Add(new Nebula( 24561, Nebula.NebulaType.Planetary, "Screakao IX-T e3-1071", 2, true, "Screakao IX-T e3-1071", (decimal?)-2230.65625, (decimal?)871.3125, (decimal?)21350.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24562, Nebula.NebulaType.Planetary, "Screakao JX-T e3-5686", 2, true, "Screakao JX-T e3-5686", (decimal?)-2077.71875, (decimal?)832.5625, (decimal?)21406.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24563, Nebula.NebulaType.Planetary, "Screakao NO-Q e5-5563", 2, true, "Screakao NO-Q e5-5563", (decimal?)-2414.1875, (decimal?)1084.5625, (decimal?)21724.25, (int)10 )); + AllOfThem.Add(new Nebula( 24564, Nebula.NebulaType.Planetary, "Screakao QT-Q E5-724", 2, true, "Screakao QT-Q e5-724", (decimal?)-1636.375, (decimal?)1168.3125, (decimal?)21712.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24565, Nebula.NebulaType.Planetary, "Screakao TJ-Z e3178", 2, true, "Screakao TJ-Z e3178", (decimal?)-2372.34375, (decimal?)987.9375, (decimal?)20895.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24566, Nebula.NebulaType.Planetary, "Screakao UE-R e4-656", 2, true, "Screakao UE-R e4-656", (decimal?)-2574.1875, (decimal?)10.34375, (decimal?)21619.125, (int)10 )); + AllOfThem.Add(new Nebula( 24567, Nebula.NebulaType.Planetary, "Screakao UJ-R e4-3565", 2, true, "Screakao UJ-R e4-3565", (decimal?)-2224.21875, (decimal?)232.125, (decimal?)21634.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24568, Nebula.NebulaType.Planetary, "Screakao wy-a e7990", 2, true, "Screakao WY-A e7990", (decimal?)-1656.46875, (decimal?)910.1875, (decimal?)20699.5, (int)10 )); + AllOfThem.Add(new Nebula( 24569, Nebula.NebulaType.Planetary, "Screakao ZJ-Z e4322", 2, true, "Screakao ZJ-Z e4322", (decimal?)-1419.3125, (decimal?)1057.0625, (decimal?)20946.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24570, Nebula.NebulaType.Planetary, "Screakao ZK-O e6-165", 2, true, "Screakao ZK-O e6-165", (decimal?)-1709.125, (decimal?)713.03125, (decimal?)21935.875, (int)10 )); + AllOfThem.Add(new Nebula( 24583, Nebula.NebulaType.Planetary, "Screaki BA-Z E6667", 2, true, "Screaki BA-Z e6667", (decimal?)-3089.6875, (decimal?)632.25, (decimal?)20974.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24584, Nebula.NebulaType.Planetary, "Screaki BQ-P e5-3169", 2, true, "Screaki BQ-P e5-3169", (decimal?)-2950.78125, (decimal?)235.8125, (decimal?)21710.375, (int)10 )); + AllOfThem.Add(new Nebula( 24585, Nebula.NebulaType.Planetary, "Screaki DA-A e3959", 2, true, "Screaki DA-A e3959", (decimal?)-3379.625, (decimal?)125.03125, (decimal?)20706.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24586, Nebula.NebulaType.Planetary, "Screaki DA-Z E4953", 2, true, "Screaki DA-Z e4953", (decimal?)-2753.53125, (decimal?)631.25, (decimal?)20894.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24587, Nebula.NebulaType.Planetary, "Screaki DB-O e6-2705", 2, true, "Screaki DB-O e6-2705", (decimal?)-3074.59375, (decimal?)439.78125, (decimal?)21918.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24588, Nebula.NebulaType.Planetary, "Screaki DQ-X E1-4987", 2, true, "Screaki DQ-X e1-4987", (decimal?)-2651.21875, (decimal?)1043.5625, (decimal?)21088.375, (int)10 )); + AllOfThem.Add(new Nebula( 24589, Nebula.NebulaType.Planetary, "Screaki EG-X e1-2919", 2, true, "Screaki EG-X e1-2919", (decimal?)-3228.09375, (decimal?)668.03125, (decimal?)21061.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24590, Nebula.NebulaType.Planetary, "Screaki EG-X e1-3485", 2, true, "Screaki EG-X e1-3485", (decimal?)-3224.25, (decimal?)682.34375, (decimal?)21067.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24591, Nebula.NebulaType.Planetary, "Screaki FC-U e3-9471", 2, true, "Screaki FC-U e3-9471", (decimal?)-3739.46875, (decimal?)943.5, (decimal?)21414.875, (int)10 )); + AllOfThem.Add(new Nebula( 24592, Nebula.NebulaType.Planetary, "Screaki FG-Y e403", 2, true, "Screaki FG-Y e403", (decimal?)-3640.28125, (decimal?)106.4375, (decimal?)20944.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24593, Nebula.NebulaType.Planetary, "Screaki GL-Y e3565", 2, true, "Screaki GL-Y e3565", (decimal?)-3155.53125, (decimal?)287.5625, (decimal?)20883.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24594, Nebula.NebulaType.Planetary, "Screaki MH-V e2-1442", 2, true, "Screaki MH-V e2-1442", (decimal?)-2844.34375, (decimal?)460.71875, (decimal?)21290.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24595, Nebula.NebulaType.Planetary, "Screaki MR-W e1-4895", 2, true, "Screaki MR-W e1-4895", (decimal?)-2919.4375, (decimal?)165.6875, (decimal?)21025.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24596, Nebula.NebulaType.Planetary, "Screaki TJ-R e4-985", 2, true, "Screaki TJ-R e4-985", (decimal?)-3744.53125, (decimal?)217.34375, (decimal?)21637.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24597, Nebula.NebulaType.Planetary, "Screaki UE-Z e2329", 2, true, "Screaki UE-Z e2329", (decimal?)-3838.71875, (decimal?)819.53125, (decimal?)20987.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24598, Nebula.NebulaType.Planetary, "Screaki UE-Z e9809", 2, true, "Screaki UE-Z e9809", (decimal?)-3774.75, (decimal?)914.375, (decimal?)20963.25, (int)10 )); + AllOfThem.Add(new Nebula( 24599, Nebula.NebulaType.Planetary, "Screaki WZ-Y e7706", 2, true, "Screaki WZ-Y e7706", (decimal?)-3857.90625, (decimal?)763.84375, (decimal?)21013.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24630, Nebula.NebulaType.Planetary, "Shrogaae EG-Y E7251", 2, true, "Shrogaae EG-Y e7251", (decimal?)3871.65625, (decimal?)106.84375, (decimal?)20922.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24631, Nebula.NebulaType.Planetary, "Shrogaae JB-X e1-1357", 2, true, "Shrogaae JB-X e1-1357", (decimal?)4996.28125, (decimal?)500.4375, (decimal?)21034.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24632, Nebula.NebulaType.Planetary, "Shrogaae MY-R E4-2842", 2, true, "Shrogaae MY-R E4-2842", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 24633, Nebula.NebulaType.Planetary, "Shrogaae OJ-Q E5-2168", 2, true, "Shrogaae OJ-Q e5-2168", (decimal?)3859.78125, (decimal?)919.4375, (decimal?)21747.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24634, Nebula.NebulaType.Planetary, "Shrogaae SJ-Q e5-1283", 2, true, "Shrogaae SJ-Q e5-1283", (decimal?)4419.375, (decimal?)869.09375, (decimal?)21709.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24635, Nebula.NebulaType.Planetary, "Shrogaae SO-R E4-10138", 2, true, "Shrogaae SO-R e4-10138", (decimal?)4229.34375, (decimal?)354.09375, (decimal?)21507.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24636, Nebula.NebulaType.Planetary, "Shrogaae TI-T e3-303", 2, true, "Shrogaae TI-T e3-303", (decimal?)5034, (decimal?)386.46875, (decimal?)21437.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24637, Nebula.NebulaType.Planetary, "Shrogaae TJ-R E4-6583", 2, true, "Shrogaae TJ-R e4-6583", (decimal?)3989.5, (decimal?)182.875, (decimal?)21610.625, (int)10 )); + AllOfThem.Add(new Nebula( 24638, Nebula.NebulaType.Planetary, "Shrogaae UU-P E5-3810", 2, true, "Shrogaae UU-P e5-3810", (decimal?)3826.9375, (decimal?)372.5625, (decimal?)21674.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24639, Nebula.NebulaType.Planetary, "Shrogaae VE-Z E2442", 2, true, "Shrogaae VE-Z e2442", (decimal?)4052.46875, (decimal?)866.625, (decimal?)20875.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24640, Nebula.NebulaType.Planetary, "Shrogaae XP-X E1-242", 2, true, "Shrogaae XP-X e1-242", (decimal?)4038.9375, (decimal?)1030.34375, (decimal?)21141.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24641, Nebula.NebulaType.Planetary, "Shrogaae XZ-Y E5493", 2, true, "Shrogaae XZ-Y e5493", (decimal?)4076.96875, (decimal?)637.25, (decimal?)20902.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24642, Nebula.NebulaType.Planetary, "Shrogaae YP-O e6-5142", 2, true, "Shrogaae YP-O e6-5142", (decimal?)4799.09375, (decimal?)914.65625, (decimal?)21904.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24643, Nebula.NebulaType.Planetary, "Shrogaae YU-Y e6478", 2, true, "Shrogaae YU-Y e6478", (decimal?)3782.125, (decimal?)486.75, (decimal?)20944.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24644, Nebula.NebulaType.Planetary, "Shrogaae zf-o e6-3304", 2, true, "Shrogaae ZF-O e6-3304", (decimal?)4336.4375, (decimal?)473.40625, (decimal?)21892.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24645, Nebula.NebulaType.Planetary, "Shrogaei BL-X e1-2343", 2, true, "Shrogaei BL-X e1-2343", (decimal?)-811.625, (decimal?)816.21875, (decimal?)21024.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24646, Nebula.NebulaType.Planetary, "Shrogaei DL-P e5-3604", 2, true, "Shrogaei DL-P e5-3604", (decimal?)-411.71875, (decimal?)103.03125, (decimal?)21681.75, (int)10 )); + AllOfThem.Add(new Nebula( 24647, Nebula.NebulaType.Planetary, "Shrogaei EG-Y e3957", 2, true, "Shrogaei EG-Y e3957", (decimal?)-1314.125, (decimal?)60.6875, (decimal?)20976.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24648, Nebula.NebulaType.Planetary, "Shrogaei FH-U e3-1421", 2, true, "Shrogaei FH-U e3-1421", (decimal?)-815.75, (decimal?)1209.75, (decimal?)21491.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24649, Nebula.NebulaType.Planetary, "Shrogaei GH-U e3-1272", 2, true, "Shrogaei GH-U e3-1272", (decimal?)-697.53125, (decimal?)1242.53125, (decimal?)21480.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24650, Nebula.NebulaType.Planetary, "Shrogaei GR-N e6-1956", 2, true, "Shrogaei GR-N e6-1956", (decimal?)-675.96875, (decimal?)14.6875, (decimal?)21899.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24651, Nebula.NebulaType.Planetary, "Shrogaei GR-N e6-5205", 2, true, "Shrogaei GR-N e6-5205", (decimal?)-578.21875, (decimal?)79.125, (decimal?)21837, (int)10 )); + AllOfThem.Add(new Nebula( 24652, Nebula.NebulaType.Planetary, "Shrogaei GX-T e3-3146", 2, true, "Shrogaei GX-T e3-3146", (decimal?)-1305, (decimal?)783.28125, (decimal?)21431.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24653, Nebula.NebulaType.Planetary, "Shrogaei HR-V e2-7758", 2, true, "Shrogaei HR-V e2-7758", (decimal?)-521.96875, (decimal?)781.25, (decimal?)21328.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24654, Nebula.NebulaType.Planetary, "Shrogaei OJ-Q e5-8396", 2, true, "Shrogaei OJ-Q e5-8396", (decimal?)-1256.96875, (decimal?)892.96875, (decimal?)21691.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24655, Nebula.NebulaType.Planetary, "Shrogaei pj-q e5-493", 2, true, "Shrogaei PJ-Q e5-493", (decimal?)-1113.34375, (decimal?)788.15625, (decimal?)21814.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24656, Nebula.NebulaType.Planetary, "Shrogaei QO-Q e5-3431", 2, true, "Shrogaei QO-Q e5-3431", (decimal?)-593.78125, (decimal?)950.375, (decimal?)21728.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24657, Nebula.NebulaType.Planetary, "Shrogaei RY-R E4-6523", 2, true, "Shrogaei RY-R e4-6523", (decimal?)-484.75, (decimal?)762.34375, (decimal?)21573.125, (int)10 )); + AllOfThem.Add(new Nebula( 24658, Nebula.NebulaType.Planetary, "Shrogaei SZ-P e5-570", 2, true, "Shrogaei SZ-P e5-570", (decimal?)-1235.125, (decimal?)566.0625, (decimal?)21707.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24659, Nebula.NebulaType.Planetary, "Shrogaei UY-A e5715", 2, true, "Shrogaei UY-A e5715", (decimal?)-592.375, (decimal?)859.34375, (decimal?)20715.625, (int)10 )); + AllOfThem.Add(new Nebula( 24660, Nebula.NebulaType.Planetary, "Shrogaei VE-Z e3839", 2, true, "Shrogaei VE-Z e3839", (decimal?)-1149.625, (decimal?)825.5, (decimal?)20897.25, (int)10 )); + AllOfThem.Add(new Nebula( 24661, Nebula.NebulaType.Planetary, "Shrogaei VJ-Z e6712", 2, true, "Shrogaei VJ-Z e6712", (decimal?)-802.375, (decimal?)1033.3125, (decimal?)20905.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24662, Nebula.NebulaType.Planetary, "Shrogaei VY-A e111", 2, true, "Shrogaei VY-A e111", (decimal?)-505, (decimal?)890.71875, (decimal?)20764.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24663, Nebula.NebulaType.Planetary, "Shrogaei WJ-A e1973", 2, true, "Shrogaei WJ-A e1973", (decimal?)-1250.15625, (decimal?)412.65625, (decimal?)20755.75, (int)10 )); + AllOfThem.Add(new Nebula( 24664, Nebula.NebulaType.Planetary, "Shrogaei YE-A e2568", 2, true, "Shrogaei YE-A e2568", (decimal?)-1309.34375, (decimal?)279.84375, (decimal?)20789.125, (int)10 )); + AllOfThem.Add(new Nebula( 24665, Nebula.NebulaType.Planetary, "Shrogaei YU-Y e9078", 2, true, "Shrogaei YU-Y e9078", (decimal?)-1244.96875, (decimal?)505.4375, (decimal?)20936.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24666, Nebula.NebulaType.Planetary, "Shrogea AA-Z e8149", 2, true, "Shrogea AA-Z e8149", (decimal?)601.34375, (decimal?)737.75, (decimal?)20978.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24667, Nebula.NebulaType.Planetary, "Shrogea IM-V e2-7369", 2, true, "Shrogea IM-V e2-7369", (decimal?)674.21875, (decimal?)634.96875, (decimal?)21181.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24668, Nebula.NebulaType.Planetary, "Shrogea KG-Y E2454", 2, true, "Shrogea KG-Y e2454", (decimal?)935.46875, (decimal?)-4.8125, (decimal?)20944.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24669, Nebula.NebulaType.Planetary, "Shrogea LG-Y E3436", 2, true, "Shrogea LG-Y e3436", (decimal?)1064.46875, (decimal?)60.1875, (decimal?)21003.875, (int)10 )); + AllOfThem.Add(new Nebula( 24670, Nebula.NebulaType.Planetary, "Shrogea MH-V e2-1763", 2, true, "Shrogea MH-V e2-1763", (decimal?)971.03125, (decimal?)613.21875, (decimal?)21307.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24671, Nebula.NebulaType.Planetary, "Shrogea MX-T e3-3447", 2, true, "Shrogea MX-T e3-3447", (decimal?)941.40625, (decimal?)887.6875, (decimal?)21387.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24672, Nebula.NebulaType.Planetary, "Shrogea QS-U e2-6434", 2, true, "Shrogea QS-U e2-6434", (decimal?)589.5625, (decimal?)37.96875, (decimal?)21303.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24673, Nebula.NebulaType.Planetary, "Shrogea QY-R e4-8459", 2, true, "Shrogea QY-R e4-8459", (decimal?)734.15625, (decimal?)653.53125, (decimal?)21615.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24674, Nebula.NebulaType.Planetary, "Shrogea SS-U e2-768", 2, true, "Shrogea SS-U e2-768", (decimal?)994.09375, (decimal?)22.1875, (decimal?)21307.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24675, Nebula.NebulaType.Planetary, "Shrogea TE-Q e5-44", 2, true, "Shrogea TE-Q e5-44", (decimal?)551.71875, (decimal?)773.1875, (decimal?)21803.125, (int)10 )); + AllOfThem.Add(new Nebula( 24676, Nebula.NebulaType.Planetary, "Shrogea we-q e5-3643", 2, true, "Shrogea WE-Q e5-3643", (decimal?)1051.1875, (decimal?)670.21875, (decimal?)21723.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24677, Nebula.NebulaType.Planetary, "Shrogea XE-Z E1223", 2, true, "Shrogea XE-Z e1223", (decimal?)454.875, (decimal?)787.46875, (decimal?)21004.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24678, Nebula.NebulaType.Planetary, "Shrogea YU-X E1-3329", 2, true, "Shrogea YU-X e1-3329", (decimal?)677.03125, (decimal?)1122.3125, (decimal?)21076.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24684, Nebula.NebulaType.Planetary, "Shrogeau my-r e4-4773", 2, true, "Shrogeau MY-R e4-4773", (decimal?)5169.25, (decimal?)632.96875, (decimal?)21502.25, (int)10 )); + AllOfThem.Add(new Nebula( 24701, Nebula.NebulaType.Planetary, "Speamoea SO-Q e5-741", 2, true, "Speamoea SO-Q e5-741", (decimal?)2317.15625, (decimal?)-1603.84375, (decimal?)20478.375, (int)10 )); + AllOfThem.Add(new Nebula( 24757, Nebula.NebulaType.Planetary, "Squer AB-W e2-5006", 2, true, "Squer AB-W e2-5006", (decimal?)6760.40625, (decimal?)-72.4375, (decimal?)26347.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24758, Nebula.NebulaType.Planetary, "Squer FW-W e1-341", 2, true, "Squer FW-W e1-341", (decimal?)6540.84375, (decimal?)-918.28125, (decimal?)26227.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24759, Nebula.NebulaType.Planetary, "Squer NO-Q e5-4719", 2, true, "Squer NO-Q e5-4719", (decimal?)6616.5625, (decimal?)-214.34375, (decimal?)26843.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24760, Nebula.NebulaType.Planetary, "Squer PZ-O e6-8641", 2, true, "Squer PZ-O e6-8641", (decimal?)6613.09375, (decimal?)-36.25, (decimal?)27043.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24761, Nebula.NebulaType.Planetary, "Squer QY-A e2548", 2, true, "Squer QY-A e2548", (decimal?)6395.6875, (decimal?)-371.875, (decimal?)25867.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24762, Nebula.NebulaType.Planetary, "Squer SY-A e10332", 2, true, "Squer SY-A e10332", (decimal?)6749.25, (decimal?)-389.71875, (decimal?)25911, (int)10 )); + AllOfThem.Add(new Nebula( 24763, Nebula.NebulaType.Planetary, "Squer TO-Z e3073", 2, true, "Squer TO-Z e3073", (decimal?)6852.40625, (decimal?)-82.4375, (decimal?)26088.5, (int)10 )); + AllOfThem.Add(new Nebula( 24764, Nebula.NebulaType.Planetary, "Squer UJ-Q e5-3481", 2, true, "Squer UJ-Q e5-3481", (decimal?)7394.15625, (decimal?)-362.71875, (decimal?)26831.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24765, Nebula.NebulaType.Planetary, "Squer UO-A e7291", 2, true, "Squer UO-A e7291", (decimal?)6452.78125, (decimal?)-754.78125, (decimal?)25911.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24766, Nebula.NebulaType.Planetary, "Squer WK-O e6-807", 2, true, "Squer WK-O e6-807", (decimal?)6680.21875, (decimal?)-562.9375, (decimal?)27016.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24767, Nebula.NebulaType.Planetary, "Squer YP-O e6-250", 2, true, "Squer YP-O e6-250", (decimal?)7311.53125, (decimal?)-471.6875, (decimal?)27071.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24768, Nebula.NebulaType.Planetary, "Squer YP-O e6-4338", 2, true, "Squer YP-O e6-4338", (decimal?)7316.65625, (decimal?)-391.3125, (decimal?)26964.625, (int)10 )); + AllOfThem.Add(new Nebula( 24771, Nebula.NebulaType.Planetary, "Straneou BL-P e5-1628", 2, true, "Straneou BL-P e5-1628", (decimal?)-719.8125, (decimal?)1376.5, (decimal?)19227.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24772, Nebula.NebulaType.Planetary, "Straneou RI-T e3-1149", 2, true, "Straneou RI-T e3-1149", (decimal?)-497.4375, (decimal?)1652.34375, (decimal?)18876.375, (int)10 )); + AllOfThem.Add(new Nebula( 24784, Nebula.NebulaType.Planetary, "Stuemaea CB-W e2-1232", 2, true, "Stuemaea CB-W e2-1232", (decimal?)3231.75, (decimal?)1226.96875, (decimal?)26309.875, (int)10 )); + AllOfThem.Add(new Nebula( 24785, Nebula.NebulaType.Planetary, "Stuemaea CQ-X e1-5652", 2, true, "Stuemaea CQ-X e1-5652", (decimal?)3461.59375, (decimal?)1075.21875, (decimal?)26184.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24786, Nebula.NebulaType.Planetary, "Stuemaea EF-A e1205", 2, true, "Stuemaea EF-A e1205", (decimal?)3564.71875, (decimal?)283.78125, (decimal?)25859.25, (int)10 )); + AllOfThem.Add(new Nebula( 24787, Nebula.NebulaType.Planetary, "Stuemaea HB-X e1-1902", 2, true, "Stuemaea HB-X e1-1902", (decimal?)3357.96875, (decimal?)585.46875, (decimal?)26136.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24788, Nebula.NebulaType.Planetary, "Stuemaea MD-S e4-6683", 2, true, "Stuemaea MD-S e4-6683", (decimal?)2927.71875, (decimal?)889.8125, (decimal?)26760.5, (int)10 )); + AllOfThem.Add(new Nebula( 24789, Nebula.NebulaType.Planetary, "Stuemaea ND-S e4-8233", 2, true, "Stuemaea ND-S e4-8233", (decimal?)3111.40625, (decimal?)925.5, (decimal?)26694.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24790, Nebula.NebulaType.Planetary, "Stuemaea OD-B e4639", 2, true, "Stuemaea OD-B e4639", (decimal?)2600.71875, (decimal?)947.25, (decimal?)25892.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24791, Nebula.NebulaType.Planetary, "Stuemaea VE-R e4-3674", 2, true, "Stuemaea VE-R e4-3674", (decimal?)2699.84375, (decimal?)17.375, (decimal?)26743.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24792, Nebula.NebulaType.Planetary, "Stuemaea VJ-Z e5724", 2, true, "Stuemaea VJ-Z e5724", (decimal?)3033.71875, (decimal?)1022.5625, (decimal?)26080.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24793, Nebula.NebulaType.Planetary, "Stuemaea vo-a e6097", 2, true, "Stuemaea VO-A e6097", (decimal?)2783.0625, (decimal?)540.625, (decimal?)25815.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24794, Nebula.NebulaType.Planetary, "Stuemaea VP-O e6-228", 2, true, "Stuemaea VP-O e6-228", (decimal?)3083.59375, (decimal?)930.46875, (decimal?)27066.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24795, Nebula.NebulaType.Planetary, "Stuemaea WJ-R e4-939", 2, true, "Stuemaea WJ-R e4-939", (decimal?)3285.75, (decimal?)224.96875, (decimal?)26701.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24796, Nebula.NebulaType.Planetary, "Stuemaea WJ-Z e4167", 2, true, "Stuemaea WJ-Z e4167", (decimal?)3185.375, (decimal?)1015.375, (decimal?)26105.5, (int)10 )); + AllOfThem.Add(new Nebula( 24797, Nebula.NebulaType.Planetary, "Stuemaea XE-Z e6183", 2, true, "Stuemaea XE-Z e6183", (decimal?)3078.65625, (decimal?)862.75, (decimal?)26036.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24798, Nebula.NebulaType.Planetary, "Stuemaea ZP-P e5-3475", 2, true, "Stuemaea ZP-P e5-3475", (decimal?)3078.59375, (decimal?)200.53125, (decimal?)26890.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24842, Nebula.NebulaType.Planetary, "Stuemeou DB-X e1-748", 2, true, "Stuemeou DB-X e1-748", (decimal?)6535.96875, (decimal?)541.71875, (decimal?)26216.5, (int)10 )); + AllOfThem.Add(new Nebula( 24843, Nebula.NebulaType.Planetary, "Stuemeou GR-W e1-7873", 2, true, "Stuemeou GR-W e1-7873", (decimal?)6403.15625, (decimal?)289.9375, (decimal?)26213.75, (int)10 )); + AllOfThem.Add(new Nebula( 24847, Nebula.NebulaType.Planetary, "Stuemeou NS-U e2-8074", 2, true, "Stuemeou NS-U e2-8074", (decimal?)6602.875, (decimal?)116.6875, (decimal?)26313.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24848, Nebula.NebulaType.Planetary, "Stuemeou QI-T e3-8292", 2, true, "Stuemeou QI-T e3-8292", (decimal?)7044.28125, (decimal?)312.6875, (decimal?)26520.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24849, Nebula.NebulaType.Planetary, "Stuemeou QY-S e3-1676", 2, true, "Stuemeou QY-S e3-1676", (decimal?)6488.1875, (decimal?)104.15625, (decimal?)26605.875, (int)10 )); + AllOfThem.Add(new Nebula( 24850, Nebula.NebulaType.Planetary, "Stuemeou re-q e5-4886", 2, true, "Stuemeou RE-Q e5-4886", (decimal?)6506.59375, (decimal?)626.34375, (decimal?)26845.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24851, Nebula.NebulaType.Planetary, "Stuemeou VJ-R e4-2578", 2, true, "Stuemeou VJ-R e4-2578", (decimal?)6952.375, (decimal?)182, (decimal?)26646.25, (int)10 )); + AllOfThem.Add(new Nebula( 24863, Nebula.NebulaType.Planetary, "Stuemie BG-O e6-2166", 2, true, "Stuemie BG-O e6-2166", (decimal?)5985.75, (decimal?)570.25, (decimal?)26959.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24864, Nebula.NebulaType.Planetary, "Stuemie IX-T e3-7517", 2, true, "Stuemie IX-T e3-7517", (decimal?)5516.15625, (decimal?)829.28125, (decimal?)26563.875, (int)10 )); + AllOfThem.Add(new Nebula( 24865, Nebula.NebulaType.Planetary, "Stuemie MY-R e4-8657", 2, true, "Stuemie MY-R e4-8657", (decimal?)5109.34375, (decimal?)768.28125, (decimal?)26773.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24866, Nebula.NebulaType.Planetary, "Stuemie NH-V e2-6522", 2, true, "Stuemie NH-V e2-6522", (decimal?)6213.625, (decimal?)497.09375, (decimal?)26325.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24867, Nebula.NebulaType.Planetary, "Stuemie QI-T e3-8051", 2, true, "Stuemie QI-T e3-8051", (decimal?)5735.65625, (decimal?)324.4375, (decimal?)26492.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24868, Nebula.NebulaType.Planetary, "Stuemie QX-U e2-6014", 2, true, "Stuemie QX-U e2-6014", (decimal?)6056.4375, (decimal?)263.09375, (decimal?)26435.75, (int)10 )); + AllOfThem.Add(new Nebula( 24869, Nebula.NebulaType.Planetary, "Stuemie rd-s e4-7667", 2, true, "Stuemie RD-S e4-7667", (decimal?)6248.0625, (decimal?)834.625, (decimal?)26658.5, (int)10 )); + AllOfThem.Add(new Nebula( 24870, Nebula.NebulaType.Planetary, "Stuemie ro-r e4-1045", 2, true, "Stuemie RO-R e4-1045", (decimal?)5330.4375, (decimal?)346.03125, (decimal?)26696.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24871, Nebula.NebulaType.Planetary, "Stuemie sy-s e3-660", 2, true, "Stuemie SY-S e3-660", (decimal?)5396.8125, (decimal?)97.34375, (decimal?)26479.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24872, Nebula.NebulaType.Planetary, "Stuemie UK-O e6-1158", 2, true, "Stuemie UK-O e6-1158", (decimal?)5156.09375, (decimal?)712.0625, (decimal?)27071.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24873, Nebula.NebulaType.Planetary, "Stuemie UK-O e6-487", 2, true, "Stuemie UK-O e6-487", (decimal?)5125.9375, (decimal?)742.03125, (decimal?)27075.25, (int)10 )); + AllOfThem.Add(new Nebula( 24874, Nebula.NebulaType.Planetary, "Stuemie VE-Q e5-5995", 2, true, "Stuemie VE-Q e5-5995", (decimal?)5982.1875, (decimal?)771.6875, (decimal?)26828.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24875, Nebula.NebulaType.Planetary, "Stuemie WJ-Z e2647", 2, true, "Stuemie WJ-Z e2647", (decimal?)5699.53125, (decimal?)984.46875, (decimal?)26014.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24876, Nebula.NebulaType.Planetary, "Stuemie ya-o e6-3542", 2, true, "Stuemie YA-O e6-3542", (decimal?)5167.8125, (decimal?)367.875, (decimal?)27025.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24877, Nebula.NebulaType.Planetary, "Stuemie ZT-A e8855", 2, true, "Stuemie ZT-A e8855", (decimal?)6241.1875, (decimal?)715.1875, (decimal?)25896.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24921, Nebula.NebulaType.Planetary, "Systimbea BG-X e1-10491", 2, true, "Systimbea BG-X e1-10491", (decimal?)6530.1875, (decimal?)-622.8125, (decimal?)27525.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24922, Nebula.NebulaType.Planetary, "Systimbea BQ-X e1-2512", 2, true, "Systimbea BQ-X e1-2512", (decimal?)7209.5, (decimal?)-270.5625, (decimal?)27554.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24923, Nebula.NebulaType.Planetary, "Systimbea BQ-X e1-276", 2, true, "Systimbea BQ-X e1-276", (decimal?)7204.875, (decimal?)-205.53125, (decimal?)27566.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24924, Nebula.NebulaType.Planetary, "Systimbea CB-X e1-167", 2, true, "Systimbea CB-X e1-167", (decimal?)6462.1875, (decimal?)-804.28125, (decimal?)27518.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24925, Nebula.NebulaType.Planetary, "Systimbea FW-V e2-9025", 2, true, "Systimbea FW-V e2-9025", (decimal?)7218.6875, (decimal?)-201.3125, (decimal?)27700.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24926, Nebula.NebulaType.Planetary, "Systimbea HM-V e2-6197", 2, true, "Systimbea HM-V e2-6197", (decimal?)6957.5, (decimal?)-525.4375, (decimal?)27707, (int)10 )); + AllOfThem.Add(new Nebula( 24927, Nebula.NebulaType.Planetary, "Systimbea HM-V e2-6852", 2, true, "Systimbea HM-V e2-6852", (decimal?)6862.75, (decimal?)-584.25, (decimal?)27593.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24928, Nebula.NebulaType.Planetary, "Systimbea HM-V e2-7552", 2, true, "Systimbea HM-V e2-7552", (decimal?)6922.3125, (decimal?)-560.4375, (decimal?)27704.75, (int)10 )); + AllOfThem.Add(new Nebula( 24929, Nebula.NebulaType.Planetary, "Systimbea JH-U e3-2778", 2, true, "Systimbea JH-U e3-2778", (decimal?)7473.34375, (decimal?)-101.3125, (decimal?)27764.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24930, Nebula.NebulaType.Planetary, "Systimbea JX-T e3-8781", 2, true, "Systimbea JX-T e3-8781", (decimal?)6914.1875, (decimal?)-480.34375, (decimal?)27751.5, (int)10 )); + AllOfThem.Add(new Nebula( 24931, Nebula.NebulaType.Planetary, "Systimbea MO-Q e5-1059", 2, true, "Systimbea MO-Q e5-1059", (decimal?)6337.09375, (decimal?)-333.78125, (decimal?)28076.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24932, Nebula.NebulaType.Planetary, "Systimbea MO-Q e5-3850", 2, true, "Systimbea MO-Q e5-3850", (decimal?)6386.4375, (decimal?)-289.28125, (decimal?)28173.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24933, Nebula.NebulaType.Planetary, "Systimbea OD-B e2427", 2, true, "Systimbea OD-B e2427", (decimal?)6432.4375, (decimal?)-190.40625, (decimal?)27097.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24934, Nebula.NebulaType.Planetary, "Systimbea OS-T e3-5701", 2, true, "Systimbea OS-T e3-5701", (decimal?)7310.03125, (decimal?)-647.25, (decimal?)27885.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24935, Nebula.NebulaType.Planetary, "Systimbea OT-Q e5-9869", 2, true, "Systimbea OT-Q e5-9869", (decimal?)6982.125, (decimal?)-100.71875, (decimal?)28084.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24936, Nebula.NebulaType.Planetary, "Systimbea RO-R e4-7058", 2, true, "Systimbea RO-R e4-7058", (decimal?)6601.34375, (decimal?)-848.21875, (decimal?)27957.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24937, Nebula.NebulaType.Planetary, "Systimbea TU-O e6-9689", 2, true, "Systimbea TU-O e6-9689", (decimal?)6860.46875, (decimal?)-247.15625, (decimal?)28314.375, (int)10 )); + AllOfThem.Add(new Nebula( 24938, Nebula.NebulaType.Planetary, "Systimbea UJ-Q e5-3659", 2, true, "Systimbea UJ-Q e5-3659", (decimal?)7418.71875, (decimal?)-394.6875, (decimal?)28078.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24939, Nebula.NebulaType.Planetary, "Systimbea UJ-Z e841", 2, true, "Systimbea UJ-Z e841", (decimal?)6730.5, (decimal?)-252.0625, (decimal?)27269.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24940, Nebula.NebulaType.Planetary, "Systimbea YK-X e1-272", 2, true, "Systimbea YK-X e1-272", (decimal?)6395.3125, (decimal?)-496.1875, (decimal?)27498.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24941, Nebula.NebulaType.Planetary, "Systimbie CK-A e8479", 2, true, "Systimbie CK-A e8479", (decimal?)3497.5625, (decimal?)-868.25, (decimal?)27117.375, (int)10 )); + AllOfThem.Add(new Nebula( 24942, Nebula.NebulaType.Planetary, "Systimbie CV-Y e6114", 2, true, "Systimbie CV-Y e6114", (decimal?)3222.84375, (decimal?)-725.875, (decimal?)27325.375, (int)10 )); + AllOfThem.Add(new Nebula( 24943, Nebula.NebulaType.Planetary, "Systimbie DA-Z e12279", 2, true, "Systimbie DA-Z e12279", (decimal?)3667.125, (decimal?)-548.46875, (decimal?)27393.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24944, Nebula.NebulaType.Planetary, "Systimbie DA-Z e9962", 2, true, "Systimbie DA-Z e9962", (decimal?)3700.46875, (decimal?)-536.625, (decimal?)27340.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24946, Nebula.NebulaType.Planetary, "Systimbie qx-u e2-3060", 2, true, "Systimbie QX-U e2-3060", (decimal?)3557.78125, (decimal?)-1106.46875, (decimal?)27703.125, (int)10 )); + AllOfThem.Add(new Nebula( 24948, Nebula.NebulaType.Planetary, "Systimbie TI-T e3-142", 2, true, "Systimbie TI-T e3-142", (decimal?)3773.21875, (decimal?)-863.75, (decimal?)27807.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24972, Nebula.NebulaType.Planetary, "Systimbuia BG-X e1-226", 2, true, "Systimbuia BG-X e1-226", (decimal?)7844.96875, (decimal?)-651.09375, (decimal?)27450.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24973, Nebula.NebulaType.Planetary, "Systimbuia HW-W e1-916", 2, true, "Systimbuia HW-W e1-916", (decimal?)8228.6875, (decimal?)-933.71875, (decimal?)27556.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24974, Nebula.NebulaType.Planetary, "Systimbuia SI-B e149", 2, true, "Systimbuia SI-B e149", (decimal?)8615.59375, (decimal?)-94.46875, (decimal?)27104.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24975, Nebula.NebulaType.Planetary, "Systimbuia VU-X e1-5495", 2, true, "Systimbuia VU-X e1-5495", (decimal?)7858.8125, (decimal?)-157.1875, (decimal?)27518.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24976, Nebula.NebulaType.Planetary, "Tepo WO-Z e3113", 2, true, "Tepo WO-Z e3113", (decimal?)-2929.96875, (decimal?)-1464.75, (decimal?)23502.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25005, Nebula.NebulaType.Planetary, "Theemae HQ-Y e965", 2, true, "Theemae HQ-Y e965", (decimal?)-2675, (decimal?)1609.875, (decimal?)23538.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25006, Nebula.NebulaType.Planetary, "Theemae mc-v e2-1104", 2, true, "Theemae MC-V e2-1104", (decimal?)-3220.96875, (decimal?)1684.9375, (decimal?)23887.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25007, Nebula.NebulaType.Planetary, "Theemae mc-v e2-2851", 2, true, "Theemae MC-V e2-2851", (decimal?)-3253.0625, (decimal?)1638.5625, (decimal?)23856.125, (int)10 )); + AllOfThem.Add(new Nebula( 25057, Nebula.NebulaType.Planetary, "Umbaists CB-W e2-2629", 2, true, "Umbaists CB-W e2-2629", (decimal?)5734.9375, (decimal?)-141.15625, (decimal?)30236.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25058, Nebula.NebulaType.Planetary, "Umbaists DQ-X e1-9129", 2, true, "Umbaists DQ-X e1-9129", (decimal?)6225.625, (decimal?)-200.96875, (decimal?)29976.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25059, Nebula.NebulaType.Planetary, "Umbaists JM-V e2-3482", 2, true, "Umbaists JM-V e2-3482", (decimal?)5938.9375, (decimal?)-642.34375, (decimal?)30195.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25060, Nebula.NebulaType.Planetary, "Umbaists KI-S e4-3566", 2, true, "Umbaists KI-S e4-3566", (decimal?)5477.28125, (decimal?)-279.4375, (decimal?)30470.75, (int)10 )); + AllOfThem.Add(new Nebula( 25061, Nebula.NebulaType.Planetary, "Umbaists MI-B e1062", 2, true, "Umbaists MI-B e1062", (decimal?)5086.46875, (decimal?)-105.96875, (decimal?)29776.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25062, Nebula.NebulaType.Planetary, "Umbaists UD-B e7069", 2, true, "Umbaists UD-B e7069", (decimal?)6071.4375, (decimal?)-331.46875, (decimal?)29719.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25063, Nebula.NebulaType.Planetary, "Umbaists WY-A e7528", 2, true, "Umbaists WY-A e7528", (decimal?)6137.34375, (decimal?)-406.1875, (decimal?)29721.125, (int)10 )); + AllOfThem.Add(new Nebula( 25064, Nebula.NebulaType.Planetary, "Umbaists WZ-P e5-4593", 2, true, "Umbaists WZ-P e5-4593", (decimal?)5849.78125, (decimal?)-689.28125, (decimal?)30649.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25065, Nebula.NebulaType.Planetary, "Umbaists WZ-P e5-5754", 2, true, "Umbaists WZ-P e5-5754", (decimal?)5833.15625, (decimal?)-771.8125, (decimal?)30724.125, (int)10 )); + AllOfThem.Add(new Nebula( 25066, Nebula.NebulaType.Planetary, "Umbaists XJ-A e6237", 2, true, "Umbaists XJ-A e6237", (decimal?)5231.59375, (decimal?)-832.40625, (decimal?)29802.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25067, Nebula.NebulaType.Planetary, "Umbaists XY-A e1254", 2, true, "Umbaists XY-A e1254", (decimal?)6227.59375, (decimal?)-374.21875, (decimal?)29665.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25068, Nebula.NebulaType.Planetary, "Umbaists YO-A e4542", 2, true, "Umbaists YO-A e4542", (decimal?)5724.625, (decimal?)-716.15625, (decimal?)29692.75, (int)10 )); + AllOfThem.Add(new Nebula( 25069, Nebula.NebulaType.Planetary, "Umbaists YT-A e9036", 2, true, "Umbaists YT-A e9036", (decimal?)6167.96875, (decimal?)-511, (decimal?)29693.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25129, Nebula.NebulaType.Planetary, "Wepai AV-P e5-2676", 2, true, "Wepai AV-P e5-2676", (decimal?)934.875, (decimal?)-886.625, (decimal?)24245.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25131, Nebula.NebulaType.Planetary, "Wepai DB-O e6-3130", 2, true, "Wepai DB-O e6-3130", (decimal?)829.5625, (decimal?)-945.5625, (decimal?)24500.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25132, Nebula.NebulaType.Planetary, "Wepai DF-A e1456", 2, true, "Wepai DF-A e1456", (decimal?)813.25, (decimal?)-1083.3125, (decimal?)23341.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25133, Nebula.NebulaType.Planetary, "Wepai HR-N e6-3846", 2, true, "Wepai HR-N e6-3846", (decimal?)858.65625, (decimal?)-1255.15625, (decimal?)24461.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25134, Nebula.NebulaType.Planetary, "Wepai mh-v e2-1221", 2, true, "Wepai MH-V e2-1221", (decimal?)897.5625, (decimal?)-735.875, (decimal?)23801.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25135, Nebula.NebulaType.Planetary, "Wepai ut-r e4-6582", 2, true, "Wepai UT-R e4-6582", (decimal?)912.15625, (decimal?)-724.21875, (decimal?)24157.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25138, Nebula.NebulaType.Planetary, "Wepe AK-A e5646", 2, true, "Wepe AK-A e5646", (decimal?)1962.9375, (decimal?)-833.59375, (decimal?)23363.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25139, Nebula.NebulaType.Planetary, "Wepe DB-X e1-6589", 2, true, "Wepe DB-X e1-6589", (decimal?)1518.71875, (decimal?)-777.28125, (decimal?)23685.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25140, Nebula.NebulaType.Planetary, "Wepe HG-X e1-6312", 2, true, "Wepe HG-X e1-6312", (decimal?)2383.3125, (decimal?)-577.28125, (decimal?)23722.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25141, Nebula.NebulaType.Planetary, "Wepe RD-S e4-7188", 2, true, "Wepe RD-S e4-7188", (decimal?)2447.15625, (decimal?)-465.53125, (decimal?)24104.375, (int)10 )); + AllOfThem.Add(new Nebula( 25142, Nebula.NebulaType.Planetary, "Wepe YU-Y e8462", 2, true, "Wepe YU-Y e8462", (decimal?)1262.65625, (decimal?)-670.09375, (decimal?)23564.125, (int)10 )); + AllOfThem.Add(new Nebula( 25143, Nebula.NebulaType.Planetary, "Wepe zf-o e6-7147", 2, true, "Wepe ZF-O e6-7147", (decimal?)1777.59375, (decimal?)-779.03125, (decimal?)24392.5, (int)10 )); + AllOfThem.Add(new Nebula( 25144, Nebula.NebulaType.Planetary, "Wepe ZJ-A e2439", 2, true, "Wepe ZJ-A e2439", (decimal?)1748.375, (decimal?)-906.25, (decimal?)23393.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25148, Nebula.NebulaType.Planetary, "Wepiae AA-Z e9245", 2, true, "Wepiae AA-Z e9245", (decimal?)3244.28125, (decimal?)-645.5, (decimal?)23536.875, (int)10 )); + AllOfThem.Add(new Nebula( 25149, Nebula.NebulaType.Planetary, "Wepiae AG-O e6-5822", 2, true, "Wepiae AG-O e6-5822", (decimal?)3159.71875, (decimal?)-712.28125, (decimal?)24380.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25150, Nebula.NebulaType.Planetary, "Wepiae BQ-Y e6613", 2, true, "Wepiae BQ-Y e6613", (decimal?)2667.375, (decimal?)-917.125, (decimal?)23442.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25151, Nebula.NebulaType.Planetary, "Wepiae HQ-Y e6240", 2, true, "Wepiae HQ-Y e6240", (decimal?)3728.5, (decimal?)-851.21875, (decimal?)23476.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25152, Nebula.NebulaType.Planetary, "Wepiae JH-V e2-4192", 2, true, "Wepiae JH-V e2-4192", (decimal?)3023.90625, (decimal?)-709.40625, (decimal?)23873.125, (int)10 )); + AllOfThem.Add(new Nebula( 25153, Nebula.NebulaType.Planetary, "Wepiae PS-U e2-798", 2, true, "Wepiae PS-U e2-798", (decimal?)3063.625, (decimal?)-1299.6875, (decimal?)23884.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25154, Nebula.NebulaType.Planetary, "Wepiae SE-Q e5-347", 2, true, "Wepiae SE-Q e5-347", (decimal?)2929.4375, (decimal?)-594.46875, (decimal?)24221.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25155, Nebula.NebulaType.Planetary, "Wepiae ZO-A e6223", 2, true, "Wepiae ZO-A e6223", (decimal?)3329.59375, (decimal?)-713.28125, (decimal?)23412.71875, (int)10 )); + AllOfThem.Add(new Nebula( 25157, Nebula.NebulaType.Planetary, "Wepoae AF-Z e378", 2, true, "Wepoae AF-Z e378", (decimal?)4773, (decimal?)-445.5625, (decimal?)23431.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25158, Nebula.NebulaType.Planetary, "Wepoae AK-A e2829", 2, true, "Wepoae AK-A e2829", (decimal?)4468.84375, (decimal?)-894.84375, (decimal?)23282.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25159, Nebula.NebulaType.Planetary, "Wepoae BF-Z e5979", 2, true, "Wepoae BF-Z e5979", (decimal?)5023.25, (decimal?)-384.6875, (decimal?)23494, (int)10 )); + AllOfThem.Add(new Nebula( 25160, Nebula.NebulaType.Planetary, "Wepoae BL-O e6-2168", 2, true, "Wepoae BL-O e6-2168", (decimal?)4993.90625, (decimal?)-593.5625, (decimal?)24411.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25161, Nebula.NebulaType.Planetary, "Wepoae EV-Y e2725", 2, true, "Wepoae EV-Y e2725", (decimal?)4775.71875, (decimal?)-722.3125, (decimal?)23562.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25162, Nebula.NebulaType.Planetary, "Wepoae FQ-Y e5656", 2, true, "Wepoae FQ-Y e5656", (decimal?)4686.21875, (decimal?)-913.8125, (decimal?)23441.375, (int)10 )); + AllOfThem.Add(new Nebula( 25163, Nebula.NebulaType.Planetary, "Wepoae HB-X e1-3686", 2, true, "Wepoae HB-X e1-3686", (decimal?)4704.46875, (decimal?)-805.625, (decimal?)23614.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25164, Nebula.NebulaType.Planetary, "Wepoae HH-V e2-6844", 2, true, "Wepoae HH-V e2-6844", (decimal?)4003.59375, (decimal?)-667.65625, (decimal?)23767.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25165, Nebula.NebulaType.Planetary, "Wepoae NN-T e3-7390", 2, true, "Wepoae NN-T e3-7390", (decimal?)4354.90625, (decimal?)-767.40625, (decimal?)23957.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25166, Nebula.NebulaType.Planetary, "Wepoae RD-T e3-1689", 2, true, "Wepoae RD-T e3-1689", (decimal?)4352.90625, (decimal?)-1011.09375, (decimal?)23896.875, (int)10 )); + AllOfThem.Add(new Nebula( 25167, Nebula.NebulaType.Planetary, "Wepoae rn-t e3-8932", 2, true, "Wepoae RN-T e3-8932", (decimal?)4936.46875, (decimal?)-707.84375, (decimal?)23924.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25168, Nebula.NebulaType.Planetary, "Wepoae SI-B e10764", 2, true, "Wepoae SI-B e10764", (decimal?)4772.0625, (decimal?)-94.46875, (decimal?)23307.5, (int)10 )); + AllOfThem.Add(new Nebula( 25169, Nebula.NebulaType.Planetary, "Wepoae SZ-P e5-7333", 2, true, "Wepoae SZ-P e5-7333", (decimal?)3847.5, (decimal?)-779.34375, (decimal?)24373.84375, (int)10 )); + AllOfThem.Add(new Nebula( 25170, Nebula.NebulaType.Planetary, "Wepoae TE-Q e5-1719", 2, true, "Wepoae TE-Q e5-1719", (decimal?)4278.65625, (decimal?)-598.15625, (decimal?)24305.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25171, Nebula.NebulaType.Planetary, "Wepoae TO-R e4-2557", 2, true, "Wepoae TO-R e4-2557", (decimal?)4328.3125, (decimal?)-953.375, (decimal?)24088.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25172, Nebula.NebulaType.Planetary, "Wepoae TY-S e3-171", 2, true, "Wepoae TY-S e3-171", (decimal?)4280.4375, (decimal?)-1187.125, (decimal?)24048, (int)10 )); + AllOfThem.Add(new Nebula( 25173, Nebula.NebulaType.Planetary, "Wepoae TY-S e3-2909", 2, true, "Wepoae TY-S e3-2909", (decimal?)4325.6875, (decimal?)-1215.84375, (decimal?)24010.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25174, Nebula.NebulaType.Planetary, "Wepoae VD-B e769", 2, true, "Wepoae VD-B e769", (decimal?)4895.21875, (decimal?)-239.15625, (decimal?)23321.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25175, Nebula.NebulaType.Planetary, "Wepoae wo-r e4-4307", 2, true, "Wepoae WO-R e4-4307", (decimal?)4883.3125, (decimal?)-934.8125, (decimal?)24208.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25176, Nebula.NebulaType.Planetary, "Wepoae xo-a e1551", 2, true, "Wepoae XO-A e1551", (decimal?)4317.875, (decimal?)-666.53125, (decimal?)23342.75, (int)10 )); + AllOfThem.Add(new Nebula( 25177, Nebula.NebulaType.Planetary, "Wepoae XT-A e4315", 2, true, "Wepoae XT-A e4315", (decimal?)4665.21875, (decimal?)-652.5625, (decimal?)23361.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25178, Nebula.NebulaType.Planetary, "Wepoae YU-P e5-6260", 2, true, "Wepoae YU-P e5-6260", (decimal?)4528.625, (decimal?)-826.875, (decimal?)24370.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25179, Nebula.NebulaType.Planetary, "Wepoae ZZ-P e5-2504", 2, true, "Wepoae ZZ-P e5-2504", (decimal?)4921.125, (decimal?)-820.5, (decimal?)24240.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25197, Nebula.NebulaType.Planetary, "Wepue AA-Z e1744", 2, true, "Wepue AA-Z e1744", (decimal?)-638.75, (decimal?)-609.78125, (decimal?)23510.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25198, Nebula.NebulaType.Planetary, "Wepue AA-Z e4448", 2, true, "Wepue AA-Z e4448", (decimal?)-651.0625, (decimal?)-557.40625, (decimal?)23480.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25199, Nebula.NebulaType.Planetary, "Wepue EC-U e3-7848", 2, true, "Wepue EC-U e3-7848", (decimal?)-1214.125, (decimal?)-215.46875, (decimal?)23900.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25202, Nebula.NebulaType.Planetary, "Wepue VT-A e1009", 2, true, "Wepue VT-A e1009", (decimal?)-727.09375, (decimal?)-510.90625, (decimal?)23412.25, (int)10 )); + AllOfThem.Add(new Nebula( 25203, Nebula.NebulaType.Planetary, "Wepue ZA-W e2-1075", 2, true, "Wepue ZA-W e2-1075", (decimal?)-1025.34375, (decimal?)-46.1875, (decimal?)23746.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25205, Nebula.NebulaType.Planetary, "Whambeia dr-v e2-315", 2, true, "Whambeia DR-V e2-315", (decimal?)1501.65625, (decimal?)838.875, (decimal?)18769.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25208, Nebula.NebulaType.Planetary, "Whambeia KN-S e4-27", 2, true, "Whambeia KN-S e4-27", (decimal?)1976.90625, (decimal?)1140.09375, (decimal?)18976.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25210, Nebula.NebulaType.Planetary, "Whambeia up-o e6-6521", 2, true, "Whambeia UP-O e6-6521", (decimal?)1541.59375, (decimal?)790.9375, (decimal?)19358.125, (int)10 )); + AllOfThem.Add(new Nebula( 25236, Nebula.NebulaType.Planetary, "Whamboi AL-O e6-7053", 2, true, "Whamboi AL-O e6-7053", (decimal?)-1511.875, (decimal?)718.59375, (decimal?)19303.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25237, Nebula.NebulaType.Planetary, "Whamboi AL-P e5-465", 2, true, "Whamboi AL-P e5-465", (decimal?)-2266.3125, (decimal?)12.625, (decimal?)19208.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25287, Nebula.NebulaType.Planetary, "Zunao CL-X e1-2072", 2, true, "Zunao CL-X e1-2072", (decimal?)1962.125, (decimal?)835.125, (decimal?)23688.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25288, Nebula.NebulaType.Planetary, "Zunao HG-X e1-9589", 2, true, "Zunao HG-X e1-9589", (decimal?)2389.34375, (decimal?)738.96875, (decimal?)23623.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25289, Nebula.NebulaType.Planetary, "Zunao PI-B e3998", 2, true, "Zunao PI-B e3998", (decimal?)1790.53125, (decimal?)1162.96875, (decimal?)23356.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25290, Nebula.NebulaType.Planetary, "Zunao TD-T e3-190", 2, true, "Zunao TD-T e3-190", (decimal?)2105.625, (decimal?)196.15625, (decimal?)24037.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25291, Nebula.NebulaType.Planetary, "Zunao TO-Q e5-3271", 2, true, "Zunao TO-Q e5-3271", (decimal?)2388.25, (decimal?)1049.03125, (decimal?)24318.5, (int)10 )); + AllOfThem.Add(new Nebula( 25292, Nebula.NebulaType.Planetary, "Zunao TP-O e6-1448", 2, true, "Zunao TP-O e6-1448", (decimal?)1422.65625, (decimal?)811.125, (decimal?)24475.375, (int)10 )); + AllOfThem.Add(new Nebula( 25293, Nebula.NebulaType.Planetary, "Zunao WU-O e6-3937", 2, true, "Zunao WU-O e6-3937", (decimal?)2296.59375, (decimal?)1031.75, (decimal?)24455.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25294, Nebula.NebulaType.Planetary, "Zunao WU-P e5-1018", 2, true, "Zunao WU-P e5-1018", (decimal?)1542.40625, (decimal?)434.5, (decimal?)24272.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25295, Nebula.NebulaType.Planetary, "Zunao XP-P e5-4125", 2, true, "Zunao XP-P e5-4125", (decimal?)1448.90625, (decimal?)272.96875, (decimal?)24322, (int)10 )); + AllOfThem.Add(new Nebula( 25296, Nebula.NebulaType.Planetary, "Zunao yk-p e5-2520", 2, true, "Zunao YK-P e5-2520", (decimal?)1348.5, (decimal?)-21.96875, (decimal?)24334.75, (int)10 )); + AllOfThem.Add(new Nebula( 25297, Nebula.NebulaType.Planetary, "Zunao yp-o e6-108", 2, true, "Zunao YP-O e6-108", (decimal?)2196.71875, (decimal?)775.5, (decimal?)24525.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25298, Nebula.NebulaType.Planetary, "Zuneae FM-V e2-7199", 2, true, "Zuneae FM-V e2-7199", (decimal?)5264.4375, (decimal?)755.6875, (decimal?)23822.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25300, Nebula.NebulaType.Planetary, "Zuneae JH-V e2-5830", 2, true, "Zuneae JH-V e2-5830", (decimal?)5552.21875, (decimal?)457.5, (decimal?)23739.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25301, Nebula.NebulaType.Planetary, "Zuneae MD-S e4-3747", 2, true, "Zuneae MD-S e4-3747", (decimal?)5476.09375, (decimal?)933.03125, (decimal?)24118.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25302, Nebula.NebulaType.Planetary, "Zuneae RI-T e3-6317", 2, true, "Zuneae RI-T e3-6317", (decimal?)5958, (decimal?)390.875, (decimal?)24034.84375, (int)10 )); + AllOfThem.Add(new Nebula( 25303, Nebula.NebulaType.Planetary, "Zuneae RY-R e4-1940", 2, true, "Zuneae RY-R e4-1940", (decimal?)5945.1875, (decimal?)657.8125, (decimal?)24082.875, (int)10 )); + AllOfThem.Add(new Nebula( 25304, Nebula.NebulaType.Planetary, "Zuneae VJ-R e4-5324", 2, true, "Zuneae VJ-R e4-5324", (decimal?)5623.28125, (decimal?)265.90625, (decimal?)24204.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25305, Nebula.NebulaType.Planetary, "Zuneae VY-A e2916", 2, true, "Zuneae VY-A e2916", (decimal?)5993.65625, (decimal?)889.5, (decimal?)23401.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25306, Nebula.NebulaType.Planetary, "Zuneae WF-O e6-668", 2, true, "Zuneae WF-O e6-668", (decimal?)5175.9375, (decimal?)565.875, (decimal?)24430.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25307, Nebula.NebulaType.Planetary, "Zuneae XJ-R e4-3144", 2, true, "Zuneae XJ-R e4-3144", (decimal?)5984.34375, (decimal?)275.71875, (decimal?)24173.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25308, Nebula.NebulaType.Planetary, "Zuneae XT-A e462", 2, true, "Zuneae XT-A e462", (decimal?)5919, (decimal?)743.25, (decimal?)23259.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25309, Nebula.NebulaType.Planetary, "Zuneae YJ-R e4-8510", 2, true, "Zuneae YJ-R e4-8510", (decimal?)6018.09375, (decimal?)196.46875, (decimal?)24098.375, (int)10 )); + AllOfThem.Add(new Nebula( 25310, Nebula.NebulaType.Planetary, "Zuneae YJ-Z e460", 2, true, "Zuneae YJ-Z e460", (decimal?)6069.5625, (decimal?)1056.0625, (decimal?)23541.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25311, Nebula.NebulaType.Planetary, "Zuni EF-A e528", 2, true, "Zuni EF-A e528", (decimal?)1004.25, (decimal?)180.40625, (decimal?)23351.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25312, Nebula.NebulaType.Planetary, "Zuni GG-X e1-8261", 2, true, "Zuni GG-X e1-8261", (decimal?)1051.4375, (decimal?)637.21875, (decimal?)23686.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25313, Nebula.NebulaType.Planetary, "Zuni HW-V E2-3842", 2, true, "Zuni HW-V e2-3842", (decimal?)1143.5, (decimal?)1062.9375, (decimal?)23814.75, (int)10 )); + AllOfThem.Add(new Nebula( 25315, Nebula.NebulaType.Planetary, "Zuni KC-U e3-7670", 2, true, "Zuni KC-U e3-7670", (decimal?)945.1875, (decimal?)989.78125, (decimal?)24033.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25317, Nebula.NebulaType.Planetary, "Zuni PS-T e3-5046", 2, true, "Zuni PS-T e3-5046", (decimal?)1087.75, (decimal?)717.875, (decimal?)23944.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25318, Nebula.NebulaType.Planetary, "Zuni VD-B E7677", 2, true, "Zuni VD-B e7677", (decimal?)1125.9375, (decimal?)1050.3125, (decimal?)23277.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25335, Nebula.NebulaType.Planetary, "Zunoae NX-U e2-264", 2, true, "Zunoae NX-U e2-264", (decimal?)-3295.625, (decimal?)161.65625, (decimal?)23832.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25341, Nebula.NebulaType.Planetary, "Zunoae VO-R e4-1401", 2, true, "Zunoae VO-R e4-1401", (decimal?)-2953.90625, (decimal?)352.59375, (decimal?)24084, (int)10 )); + AllOfThem.Add(new Nebula( 25347, Nebula.NebulaType.Planetary, "Zunoae YJ-R e4-7901", 2, true, "Zunoae YJ-R e4-7901", (decimal?)-2804.40625, (decimal?)234.65625, (decimal?)24069.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25352, Nebula.NebulaType.Planetary, "Zunou IL-Y e5851", 2, true, "Zunou IL-Y e5851", (decimal?)-1591.21875, (decimal?)197.21875, (decimal?)23484.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25354, Nebula.NebulaType.Planetary, "Zunou KD-S e4-3526", 2, true, "Zunou KD-S e4-3526", (decimal?)-2524.625, (decimal?)882.5, (decimal?)24174, (int)10 )); + AllOfThem.Add(new Nebula( 25355, Nebula.NebulaType.Planetary, "Zunou NH-V e2-1578", 2, true, "Zunou NH-V e2-1578", (decimal?)-1358.9375, (decimal?)503.09375, (decimal?)23834.125, (int)10 )); + AllOfThem.Add(new Nebula( 25356, Nebula.NebulaType.Planetary, "Zunou NM-W e1-7026", 2, true, "Zunou NM-W e1-7026", (decimal?)-1731.65625, (decimal?)23.21875, (decimal?)23587.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25357, Nebula.NebulaType.Planetary, "Zunou OY-R e4-6885", 2, true, "Zunou OY-R e4-6885", (decimal?)-2200.125, (decimal?)706.15625, (decimal?)24106.25, (int)10 )); + AllOfThem.Add(new Nebula( 25358, Nebula.NebulaType.Planetary, "Zunou XJ-Z e6082", 2, true, "Zunou XJ-Z e6082", (decimal?)-1671.75, (decimal?)1063.65625, (decimal?)23477.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25359, Nebula.NebulaType.Planetary, "Zunou YE-R e4-10417", 2, true, "Zunou YE-R e4-10417", (decimal?)-1886.71875, (decimal?)3.65625, (decimal?)24176.75, (int)10 )); + AllOfThem.Add(new Nebula( 25367, Nebula.NebulaType.Planetary, "Zunuae AA-Z e703", 2, true, "Zunuae AA-Z e703", (decimal?)-640.25, (decimal?)722.28125, (decimal?)23533.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25370, Nebula.NebulaType.Planetary, "Zunuae AQ-X e1-6201", 2, true, "Zunuae AQ-X e1-6201", (decimal?)-660.53125, (decimal?)1040.15625, (decimal?)23719.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25373, Nebula.NebulaType.Planetary, "Zunuae CW-V e2-8731", 2, true, "Zunuae CW-V e2-8731", (decimal?)-901.1875, (decimal?)1038.625, (decimal?)23735.875, (int)10 )); + AllOfThem.Add(new Nebula( 25374, Nebula.NebulaType.Planetary, "Zunuae EQ-Y e7037", 2, true, "Zunuae EQ-Y e7037", (decimal?)-644.875, (decimal?)442.78125, (decimal?)23543.625, (int)10 )); + AllOfThem.Add(new Nebula( 25375, Nebula.NebulaType.Planetary, "Zunuae HL-Y e6903", 2, true, "Zunuae HL-Y e6903", (decimal?)-437.34375, (decimal?)199.53125, (decimal?)23539.96875, (int)10 )); + AllOfThem.Add(new Nebula( 30059, Nebula.NebulaType.Real, "IC 4776", 2, true, "CD-33 13537", null, null, null, (int)100 )); + } + public static void init_Region_3() + { + AllOfThem.Add(new Nebula( 10018, Nebula.NebulaType.Standard, "Eorm Breae AA-A h514", 3, true, "Eorm Breae MT-D c27-26", (decimal?)-122.34375, (decimal?)1886.40625, (decimal?)30849.03125, (int)100 )); + AllOfThem.Add(new Nebula( 10019, Nebula.NebulaType.Standard, "Greeroi AA-A h3", 3, true, "Greeroi MT-O d7-3", (decimal?)4617.96875, (decimal?)1193.53125, (decimal?)37984.65625, (int)100 )); + AllOfThem.Add(new Nebula( 10020, Nebula.NebulaType.Standard, "Hypuae Briae AA-A h268", 3, true, "Hypuae Briae YQ-Z c28-339", (decimal?)1063.3125, (decimal?)465.96875, (decimal?)36040.375, (int)100 )); + AllOfThem.Add(new Nebula( 10021, Nebula.NebulaType.Standard, "Hyuqu AA-A h7", 3, true, "Hyuqu IG-X c1-171", (decimal?)2849.5, (decimal?)-1107.25, (decimal?)34868.59375, (int)100 )); + AllOfThem.Add(new Nebula( 10022, Nebula.NebulaType.Standard, "Scheau Blao AA-A h513", 3, true, "Scheau Blao NS-U f2-1773", (decimal?)4315.875, (decimal?)-1108.53125, (decimal?)33488.03125, (int)100 )); + AllOfThem.Add(new Nebula( 10023, Nebula.NebulaType.Standard, "Scheau Bli AA-A h154", 3, true, "Scheau Bli HZ-B c28-188", (decimal?)2057.125, (decimal?)-671.84375, (decimal?)33454.625, (int)100 )); + AllOfThem.Add(new Nebula( 10024, Nebula.NebulaType.Standard, "Hypou Briae AA-A h40", 3, true, "Hypou Briae MM-W d1-1639", (decimal?)-1006.875, (decimal?)35.59375, (decimal?)34959.6875, (int)100 )); + AllOfThem.Add(new Nebula( 20001, Nebula.NebulaType.Planetary, "Aemonz EQ-Y e1899", 3, true, "Aemonz EQ-Y e1899", (decimal?)4549.96875, (decimal?)-850.5625, (decimal?)33732.375, (int)10 )); + AllOfThem.Add(new Nebula( 20002, Nebula.NebulaType.Planetary, "Aemonz WP-X e1-230", 3, true, "Aemonz WP-X e1-230", (decimal?)3852.90625, (decimal?)-321.15625, (decimal?)33901.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20003, Nebula.NebulaType.Planetary, "Aemonz WZ-Y e2137", 3, true, "Aemonz WZ-Y e2137", (decimal?)3857.34375, (decimal?)-576.5, (decimal?)33733.875, (int)10 )); + AllOfThem.Add(new Nebula( 20004, Nebula.NebulaType.Planetary, "Aemonz YK-P e5-68", 3, true, "Aemonz YK-P e5-68", (decimal?)3865.3125, (decimal?)-1287.53125, (decimal?)34537.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20005, Nebula.NebulaType.Planetary, "Aemorrs CG-O e6-2183", 3, true, "Aemorrs CG-O e6-2183", (decimal?)2312.8125, (decimal?)-816.8125, (decimal?)34644.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20006, Nebula.NebulaType.Planetary, "Aemorrs FB-X e1-3356", 3, true, "Aemorrs FB-X e1-3356", (decimal?)1805.8125, (decimal?)-792.78125, (decimal?)33828.25, (int)10 )); + AllOfThem.Add(new Nebula( 20007, Nebula.NebulaType.Planetary, "Aemorrs HX-T e3-4455", 3, true, "Aemorrs HX-T e3-4455", (decimal?)1531.46875, (decimal?)-409.75, (decimal?)34137.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20008, Nebula.NebulaType.Planetary, "Aemorrs HX-T e3-4517", 3, true, "Aemorrs HX-T e3-4517", (decimal?)1470.34375, (decimal?)-469.34375, (decimal?)34159.25, (int)10 )); + AllOfThem.Add(new Nebula( 20009, Nebula.NebulaType.Planetary, "Aemorrs KW-W e1-4401", 3, true, "Aemorrs KW-W e1-4401", (decimal?)2241.3125, (decimal?)-840.40625, (decimal?)33926.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20010, Nebula.NebulaType.Planetary, "Aemorrs LC-U e3-1611", 3, true, "Aemorrs LC-U e3-1611", (decimal?)2378.96875, (decimal?)-295.125, (decimal?)34195.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20011, Nebula.NebulaType.Planetary, "Aemorrs LH-V e2-6480", 3, true, "Aemorrs LH-V e2-6480", (decimal?)2063.40625, (decimal?)-811.5625, (decimal?)34049.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20012, Nebula.NebulaType.Planetary, "Aemorrs NX-T e3-9480", 3, true, "Aemorrs NX-T e3-9480", (decimal?)2473.40625, (decimal?)-483.71875, (decimal?)34163.125, (int)10 )); + AllOfThem.Add(new Nebula( 20013, Nebula.NebulaType.Planetary, "Aemorrs PI-T e3-4299", 3, true, "Aemorrs PI-T e3-4299", (decimal?)1719, (decimal?)-937.59375, (decimal?)34218.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20014, Nebula.NebulaType.Planetary, "Aemorrs PT-Q e5-5090", 3, true, "Aemorrs PT-Q e5-5090", (decimal?)2101.53125, (decimal?)-114.9375, (decimal?)34564.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20015, Nebula.NebulaType.Planetary, "Aemorrs PY-R e4-373", 3, true, "Aemorrs PY-R e4-373", (decimal?)1737.09375, (decimal?)-651.375, (decimal?)34362.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20016, Nebula.NebulaType.Planetary, "Aemorrs SD-B e9406", 3, true, "Aemorrs SD-B e9406", (decimal?)2004.8125, (decimal?)-264.0625, (decimal?)33617.875, (int)10 )); + AllOfThem.Add(new Nebula( 20017, Nebula.NebulaType.Planetary, "Aemorrs TO-Z e8424", 3, true, "Aemorrs TO-Z e8424", (decimal?)1852.53125, (decimal?)-26.625, (decimal?)33757.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20018, Nebula.NebulaType.Planetary, "Aemorrs UO-R e4-4982", 3, true, "Aemorrs UO-R e4-4982", (decimal?)1919.625, (decimal?)-913.34375, (decimal?)34306.125, (int)10 )); + AllOfThem.Add(new Nebula( 20019, Nebula.NebulaType.Planetary, "Aemorrs VE-Q e5-6631", 3, true, "Aemorrs VE-Q e5-6631", (decimal?)2105.4375, (decimal?)-530.1875, (decimal?)34609.75, (int)10 )); + AllOfThem.Add(new Nebula( 20020, Nebula.NebulaType.Planetary, "Aemorrs WZ-Y e1997", 3, true, "Aemorrs WZ-Y e1997", (decimal?)1281.46875, (decimal?)-578.40625, (decimal?)33680.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20021, Nebula.NebulaType.Planetary, "Aemorrs YF-O e6-4580", 3, true, "Aemorrs YF-O e6-4580", (decimal?)1638.46875, (decimal?)-745.6875, (decimal?)34756.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20022, Nebula.NebulaType.Planetary, "Aemorrs YT-A e7696", 3, true, "Aemorrs YT-A e7696", (decimal?)2330.0625, (decimal?)-594.875, (decimal?)33644.125, (int)10 )); + AllOfThem.Add(new Nebula( 20023, Nebula.NebulaType.Planetary, "Aemorrs ZA-O e6-1760", 3, true, "Aemorrs ZA-O e6-1760", (decimal?)1379.84375, (decimal?)-942.59375, (decimal?)34689.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20024, Nebula.NebulaType.Planetary, "Aemost BA-Z e4325", 3, true, "Aemost BA-Z e4325", (decimal?)747.875, (decimal?)-657.78125, (decimal?)33705.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20025, Nebula.NebulaType.Planetary, "Aemost BK-A e1056", 3, true, "Aemost BK-A e1056", (decimal?)791.84375, (decimal?)-906.125, (decimal?)33524.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20026, Nebula.NebulaType.Planetary, "Aemost CA-Z e6673", 3, true, "Aemost CA-Z e6673", (decimal?)901.21875, (decimal?)-518.25, (decimal?)33661.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20027, Nebula.NebulaType.Planetary, "Aemost DG-O e6-4332", 3, true, "Aemost DG-O e6-4332", (decimal?)1182.09375, (decimal?)-783.8125, (decimal?)34631.75, (int)10 )); + AllOfThem.Add(new Nebula( 20028, Nebula.NebulaType.Planetary, "Aemost DG-O e6-5894", 3, true, "Aemost DG-O e6-5894", (decimal?)1214.6875, (decimal?)-811.25, (decimal?)34739.375, (int)10 )); + AllOfThem.Add(new Nebula( 20029, Nebula.NebulaType.Planetary, "Aemost EB-O e6-5262", 3, true, "Aemost EB-O e6-5262", (decimal?)920.25, (decimal?)-931.71875, (decimal?)34694.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20030, Nebula.NebulaType.Planetary, "Aemost FR-V e2-1417", 3, true, "Aemost FR-V e2-1417", (decimal?)491.40625, (decimal?)-389.53125, (decimal?)34093, (int)10 )); + AllOfThem.Add(new Nebula( 20031, Nebula.NebulaType.Planetary, "Aemost JN-S e4-7370", 3, true, "Aemost JN-S e4-7370", (decimal?)481.625, (decimal?)-114.1875, (decimal?)34441.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20032, Nebula.NebulaType.Planetary, "Aemost NN-S e4-1763", 3, true, "Aemost NN-S e4-1763", (decimal?)1073.84375, (decimal?)-106.6875, (decimal?)34307.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20033, Nebula.NebulaType.Planetary, "Aemost QT-Q e5-7605", 3, true, "Aemost QT-Q e5-7605", (decimal?)896.71875, (decimal?)-87.0625, (decimal?)34500.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20034, Nebula.NebulaType.Planetary, "Aemost TI-T e3-4789", 3, true, "Aemost TI-T e3-4789", (decimal?)1094.03125, (decimal?)-893.9375, (decimal?)34195.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20035, Nebula.NebulaType.Planetary, "Aemost UZ-O e6-8856", 3, true, "Aemost UZ-O e6-8856", (decimal?)948.625, (decimal?)-42.25, (decimal?)34724.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20036, Nebula.NebulaType.Planetary, "Aemost VO-Z e8067", 3, true, "Aemost VO-Z e8067", (decimal?)833.21875, (decimal?)-72.25, (decimal?)33778.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20037, Nebula.NebulaType.Planetary, "Aemost YJ-Z e7271", 3, true, "Aemost YJ-Z e7271", (decimal?)1053.875, (decimal?)-252.8125, (decimal?)33780.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20086, Nebula.NebulaType.Planetary, "Aiphaitt JG-Y e186", 3, true, "Aiphaitt JG-Y e186", (decimal?)-4323.3125, (decimal?)88.0625, (decimal?)33808.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20091, Nebula.NebulaType.Planetary, "Aishaind DL-Y e301", 3, true, "Aishaind DL-Y e301", (decimal?)-3688.4375, (decimal?)186.71875, (decimal?)33786.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20092, Nebula.NebulaType.Planetary, "Aishaind MS-T e3-269", 3, true, "Aishaind MS-T e3-269", (decimal?)-3177.875, (decimal?)686, (decimal?)34231.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20093, Nebula.NebulaType.Planetary, "Aishaind XJ-A e1332", 3, true, "Aishaind XJ-A e1332", (decimal?)-3603.78125, (decimal?)375.65625, (decimal?)33518.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20094, Nebula.NebulaType.Planetary, "Aishaind XJ-A e7812", 3, true, "Aishaind XJ-A e7812", (decimal?)-3643.4375, (decimal?)382.15625, (decimal?)33505.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20095, Nebula.NebulaType.Planetary, "Aishaind YE-Z e2264", 3, true, "Aishaind YE-Z e2264", (decimal?)-3240.3125, (decimal?)791.8125, (decimal?)33793.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20096, Nebula.NebulaType.Planetary, "Aishaink CA-Z e240", 3, true, "Aishaink CA-Z e240", (decimal?)2244.8125, (decimal?)706.625, (decimal?)33810.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20097, Nebula.NebulaType.Planetary, "Aishaink DF-A e7897", 3, true, "Aishaink DF-A e7897", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 20098, Nebula.NebulaType.Planetary, "Aishaink EM-V e2-3704", 3, true, "Aishaink EM-V e2-3704", (decimal?)1317.125, (decimal?)670.03125, (decimal?)33996.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20099, Nebula.NebulaType.Planetary, "Aishaink GQ-Y e926", 3, true, "Aishaink GQ-Y e926", (decimal?)2240.90625, (decimal?)388.09375, (decimal?)33807.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20100, Nebula.NebulaType.Planetary, "Aishaink IC-U e3-1205", 3, true, "Aishaink IC-U e3-1205", (decimal?)1864, (decimal?)949.65625, (decimal?)34258.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20101, Nebula.NebulaType.Planetary, "Aishaink IC-U e3-570", 3, true, "Aishaink IC-U e3-570", (decimal?)1917.84375, (decimal?)1090.40625, (decimal?)34216.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20102, Nebula.NebulaType.Planetary, "Aishaink KR-W e1-2829", 3, true, "Aishaink KR-W e1-2829", (decimal?)1888.3125, (decimal?)192.4375, (decimal?)33859.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20103, Nebula.NebulaType.Planetary, "Aishaink NM-W e1-8923", 3, true, "Aishaink NM-W e1-8923", (decimal?)2159.59375, (decimal?)13.09375, (decimal?)33952.25, (int)10 )); + AllOfThem.Add(new Nebula( 20104, Nebula.NebulaType.Planetary, "Aishaink PD-B e3707", 3, true, "Aishaink PD-B e3707", (decimal?)1423.8125, (decimal?)951.125, (decimal?)33536.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20105, Nebula.NebulaType.Planetary, "Aishaink RE-Q e5-4620", 3, true, "Aishaink RE-Q e5-4620", (decimal?)1390.46875, (decimal?)754.65625, (decimal?)34519.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20106, Nebula.NebulaType.Planetary, "Aishaink SJ-R e4-2451", 3, true, "Aishaink SJ-R e4-2451", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 20107, Nebula.NebulaType.Planetary, "Aishaink SS-U e2-3779", 3, true, "Aishaink SS-U e2-3779", (decimal?)2195.9375, (decimal?)45.4375, (decimal?)34073.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20108, Nebula.NebulaType.Planetary, "Aishaink TI-T e3-2702", 3, true, "Aishaink TI-T e3-2702", (decimal?)2380.59375, (decimal?)380.875, (decimal?)34268.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20109, Nebula.NebulaType.Planetary, "Aishaink TO-R e4-616", 3, true, "Aishaink TO-R e4-616", (decimal?)1788, (decimal?)353.28125, (decimal?)34361.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20110, Nebula.NebulaType.Planetary, "Aishaink TO-R e4-7249", 3, true, "Aishaink TO-R e4-7249", (decimal?)1810.75, (decimal?)377.9375, (decimal?)34445.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20111, Nebula.NebulaType.Planetary, "Aishaink TZ-P e5-77", 3, true, "Aishaink TZ-P e5-77", (decimal?)1530.71875, (decimal?)575.28125, (decimal?)34516.75, (int)10 )); + AllOfThem.Add(new Nebula( 20112, Nebula.NebulaType.Planetary, "Aishaink WF-O e6-4609", 3, true, "Aishaink WF-O e6-4609", (decimal?)1335.125, (decimal?)572.375, (decimal?)34621.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20113, Nebula.NebulaType.Planetary, "Aishaink XY-S e3-2017", 3, true, "Aishaink XY-S e3-2017", (decimal?)2449.21875, (decimal?)33.5625, (decimal?)34191.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20114, Nebula.NebulaType.Planetary, "Aishaink XY-S e3-2107", 3, true, "Aishaink XY-S e3-2107", (decimal?)2342.5625, (decimal?)109.4375, (decimal?)34215.875, (int)10 )); + AllOfThem.Add(new Nebula( 20115, Nebula.NebulaType.Planetary, "Aishaink YE-A e2426", 3, true, "Aishaink YE-A e2426", (decimal?)1244.1875, (decimal?)184.6875, (decimal?)33537.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20116, Nebula.NebulaType.Planetary, "Aishaink ZJ-A e5982", 3, true, "Aishaink ZJ-A e5982", (decimal?)1810.25, (decimal?)443.03125, (decimal?)33556.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20117, Nebula.NebulaType.Planetary, "Aishaink ZP-X e1-1880", 3, true, "Aishaink ZP-X e1-1880", (decimal?)1852.59375, (decimal?)1065.34375, (decimal?)33967.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20118, Nebula.NebulaType.Planetary, "Aishaink ZZ-P e5-1822", 3, true, "Aishaink ZZ-P e5-1822", (decimal?)2347.75, (decimal?)611.84375, (decimal?)34523.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20119, Nebula.NebulaType.Planetary, "Aishainn DV-Y e20", 3, true, "Aishainn DV-Y e20", (decimal?)4626.875, (decimal?)544.375, (decimal?)33675.5, (int)10 )); + AllOfThem.Add(new Nebula( 20120, Nebula.NebulaType.Planetary, "Aishainn EW-N e6-215", 3, true, "Aishainn EW-N e6-215", (decimal?)4522.875, (decimal?)173.34375, (decimal?)34702.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20121, Nebula.NebulaType.Planetary, "Aishainn FG-Y e5497", 3, true, "Aishainn FG-Y e5497", (decimal?)3993.4375, (decimal?)123.46875, (decimal?)33687.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20122, Nebula.NebulaType.Planetary, "Aishainn MI-T e3-6728", 3, true, "Aishainn MI-T e3-6728", (decimal?)3892.65625, (decimal?)359, (decimal?)34139.375, (int)10 )); + AllOfThem.Add(new Nebula( 20123, Nebula.NebulaType.Planetary, "Aishainn RY-S e3-834", 3, true, "Aishainn RY-S e3-834", (decimal?)4032.59375, (decimal?)24.8125, (decimal?)34272.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20124, Nebula.NebulaType.Planetary, "Aishainn TZ-P e5-4471", 3, true, "Aishainn TZ-P e5-4471", (decimal?)4040.78125, (decimal?)509.9375, (decimal?)34522.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20125, Nebula.NebulaType.Planetary, "Aishainn UO-A e5660", 3, true, "Aishainn UO-A e5660", (decimal?)3884.21875, (decimal?)583.65625, (decimal?)33545.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20126, Nebula.NebulaType.Planetary, "Aishainn WY-S e3-3276", 3, true, "Aishainn WY-S e3-3276", (decimal?)4869.9375, (decimal?)116.78125, (decimal?)34146.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20127, Nebula.NebulaType.Planetary, "Aishainn XE-R e4-75", 3, true, "Aishainn XE-R e4-75", (decimal?)4357.84375, (decimal?)65.46875, (decimal?)34425.625, (int)10 )); + AllOfThem.Add(new Nebula( 20128, Nebula.NebulaType.Planetary, "Aishainn XP-X e1-2986", 3, true, "Aishainn XP-X e1-2986", (decimal?)4060.71875, (decimal?)1018.96875, (decimal?)33940.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20129, Nebula.NebulaType.Planetary, "Aishainn ZJ-A e384", 3, true, "Aishainn ZJ-A e384", (decimal?)4297.65625, (decimal?)329.5, (decimal?)33637.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20130, Nebula.NebulaType.Planetary, "Aishaish BL-X e1-182", 3, true, "Aishaish BL-X e1-182", (decimal?)517.71875, (decimal?)794.28125, (decimal?)33927.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20131, Nebula.NebulaType.Planetary, "Aishaish EQ-Y e5911", 3, true, "Aishaish EQ-Y e5911", (decimal?)620.09375, (decimal?)374.125, (decimal?)33810.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20132, Nebula.NebulaType.Planetary, "Aishaish IR-N e6-10632", 3, true, "Aishaish IR-N e6-10632", (decimal?)1044.0625, (decimal?)51.875, (decimal?)34753.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20133, Nebula.NebulaType.Planetary, "Aishaish JB-X e1-8591", 3, true, "Aishaish JB-X e1-8591", (decimal?)1140.34375, (decimal?)570.09375, (decimal?)33835.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20134, Nebula.NebulaType.Planetary, "Aishaish RI-B e1196", 3, true, "Aishaish RI-B e1196", (decimal?)776.21875, (decimal?)1187.5625, (decimal?)33554.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20135, Nebula.NebulaType.Planetary, "Aishaish RS-U e2-96", 3, true, "Aishaish RS-U e2-96", (decimal?)790.21875, (decimal?)122.125, (decimal?)34067.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20136, Nebula.NebulaType.Planetary, "Aishaish SD-T e3-3218", 3, true, "Aishaish SD-T e3-3218", (decimal?)636.0625, (decimal?)200.65625, (decimal?)34185.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20137, Nebula.NebulaType.Planetary, "Aishaish VE-Q e5-80", 3, true, "Aishaish VE-Q e5-80", (decimal?)864.5625, (decimal?)668.25, (decimal?)34566.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20138, Nebula.NebulaType.Planetary, "Aishaish WY-A e847", 3, true, "Aishaish WY-A e847", (decimal?)964, (decimal?)878.25, (decimal?)33514, (int)10 )); + AllOfThem.Add(new Nebula( 20140, Nebula.NebulaType.Planetary, "Aowriae HG-Y e2203", 3, true, "Aowriae HG-Y e2203", (decimal?)569.6875, (decimal?)1264.9375, (decimal?)33771.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20383, Nebula.NebulaType.Planetary, "Brairaae FB-O e6-7755", 3, true, "Brairaae FB-O e6-7755", (decimal?)-2738.625, (decimal?)-955.625, (decimal?)32108.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20384, Nebula.NebulaType.Planetary, "Brairaae PJ-Q e5-154", 3, true, "Brairaae PJ-Q e5-154", (decimal?)-3675.40625, (decimal?)-463.34375, (decimal?)31927.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20385, Nebula.NebulaType.Planetary, "Brairaae PT-R e4-1933", 3, true, "Brairaae PT-R e4-1933", (decimal?)-3634.71875, (decimal?)-790.625, (decimal?)31827.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20386, Nebula.NebulaType.Planetary, "Brairaae VD-T e3-4017", 3, true, "Brairaae VD-T e3-4017", (decimal?)-2767.375, (decimal?)-1025.96875, (decimal?)31607.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20387, Nebula.NebulaType.Planetary, "Braireau CL-X e1-4588", 3, true, "Braireau CL-X e1-4588", (decimal?)-1897.03125, (decimal?)-450.21875, (decimal?)31379.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20388, Nebula.NebulaType.Planetary, "Braireau CW-V e2-774", 3, true, "Braireau CW-V e2-774", (decimal?)-2183.96875, (decimal?)-212.21875, (decimal?)31553.25, (int)10 )); + AllOfThem.Add(new Nebula( 20389, Nebula.NebulaType.Planetary, "Braireau EB-X e1-2006", 3, true, "Braireau EB-X e1-2006", (decimal?)-2202.0625, (decimal?)-794.8125, (decimal?)31292.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20390, Nebula.NebulaType.Planetary, "Braireau GB-X e1-7896", 3, true, "Braireau GB-X e1-7896", (decimal?)-1965.25, (decimal?)-740.84375, (decimal?)31386.875, (int)10 )); + AllOfThem.Add(new Nebula( 20391, Nebula.NebulaType.Planetary, "Braireau GH-U e3-719", 3, true, "Braireau GH-U e3-719", (decimal?)-1837.4375, (decimal?)-183.90625, (decimal?)31684.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20392, Nebula.NebulaType.Planetary, "Braireau GM-V e2-1224", 3, true, "Braireau GM-V e2-1224", (decimal?)-2254.15625, (decimal?)-638.46875, (decimal?)31418.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20393, Nebula.NebulaType.Planetary, "Braireau IH-V e2-4497", 3, true, "Braireau IH-V e2-4497", (decimal?)-2247.71875, (decimal?)-757.6875, (decimal?)31487.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20394, Nebula.NebulaType.Planetary, "Braireau LH-V e2-185", 3, true, "Braireau LH-V e2-185", (decimal?)-1746.5625, (decimal?)-778.8125, (decimal?)31529.75, (int)10 )); + AllOfThem.Add(new Nebula( 20395, Nebula.NebulaType.Planetary, "Braireau LM-V e2-75", 3, true, "Braireau LM-V e2-75", (decimal?)-1457.125, (decimal?)-655.3125, (decimal?)31492.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20396, Nebula.NebulaType.Planetary, "Braireau PD-S e4-1837", 3, true, "Braireau PD-S e4-1837", (decimal?)-1704.125, (decimal?)-439.9375, (decimal?)31851.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20397, Nebula.NebulaType.Planetary, "Braireau VU-P e5-5121", 3, true, "Braireau VU-P e5-5121", (decimal?)-2408.09375, (decimal?)-902.84375, (decimal?)32032.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20398, Nebula.NebulaType.Planetary, "Braireau WJ-Z e2810", 3, true, "Braireau WJ-Z e2810", (decimal?)-1978.28125, (decimal?)-326.28125, (decimal?)31182.75, (int)10 )); + AllOfThem.Add(new Nebula( 20399, Nebula.NebulaType.Planetary, "Brairee BQ-Y e587", 3, true, "Brairee BQ-Y e587", (decimal?)-1044.6875, (decimal?)-914.40625, (decimal?)31192.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20400, Nebula.NebulaType.Planetary, "Brairee JI-S e4-3072", 3, true, "Brairee JI-S e4-3072", (decimal?)-1177.40625, (decimal?)-200.75, (decimal?)31845.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20401, Nebula.NebulaType.Planetary, "Brairee KD-S e4-2776", 3, true, "Brairee KD-S e4-2776", (decimal?)-1202.71875, (decimal?)-474.5625, (decimal?)31739.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20402, Nebula.NebulaType.Planetary, "Brairee MN-T e3-1437", 3, true, "Brairee MN-T e3-1437", (decimal?)-933.15625, (decimal?)-729.15625, (decimal?)31673.5, (int)10 )); + AllOfThem.Add(new Nebula( 20403, Nebula.NebulaType.Planetary, "Brairee MT-Q e5-857", 3, true, "Brairee MT-Q e5-857", (decimal?)-879.09375, (decimal?)-88.09375, (decimal?)31952.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20404, Nebula.NebulaType.Planetary, "Brairee PD-S e4-645", 3, true, "Brairee PD-S e4-645", (decimal?)-389.8125, (decimal?)-376.375, (decimal?)31740.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20405, Nebula.NebulaType.Planetary, "Brairee XJ-R e4-1940", 3, true, "Brairee XJ-R e4-1940", (decimal?)-421.0625, (decimal?)-1014.75, (decimal?)31760.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20406, Nebula.NebulaType.Planetary, "Brairee YA-O e6-4374", 3, true, "Brairee YA-O e6-4374", (decimal?)-1197.40625, (decimal?)-926.78125, (decimal?)32210.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20443, Nebula.NebulaType.Planetary, "Braisio AK-A e297", 3, true, "Braisio AK-A e297", (decimal?)1928.96875, (decimal?)-946.34375, (decimal?)31024.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20444, Nebula.NebulaType.Planetary, "Braisio BA-A e2007", 3, true, "Braisio BA-A e2007", (decimal?)1450.65625, (decimal?)-1241.21875, (decimal?)30950.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20445, Nebula.NebulaType.Planetary, "Braisio DB-O e6-369", 3, true, "Braisio DB-O e6-369", (decimal?)2119.53125, (decimal?)-933.21875, (decimal?)32155.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20446, Nebula.NebulaType.Planetary, "Braisio FG-X e1-7585", 3, true, "Braisio FG-X e1-7585", (decimal?)2065, (decimal?)-612.625, (decimal?)31408.625, (int)10 )); + AllOfThem.Add(new Nebula( 20447, Nebula.NebulaType.Planetary, "Braisio FR-V e2-293", 3, true, "Braisio FR-V e2-293", (decimal?)1819.84375, (decimal?)-439.90625, (decimal?)31479.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20448, Nebula.NebulaType.Planetary, "Braisio KM-W e1-2851", 3, true, "Braisio KM-W e1-2851", (decimal?)1602.5625, (decimal?)-1266.21875, (decimal?)31364.625, (int)10 )); + AllOfThem.Add(new Nebula( 20449, Nebula.NebulaType.Planetary, "Braisio ND-S e4-173", 3, true, "Braisio ND-S e4-173", (decimal?)1722.53125, (decimal?)-419.96875, (decimal?)31809.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20450, Nebula.NebulaType.Planetary, "Braisio PN-T e3-4730", 3, true, "Braisio PN-T e3-4730", (decimal?)2028.53125, (decimal?)-676.9375, (decimal?)31632.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20451, Nebula.NebulaType.Planetary, "Braisio QE-Q e5-5506", 3, true, "Braisio QE-Q e5-5506", (decimal?)1374.5625, (decimal?)-567.28125, (decimal?)32038.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20452, Nebula.NebulaType.Planetary, "Braisio TD-T e3-2293", 3, true, "Braisio TD-T e3-2293", (decimal?)2123.78125, (decimal?)-1127.09375, (decimal?)31578, (int)10 )); + AllOfThem.Add(new Nebula( 20453, Nebula.NebulaType.Planetary, "Braisio UO-R e4-4323", 3, true, "Braisio UO-R e4-4323", (decimal?)1930.65625, (decimal?)-855.375, (decimal?)31855.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20454, Nebula.NebulaType.Planetary, "Braisio VE-Z e2998", 3, true, "Braisio VE-Z e2998", (decimal?)1405.65625, (decimal?)-429.125, (decimal?)31108.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20456, Nebula.NebulaType.Planetary, "Braisoe BF-R e4-1127", 3, true, "Braisoe BF-R e4-1127", (decimal?)1198.65625, (decimal?)-1187.96875, (decimal?)31870.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20457, Nebula.NebulaType.Planetary, "Braisoe CG-O e6-705", 3, true, "Braisoe CG-O e6-705", (decimal?)978.21875, (decimal?)-763.8125, (decimal?)32092.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20458, Nebula.NebulaType.Planetary, "Braisoe DA-Z e38", 3, true, "Braisoe DA-Z e38", (decimal?)1153.90625, (decimal?)-634.21875, (decimal?)31098.125, (int)10 )); + AllOfThem.Add(new Nebula( 20459, Nebula.NebulaType.Planetary, "Braisoe DK-A e6958", 3, true, "Braisoe DK-A e6958", (decimal?)1079.90625, (decimal?)-868.09375, (decimal?)31080.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20460, Nebula.NebulaType.Planetary, "Braisoe PS-T e3-10", 3, true, "Braisoe PS-T e3-10", (decimal?)1107.78125, (decimal?)-601.59375, (decimal?)31613.25, (int)10 )); + AllOfThem.Add(new Nebula( 20461, Nebula.NebulaType.Planetary, "Braisoe UY-S e3-6436", 3, true, "Braisoe UY-S e3-6436", (decimal?)671.65625, (decimal?)-1170.03125, (decimal?)31714.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20463, Nebula.NebulaType.Planetary, "Braisoea MI-B e949", 3, true, "Braisoea MI-B e949", (decimal?)2614.96875, (decimal?)-65.34375, (decimal?)31012.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20464, Nebula.NebulaType.Planetary, "Braisoea PY-R e4-4421", 3, true, "Braisoea PY-R e4-4421", (decimal?)3045.625, (decimal?)-548.90625, (decimal?)31866.875, (int)10 )); + AllOfThem.Add(new Nebula( 20465, Nebula.NebulaType.Planetary, "Braisoea SP-O E6-1917", 3, true, "Braisoea SP-O e6-1917", (decimal?)2564.21875, (decimal?)-443.875, (decimal?)32197.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20466, Nebula.NebulaType.Planetary, "Braisoea TI-T e3-3924", 3, true, "Braisoea TI-T e3-3924", (decimal?)3740.15625, (decimal?)-855.34375, (decimal?)31600, (int)10 )); + AllOfThem.Add(new Nebula( 20467, Nebula.NebulaType.Planetary, "Braisoea TJ-Q e5-5681", 3, true, "Braisoea TJ-Q e5-5681", (decimal?)3382.375, (decimal?)-354.46875, (decimal?)32051.375, (int)10 )); + AllOfThem.Add(new Nebula( 20468, Nebula.NebulaType.Planetary, "Braisoea TJ-Z e506", 3, true, "Braisoea TJ-Z e506", (decimal?)2692.09375, (decimal?)-310.5, (decimal?)31133.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20475, Nebula.NebulaType.Planetary, "Braisoi LT-Q e5-1366", 3, true, "Braisoi LT-Q e5-1366", (decimal?)3955.5625, (decimal?)-27.25, (decimal?)32040.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20476, Nebula.NebulaType.Planetary, "Braisoi LT-Q e5-2843", 3, true, "Braisoi LT-Q e5-2843", (decimal?)4059.375, (decimal?)-87.59375, (decimal?)32016.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20478, Nebula.NebulaType.Planetary, "Braisoi PJ-Q e5-4312", 3, true, "Braisoi PJ-Q e5-4312", (decimal?)3972.75, (decimal?)-458.21875, (decimal?)31904.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20480, Nebula.NebulaType.Planetary, "Braisoi SE-Q e5-4347", 3, true, "Braisoi SE-Q e5-4347", (decimal?)4191.09375, (decimal?)-574.90625, (decimal?)32039.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20723, Nebula.NebulaType.Planetary, "Chraise YA-W e2-3201", 3, true, "Chraise YA-W e2-3201", (decimal?)-2592.375, (decimal?)-1353.53125, (decimal?)31462.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20725, Nebula.NebulaType.Planetary, "Chraisoae FB-W e2-3966", 3, true, "Chraisoae FB-W e2-3966", (decimal?)1209.59375, (decimal?)-1407.59375, (decimal?)31471, (int)10 )); + AllOfThem.Add(new Nebula( 20726, Nebula.NebulaType.Planetary, "Chraisoae KN-S e4-2905", 3, true, "Chraisoae KN-S e4-2905", (decimal?)728.0625, (decimal?)-1324.40625, (decimal?)31768.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20962, Nebula.NebulaType.Planetary, "Dryau Breae EA-A e1979", 3, true, "Dryau Breae EA-A e1979", (decimal?)624.84375, (decimal?)1277.40625, (decimal?)30962, (int)10 )); + AllOfThem.Add(new Nebula( 20963, Nebula.NebulaType.Planetary, "Dryau Breae IG-Y e1276", 3, true, "Dryau Breae IG-Y e1276", (decimal?)689.375, (decimal?)1358.0625, (decimal?)31161.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20964, Nebula.NebulaType.Planetary, "Dryau Breae KH-V e2-219", 3, true, "Dryau Breae KH-V e2-219", (decimal?)593.5, (decimal?)1779.78125, (decimal?)31475.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20965, Nebula.NebulaType.Planetary, "Dryau Briae HM-V e2-3200", 3, true, "Dryau Briae HM-V e2-3200", (decimal?)530.90625, (decimal?)682.65625, (decimal?)31520.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20966, Nebula.NebulaType.Planetary, "Dryau Briae HW-N e6-1964", 3, true, "Dryau Briae HW-N e6-1964", (decimal?)1205.375, (decimal?)218.875, (decimal?)32057.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20967, Nebula.NebulaType.Planetary, "Dryau Briae JR-N e6-949", 3, true, "Dryau Briae JR-N e6-949", (decimal?)1064.46875, (decimal?)-20.125, (decimal?)32097.875, (int)10 )); + AllOfThem.Add(new Nebula( 20968, Nebula.NebulaType.Planetary, "Dryau Briae LM-V e2-5220", 3, true, "Dryau Briae LM-V e2-5220", (decimal?)1069.1875, (decimal?)616.40625, (decimal?)31449.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20969, Nebula.NebulaType.Planetary, "Dryau Briae VJ-Z e2022", 3, true, "Dryau Briae VJ-Z e2022", (decimal?)498.84375, (decimal?)951.34375, (decimal?)31102.375, (int)10 )); + AllOfThem.Add(new Nebula( 20970, Nebula.NebulaType.Planetary, "Dryau Briae VJ-Z e3640", 3, true, "Dryau Briae VJ-Z e3640", (decimal?)513.4375, (decimal?)1069.21875, (decimal?)31238.875, (int)10 )); + AllOfThem.Add(new Nebula( 20971, Nebula.NebulaType.Planetary, "Dryau Briae ZZ-Y e4500", 3, true, "Dryau Briae ZZ-Y e4500", (decimal?)492.9375, (decimal?)627.84375, (decimal?)31193.875, (int)10 )); + AllOfThem.Add(new Nebula( 20972, Nebula.NebulaType.Planetary, "Dryau Bro HA-A e3919", 3, true, "Dryau Bro HA-A e3919", (decimal?)-1483.6875, (decimal?)1357.28125, (decimal?)31048.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21056, Nebula.NebulaType.Planetary, "Dryi Broae DL-P e5-531", 3, true, "Dryi Broae DL-P e5-531", (decimal?)3404.46875, (decimal?)106.15625, (decimal?)31903.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21057, Nebula.NebulaType.Planetary, "Dryi Broae EM-V e2-1118", 3, true, "Dryi Broae EM-V e2-1118", (decimal?)2543.6875, (decimal?)651, (decimal?)31423.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21058, Nebula.NebulaType.Planetary, "Dryi Broae EM-V e2-1706", 3, true, "Dryi Broae EM-V e2-1706", (decimal?)2519.09375, (decimal?)624.6875, (decimal?)31550.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21059, Nebula.NebulaType.Planetary, "Dryi Broae OX-U e2-433", 3, true, "Dryi Broae OX-U e2-433", (decimal?)3195.4375, (decimal?)196.625, (decimal?)31516.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21060, Nebula.NebulaType.Planetary, "Dryi Broae QT-R e4-9553", 3, true, "Dryi Broae QT-R e4-9553", (decimal?)2906.65625, (decimal?)482.5625, (decimal?)31853.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21061, Nebula.NebulaType.Planetary, "Dryi Broae QY-R e4-4618", 3, true, "Dryi Broae QY-R e4-4618", (decimal?)3190.5, (decimal?)732.46875, (decimal?)31770.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21062, Nebula.NebulaType.Planetary, "Dryi Broae UE-Q e5-2473", 3, true, "Dryi Broae UE-Q e5-2473", (decimal?)3220.0625, (decimal?)690.90625, (decimal?)31953.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21063, Nebula.NebulaType.Planetary, "Dryi Broae VT-A e9472", 3, true, "Dryi Broae VT-A e9472", (decimal?)3084.75, (decimal?)735.25, (decimal?)31066.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21064, Nebula.NebulaType.Planetary, "Dryi Broae WE-Q e5-1041", 3, true, "Dryi Broae WE-Q e5-1041", (decimal?)3463.25, (decimal?)735.1875, (decimal?)31975.75, (int)10 )); + AllOfThem.Add(new Nebula( 21065, Nebula.NebulaType.Planetary, "Dryi Broae ZF-O e6-1437", 3, true, "Dryi Broae ZF-O e6-1437", (decimal?)3073.53125, (decimal?)583.1875, (decimal?)32058.875, (int)10 )); + AllOfThem.Add(new Nebula( 21544, Nebula.NebulaType.Planetary, "Eembaisk BQ-Y e1948", 3, true, "Eembaisk BQ-Y e1948", (decimal?)2671.75, (decimal?)328, (decimal?)29824.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21545, Nebula.NebulaType.Planetary, "Eembaisk DG-O e6-2972", 3, true, "Eembaisk DG-O e6-2972", (decimal?)3727.40625, (decimal?)539.28125, (decimal?)30848.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21546, Nebula.NebulaType.Planetary, "Eembaisk EM-V e2-10613", 3, true, "Eembaisk EM-V e2-10613", (decimal?)2566.90625, (decimal?)617.34375, (decimal?)30142.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21548, Nebula.NebulaType.Planetary, "Eembaisk IS-T e3-8481", 3, true, "Eembaisk IS-T e3-8481", (decimal?)2612.4375, (decimal?)768.375, (decimal?)30362.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21550, Nebula.NebulaType.Planetary, "Eembaisk QD-T e3-355", 3, true, "Eembaisk QD-T e3-355", (decimal?)2857.96875, (decimal?)220.46875, (decimal?)30408.75, (int)10 )); + AllOfThem.Add(new Nebula( 21552, Nebula.NebulaType.Planetary, "Eembaisk WF-O e6-1404", 3, true, "Eembaisk WF-O e6-1404", (decimal?)2597.59375, (decimal?)507.375, (decimal?)30862.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21640, Nebula.NebulaType.Planetary, "Eimbaith HR-N e6-3135", 3, true, "Eimbaith HR-N e6-3135", (decimal?)-1767.46875, (decimal?)1308.65625, (decimal?)30875.75, (int)10 )); + AllOfThem.Add(new Nebula( 21641, Nebula.NebulaType.Planetary, "Eimbaitls DL-P e5-1248", 3, true, "Eimbaitls DL-P e5-1248", (decimal?)829, (decimal?)1409.90625, (decimal?)30740.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21642, Nebula.NebulaType.Planetary, "Eimbaitls FR-N e6-2104", 3, true, "Eimbaitls FR-N e6-2104", (decimal?)470.90625, (decimal?)1387.71875, (decimal?)30822.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21643, Nebula.NebulaType.Planetary, "Eimbaitls YE-R e4-1977", 3, true, "Eimbaitls YE-R e4-1977", (decimal?)712.875, (decimal?)1344.4375, (decimal?)30606.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21687, Nebula.NebulaType.Planetary, "Eoch Byio JC-V e2-8163", 3, true, "Eoch Byio JC-V e2-8163", (decimal?)1442.59375, (decimal?)-838.4375, (decimal?)30279.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21688, Nebula.NebulaType.Planetary, "Eoch Byio KX-T e3-2740", 3, true, "Eoch Byio KX-T e3-2740", (decimal?)1947.4375, (decimal?)-356.1875, (decimal?)30448.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21689, Nebula.NebulaType.Planetary, "Eoch Byio LC-U e3-3482", 3, true, "Eoch Byio LC-U e3-3482", (decimal?)2373.1875, (decimal?)-310.15625, (decimal?)30401.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21690, Nebula.NebulaType.Planetary, "Eoch Byio QO-R e4-684", 3, true, "Eoch Byio QO-R e4-684", (decimal?)1318.59375, (decimal?)-948.40625, (decimal?)30502.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21691, Nebula.NebulaType.Planetary, "Eoch Byio RS-U e2-4891", 3, true, "Eoch Byio RS-U e2-4891", (decimal?)2069.6875, (decimal?)-1300.34375, (decimal?)30266.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21692, Nebula.NebulaType.Planetary, "Eoch Byio SO-Q e5-378", 3, true, "Eoch Byio SO-Q e5-378", (decimal?)2183.9375, (decimal?)-191.53125, (decimal?)30718.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21693, Nebula.NebulaType.Planetary, "Eoch Byio SU-O e6-1992", 3, true, "Eoch Byio SU-O e6-1992", (decimal?)1561.28125, (decimal?)-261.8125, (decimal?)30796.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21696, Nebula.NebulaType.Planetary, "Eoch Byio UY-S e3-6738", 3, true, "Eoch Byio UY-S e3-6738", (decimal?)1897.0625, (decimal?)-1164, (decimal?)30299.25, (int)10 )); + AllOfThem.Add(new Nebula( 21821, Nebula.NebulaType.Planetary, "Eok Byoe MI-S e4-1200", 3, true, "Eok Byoe MI-S e4-1200", (decimal?)678.8125, (decimal?)-232.9375, (decimal?)30575.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21822, Nebula.NebulaType.Planetary, "Eok Byoe MS-T e3-3727", 3, true, "Eok Byoe MS-T e3-3727", (decimal?)586.71875, (decimal?)-564.59375, (decimal?)30439.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21823, Nebula.NebulaType.Planetary, "Eok Byoe NX-T e3-2731", 3, true, "Eok Byoe NX-T e3-2731", (decimal?)1110.65625, (decimal?)-359.1875, (decimal?)30330.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21824, Nebula.NebulaType.Planetary, "Eok Byoe TI-T e3-888", 3, true, "Eok Byoe TI-T e3-888", (decimal?)1159.84375, (decimal?)-978.9375, (decimal?)30362.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21825, Nebula.NebulaType.Planetary, "Eok Byoe TO-R e4-3741", 3, true, "Eok Byoe TO-R e4-3741", (decimal?)540.03125, (decimal?)-946.65625, (decimal?)30482.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21826, Nebula.NebulaType.Planetary, "Eok Byoe VJ-Q e5-5907", 3, true, "Eok Byoe VJ-Q e5-5907", (decimal?)1211.0625, (decimal?)-458.78125, (decimal?)30658.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21827, Nebula.NebulaType.Planetary, "Eok Byoe WO-R e4-653", 3, true, "Eok Byoe WO-R e4-653", (decimal?)1014.625, (decimal?)-831.75, (decimal?)30550.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21828, Nebula.NebulaType.Planetary, "Eok Byoe XU-O e6-3398", 3, true, "Eok Byoe XU-O e6-3398", (decimal?)1062.09375, (decimal?)-217.34375, (decimal?)30893.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21845, Nebula.NebulaType.Planetary, "Eok Gree IM-V e2-3072", 3, true, "Eok Gree IM-V e2-3072", (decimal?)-1830.5625, (decimal?)-527.375, (decimal?)30278.25, (int)10 )); + AllOfThem.Add(new Nebula( 21846, Nebula.NebulaType.Planetary, "Eok Gree LW-W e1-5371", 3, true, "Eok Gree LW-W e1-5371", (decimal?)-1393.3125, (decimal?)-859.59375, (decimal?)30108.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21847, Nebula.NebulaType.Planetary, "Eok Gree PI-S e4-4843", 3, true, "Eok Gree PI-S e4-4843", (decimal?)-1376.96875, (decimal?)-331.96875, (decimal?)30511.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21848, Nebula.NebulaType.Planetary, "Eok Gree PX-U e2-3555", 3, true, "Eok Gree PX-U e2-3555", (decimal?)-1717.125, (decimal?)-1124.8125, (decimal?)30229, (int)10 )); + AllOfThem.Add(new Nebula( 21849, Nebula.NebulaType.Planetary, "Eok Gree QI-T e3-6532", 3, true, "Eok Gree QI-T e3-6532", (decimal?)-1847.96875, (decimal?)-894.34375, (decimal?)30396.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21852, Nebula.NebulaType.Planetary, "Eok Gree TO-Q e5-3167", 3, true, "Eok Gree TO-Q e5-3167", (decimal?)-1502.9375, (decimal?)-329.46875, (decimal?)30671.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21855, Nebula.NebulaType.Planetary, "Eok Gree UU-O e6-4014", 3, true, "Eok Gree UU-O e6-4014", (decimal?)-1970.3125, (decimal?)-249.15625, (decimal?)30921.125, (int)10 )); + AllOfThem.Add(new Nebula( 21857, Nebula.NebulaType.Planetary, "Eok Gree WO-Z e5355", 3, true, "Eok Gree WO-Z e5355", (decimal?)-1601.03125, (decimal?)-139.96875, (decimal?)29919.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21859, Nebula.NebulaType.Planetary, "Eok Gree WU-P e5-7940", 3, true, "Eok Gree WU-P e5-7940", (decimal?)-2209.65625, (decimal?)-970.03125, (decimal?)30697.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21860, Nebula.NebulaType.Planetary, "Eok Gree XY-A e6725", 3, true, "Eok Gree XY-A e6725", (decimal?)-1348.59375, (decimal?)-484.71875, (decimal?)29800.875, (int)10 )); + AllOfThem.Add(new Nebula( 21972, Nebula.NebulaType.Planetary, "Eor Bru QY-S e3-3620", 3, true, "Eor Bru QY-S e3-3620", (decimal?)2608.40625, (decimal?)1380.375, (decimal?)30306.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22031, Nebula.NebulaType.Planetary, "Eord Byio BL-P e5-2449", 3, true, "Eord Byio BL-P e5-2449", (decimal?)3005.21875, (decimal?)-1302.6875, (decimal?)30763.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22042, Nebula.NebulaType.Planetary, "Eord Byio YU-Y e6309", 3, true, "Eord Byio YU-Y e6309", (decimal?)2599.84375, (decimal?)-736.71875, (decimal?)29974.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22116, Nebula.NebulaType.Planetary, "Eorl Broae DQ-P e5-677", 3, true, "Eorl Broae DQ-P e5-677", (decimal?)2486.6875, (decimal?)153.84375, (decimal?)30664.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22118, Nebula.NebulaType.Planetary, "Eorl Broae EB-O e6-1507", 3, true, "Eorl Broae EB-O e6-1507", (decimal?)2214.84375, (decimal?)433.40625, (decimal?)30794.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22119, Nebula.NebulaType.Planetary, "Eorl Broae EC-U e3-5204", 3, true, "Eorl Broae EC-U e3-5204", (decimal?)1266.4375, (decimal?)1001.90625, (decimal?)30419.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22120, Nebula.NebulaType.Planetary, "Eorl Broae FQ-Y e6232", 3, true, "Eorl Broae FQ-Y e6232", (decimal?)2042.6875, (decimal?)361.6875, (decimal?)29956.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22121, Nebula.NebulaType.Planetary, "Eorl Broae FW-V e2-7418", 3, true, "Eorl Broae FW-V e2-7418", (decimal?)2027.28125, (decimal?)1068.78125, (decimal?)30139.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22122, Nebula.NebulaType.Planetary, "Eorl Broae JI-S e4-5147", 3, true, "Eorl Broae JI-S e4-5147", (decimal?)1404.53125, (decimal?)972.9375, (decimal?)30607.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22124, Nebula.NebulaType.Planetary, "Eorl Broae VD-T e3-5095", 3, true, "Eorl Broae VD-T e3-5095", (decimal?)2356.84375, (decimal?)199.8125, (decimal?)30366.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22126, Nebula.NebulaType.Planetary, "Eorl Broae YE-Z e5853", 3, true, "Eorl Broae YE-Z e5853", (decimal?)1857.53125, (decimal?)787.375, (decimal?)29943.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22128, Nebula.NebulaType.Planetary, "Eorl Broae YJ-R e4-4807", 3, true, "Eorl Broae YJ-R e4-4807", (decimal?)2324.1875, (decimal?)228.0625, (decimal?)30561.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22145, Nebula.NebulaType.Planetary, "Eorl Bru AL-P e5-1475", 3, true, "Eorl Bru AL-P e5-1475", (decimal?)1569.9375, (decimal?)1387.21875, (decimal?)30707.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22146, Nebula.NebulaType.Planetary, "Eorl Bru BG-O e6-479", 3, true, "Eorl Bru BG-O e6-479", (decimal?)2050.8125, (decimal?)1835.09375, (decimal?)30795.75, (int)10 )); + AllOfThem.Add(new Nebula( 22147, Nebula.NebulaType.Planetary, "Eorl Bru GQ-Y e528", 3, true, "Eorl Bru GQ-Y e528", (decimal?)2301.8125, (decimal?)1603.125, (decimal?)29818.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22170, Nebula.NebulaType.Planetary, "Eorld Byoe BL-P e5-1928", 3, true, "Eorld Byoe BL-P e5-1928", (decimal?)-727.25, (decimal?)-1263.65625, (decimal?)30628.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22171, Nebula.NebulaType.Planetary, "Eorld Byoe CB-O e6-2518", 3, true, "Eorld Byoe CB-O e6-2518", (decimal?)-657.34375, (decimal?)-932.5, (decimal?)30893.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22172, Nebula.NebulaType.Planetary, "Eorld Byoe CB-O e6-3263", 3, true, "Eorld Byoe CB-O e6-3263", (decimal?)-693.9375, (decimal?)-984.71875, (decimal?)30898.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22174, Nebula.NebulaType.Planetary, "Eorld Byoe GW-W e1-2745", 3, true, "Eorld Byoe GW-W e1-2745", (decimal?)-993.3125, (decimal?)-956.53125, (decimal?)30020.375, (int)10 )); + AllOfThem.Add(new Nebula( 22175, Nebula.NebulaType.Planetary, "Eorld Byoe KC-V e2-8871", 3, true, "Eorld Byoe KC-V e2-8871", (decimal?)-905.6875, (decimal?)-941.21875, (decimal?)30243.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22176, Nebula.NebulaType.Planetary, "Eorld Byoe LX-T e3-7333", 3, true, "Eorld Byoe LX-T e3-7333", (decimal?)-430.875, (decimal?)-361.25, (decimal?)30414.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22178, Nebula.NebulaType.Planetary, "Eorld Byoe SD-T e3-5309", 3, true, "Eorld Byoe SD-T e3-5309", (decimal?)-578.125, (decimal?)-1030.09375, (decimal?)30317.125, (int)10 )); + AllOfThem.Add(new Nebula( 22179, Nebula.NebulaType.Planetary, "Eorld Byoe TJ-Q e5-1068", 3, true, "Eorld Byoe TJ-Q e5-1068", (decimal?)-503.78125, (decimal?)-400.875, (decimal?)30635.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22181, Nebula.NebulaType.Planetary, "Eorld Byoe YA-W e2-4084", 3, true, "Eorld Byoe YA-W e2-4084", (decimal?)-1259.84375, (decimal?)-177.4375, (decimal?)30270.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22203, Nebula.NebulaType.Planetary, "Eorm Bre IR-N e6-4154", 3, true, "Eorm Bre IR-N e6-4154", (decimal?)-2830.03125, (decimal?)110.9375, (decimal?)30846.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22210, Nebula.NebulaType.Planetary, "Eorm Breae GW-W e1-1915", 3, true, "Eorm Breae GW-W e1-1915", (decimal?)-882.625, (decimal?)1658.28125, (decimal?)30125.5, (int)10 )); + AllOfThem.Add(new Nebula( 22213, Nebula.NebulaType.Planetary, "Eorm Breae VY-S e3-1915", 3, true, "Eorm Breae VY-S e3-1915", (decimal?)-486.25, (decimal?)1404.875, (decimal?)30356.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22214, Nebula.NebulaType.Planetary, "Eorm Breae ZK-O e6-147", 3, true, "Eorm Breae ZK-O e6-147", (decimal?)-441.375, (decimal?)1912.34375, (decimal?)30834.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22216, Nebula.NebulaType.Planetary, "Eorm Briae GR-N e6-395", 3, true, "Eorm Briae GR-N e6-395", (decimal?)-567.75, (decimal?)35.125, (decimal?)30856.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22217, Nebula.NebulaType.Planetary, "Eorm Briae HH-V e2-1636", 3, true, "Eorm Briae HH-V e2-1636", (decimal?)-1073.65625, (decimal?)598.9375, (decimal?)30243.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22218, Nebula.NebulaType.Planetary, "Eorm Briae KM-W e1-861", 3, true, "Eorm Briae KM-W e1-861", (decimal?)-1023.40625, (decimal?)48.78125, (decimal?)30078.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22219, Nebula.NebulaType.Planetary, "Eorm Briae KN-T e3-4199", 3, true, "Eorm Briae KN-T e3-4199", (decimal?)-1309.1875, (decimal?)548.4375, (decimal?)30332.375, (int)10 )); + AllOfThem.Add(new Nebula( 22220, Nebula.NebulaType.Planetary, "Eorm Briae NO-Q e5-5003", 3, true, "Eorm Briae NO-Q e5-5003", (decimal?)-1174.59375, (decimal?)953.78125, (decimal?)30699.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22221, Nebula.NebulaType.Planetary, "Eorm Briae OZ-O e6-4511", 3, true, "Eorm Briae OZ-O e6-4511", (decimal?)-1275.34375, (decimal?)1251.90625, (decimal?)30904.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22222, Nebula.NebulaType.Planetary, "Eorm Briae PO-Q e5-7409", 3, true, "Eorm Briae PO-Q e5-7409", (decimal?)-781.25, (decimal?)1035.96875, (decimal?)30639.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22223, Nebula.NebulaType.Planetary, "Eorm Briae QJ-Q e5-501", 3, true, "Eorm Briae QJ-Q e5-501", (decimal?)-979.5, (decimal?)869.78125, (decimal?)30771.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22224, Nebula.NebulaType.Planetary, "Eorm Briae RI-T e3-5274", 3, true, "Eorm Briae RI-T e3-5274", (decimal?)-432.4375, (decimal?)362.8125, (decimal?)30334.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22225, Nebula.NebulaType.Planetary, "Eorm Briae TJ-R e4-6369", 3, true, "Eorm Briae TJ-R e4-6369", (decimal?)-1173.15625, (decimal?)201.75, (decimal?)30466.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22248, Nebula.NebulaType.Planetary, "Eos Bre AP-A e2204", 3, true, "Eos Bre AP-A e2204", (decimal?)-1545.96875, (decimal?)516.21875, (decimal?)29665.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22249, Nebula.NebulaType.Planetary, "Eos Bre BL-P e5-7730", 3, true, "Eos Bre BL-P e5-7730", (decimal?)-2031.34375, (decimal?)49.96875, (decimal?)30617.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22251, Nebula.NebulaType.Planetary, "Eos Bre FL-X e1-8214", 3, true, "Eos Bre FL-X e1-8214", (decimal?)-1496.84375, (decimal?)849.28125, (decimal?)29991.375, (int)10 )); + AllOfThem.Add(new Nebula( 22252, Nebula.NebulaType.Planetary, "Eos Bre IL-Y e9900", 3, true, "Eos Bre IL-Y e9900", (decimal?)-1615.875, (decimal?)263, (decimal?)29876.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22253, Nebula.NebulaType.Planetary, "Eos Bre JW-W e1-7199", 3, true, "Eos Bre JW-W e1-7199", (decimal?)-1780.46875, (decimal?)452.28125, (decimal?)30115.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22255, Nebula.NebulaType.Planetary, "Eos Bre OI-S e4-9843", 3, true, "Eos Bre OI-S e4-9843", (decimal?)-1654.65625, (decimal?)985.4375, (decimal?)30507, (int)10 )); + AllOfThem.Add(new Nebula( 22256, Nebula.NebulaType.Planetary, "Eos Bre SE-Q e5-11213", 3, true, "Eos Bre SE-Q e5-11213", (decimal?)-2154.0625, (decimal?)682.625, (decimal?)30692.375, (int)10 )); + AllOfThem.Add(new Nebula( 22257, Nebula.NebulaType.Planetary, "Eos Bre TS-U e2-1914", 3, true, "Eos Bre TS-U e2-1914", (decimal?)-1444.40625, (decimal?)103.375, (decimal?)30284.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22259, Nebula.NebulaType.Planetary, "Eos Bre ZE-Z e170", 3, true, "Eos Bre ZE-Z e170", (decimal?)-1767.03125, (decimal?)891.8125, (decimal?)29941.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22260, Nebula.NebulaType.Planetary, "Eos Briae AF-R e4-2449", 3, true, "Eos Briae AF-R e4-2449", (decimal?)1004.46875, (decimal?)89.125, (decimal?)30500.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22262, Nebula.NebulaType.Planetary, "Eos Briae GW-N e6-3053", 3, true, "Eos Briae GW-N e6-3053", (decimal?)1051.09375, (decimal?)147.65625, (decimal?)30841.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22264, Nebula.NebulaType.Planetary, "Eos Briae UU-O e6-9805", 3, true, "Eos Briae UU-O e6-9805", (decimal?)727.21875, (decimal?)1020.03125, (decimal?)30830.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22265, Nebula.NebulaType.Planetary, "Eos Briae ZJ-R e4-1303", 3, true, "Eos Briae ZJ-R e4-1303", (decimal?)1150.375, (decimal?)207.25, (decimal?)30536.75, (int)10 )); + AllOfThem.Add(new Nebula( 22321, Nebula.NebulaType.Planetary, "Eudaitl SZ-O e6-245", 3, true, "Eudaitl SZ-O e6-245", (decimal?)-1867.90625, (decimal?)-1344.34375, (decimal?)34643.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22322, Nebula.NebulaType.Planetary, "Eudaitls NI-S e4-1448", 3, true, "Eudaitls NI-S e4-1448", (decimal?)-506.5, (decimal?)-1505.84375, (decimal?)34382.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22323, Nebula.NebulaType.Planetary, "Eudaitls NT-Q e5-157", 3, true, "Eudaitls NT-Q e5-157", (decimal?)-803.25, (decimal?)-1381.9375, (decimal?)34567.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22324, Nebula.NebulaType.Planetary, "Eudaitls QI-B e567", 3, true, "Eudaitls QI-B e567", (decimal?)-676.5, (decimal?)-1432.5625, (decimal?)33529.25, (int)10 )); + AllOfThem.Add(new Nebula( 22327, Nebula.NebulaType.Planetary, "Fleasi KX-U e2-850", 3, true, "Fleasi KX-U e2-850", (decimal?)-1307.09375, (decimal?)1530.5, (decimal?)34121.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22382, Nebula.NebulaType.Planetary, "Foijeou ND-S e4-299", 3, true, "Foijeou ND-S e4-299", (decimal?)-790.15625, (decimal?)-1738.90625, (decimal?)33098.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22383, Nebula.NebulaType.Planetary, "Foijie AK-A e93", 3, true, "Foijie AK-A e93", (decimal?)-1857.65625, (decimal?)-2224.6875, (decimal?)32243.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22536, Nebula.NebulaType.Planetary, "Hypiae Brou WE-R e4-24", 3, true, "Hypiae Brou WE-R e4-24", (decimal?)4120.65625, (decimal?)127.34375, (decimal?)35587.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22551, Nebula.NebulaType.Planetary, "Hypiae Phyloi VO-R e4-459", 3, true, "Hypiae Phyloi VO-R e4-459", (decimal?)2079.65625, (decimal?)1647.34375, (decimal?)33037, (int)10 )); + AllOfThem.Add(new Nebula( 22552, Nebula.NebulaType.Planetary, "Hypio Bloo LI-S e4-250", 3, true, "Hypio Bloo LI-S e4-250", (decimal?)466.3125, (decimal?)-1568.84375, (decimal?)33126.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22553, Nebula.NebulaType.Planetary, "Hypio Blou CW-V e2-1126", 3, true, "Hypio Blou CW-V e2-1126", (decimal?)-2246.09375, (decimal?)-298.5625, (decimal?)32761.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22554, Nebula.NebulaType.Planetary, "Hypio Blou DB-O e6-4613", 3, true, "Hypio Blou DB-O e6-4613", (decimal?)-1670.03125, (decimal?)-938.71875, (decimal?)33343.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22555, Nebula.NebulaType.Planetary, "Hypio Blou DB-O e6-5998", 3, true, "Hypio Blou DB-O e6-5998", (decimal?)-1797.25, (decimal?)-860.8125, (decimal?)33453.25, (int)10 )); + AllOfThem.Add(new Nebula( 22556, Nebula.NebulaType.Planetary, "Hypio Blou GH-V e2-3498", 3, true, "Hypio Blou GH-V e2-3498", (decimal?)-2480.25, (decimal?)-757.875, (decimal?)32809.75, (int)10 )); + AllOfThem.Add(new Nebula( 22557, Nebula.NebulaType.Planetary, "Hypio Blou GH-V e2-4941", 3, true, "Hypio Blou GH-V e2-4941", (decimal?)-2535.25, (decimal?)-788.03125, (decimal?)32751.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22558, Nebula.NebulaType.Planetary, "Hypio Blou GH-V e2-9922", 3, true, "Hypio Blou GH-V e2-9922", (decimal?)-2574.21875, (decimal?)-765.3125, (decimal?)32770.625, (int)10 )); + AllOfThem.Add(new Nebula( 22559, Nebula.NebulaType.Planetary, "Hypio Blou JI-S e4-5468", 3, true, "Hypio Blou JI-S e4-5468", (decimal?)-2394, (decimal?)-253.75, (decimal?)33028.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22560, Nebula.NebulaType.Planetary, "Hypio Blou MH-V e2-162", 3, true, "Hypio Blou MH-V e2-162", (decimal?)-1649.59375, (decimal?)-738.34375, (decimal?)32803.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22561, Nebula.NebulaType.Planetary, "Hypio Blou ND-S e4-5402", 3, true, "Hypio Blou ND-S e4-5402", (decimal?)-2070.65625, (decimal?)-483.90625, (decimal?)33155.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22562, Nebula.NebulaType.Planetary, "Hypio Blou NS-T e3-8139", 3, true, "Hypio Blou NS-T e3-8139", (decimal?)-1785.25, (decimal?)-645.125, (decimal?)32957.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22563, Nebula.NebulaType.Planetary, "Hypio Blou OI-S e4-8017", 3, true, "Hypio Blou OI-S e4-8017", (decimal?)-1654.59375, (decimal?)-296.53125, (decimal?)33105.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22564, Nebula.NebulaType.Planetary, "Hypio Blou PT-Q e5-367", 3, true, "Hypio Blou PT-Q e5-367", (decimal?)-1692.125, (decimal?)-35.15625, (decimal?)33310.875, (int)10 )); + AllOfThem.Add(new Nebula( 22565, Nebula.NebulaType.Planetary, "Hypio Blou QJ-Q e5-4068", 3, true, "Hypio Blou QJ-Q e5-4068", (decimal?)-2230.0625, (decimal?)-401.9375, (decimal?)33237.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22566, Nebula.NebulaType.Planetary, "Hypio Blou SE-Q e5-25", 3, true, "Hypio Blou SE-Q e5-25", (decimal?)-2196.6875, (decimal?)-532.65625, (decimal?)33284.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22567, Nebula.NebulaType.Planetary, "Hypio Blou VT-R e4-1486", 3, true, "Hypio Blou VT-R e4-1486", (decimal?)-1473.53125, (decimal?)-787.09375, (decimal?)33116.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22568, Nebula.NebulaType.Planetary, "Hypio Blou XU-P e5-3543", 3, true, "Hypio Blou XU-P e5-3543", (decimal?)-2062.0625, (decimal?)-868.03125, (decimal?)33216.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22569, Nebula.NebulaType.Planetary, "Hypio Blou ZK-X e1-4472", 3, true, "Hypio Blou ZK-X e1-4472", (decimal?)-2444.59375, (decimal?)-446.25, (decimal?)32637.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22570, Nebula.NebulaType.Planetary, "Hypio Bluae DQ-P e5-5510", 3, true, "Hypio Bluae DQ-P e5-5510", (decimal?)1197.09375, (decimal?)-1047.15625, (decimal?)33207.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22571, Nebula.NebulaType.Planetary, "Hypio Bluae FQ-Y e2457", 3, true, "Hypio Bluae FQ-Y e2457", (decimal?)736.75, (decimal?)-887.21875, (decimal?)32387.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22572, Nebula.NebulaType.Planetary, "Hypio Bluae GQ-Y e1415", 3, true, "Hypio Bluae GQ-Y e1415", (decimal?)1041.59375, (decimal?)-982.15625, (decimal?)32376.625, (int)10 )); + AllOfThem.Add(new Nebula( 22573, Nebula.NebulaType.Planetary, "Hypio Bluae NN-S e4-49", 3, true, "Hypio Bluae NN-S e4-49", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 22574, Nebula.NebulaType.Planetary, "Hypio Bluae OC-V e2-3148", 3, true, "Hypio Bluae OC-V e2-3148", (decimal?)898.1875, (decimal?)-931.25, (decimal?)32795.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22575, Nebula.NebulaType.Planetary, "Hypio Bluae RD-S e4-8772", 3, true, "Hypio Bluae RD-S e4-8772", (decimal?)1152.4375, (decimal?)-414.90625, (decimal?)33081.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22576, Nebula.NebulaType.Planetary, "Hypio Bluae VT-R e4-7455", 3, true, "Hypio Bluae VT-R e4-7455", (decimal?)1143.34375, (decimal?)-700.15625, (decimal?)33051.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22577, Nebula.NebulaType.Planetary, "Hypio Bluae XT-A e7899", 3, true, "Hypio Bluae XT-A e7899", (decimal?)812.03125, (decimal?)-597.46875, (decimal?)32216.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22638, Nebula.NebulaType.Planetary, "Hypoae Chrea JC-U e3-4523", 3, true, "Hypoae Chrea JC-U e3-4523", (decimal?)-4312.03125, (decimal?)1085.03125, (decimal?)32918.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22639, Nebula.NebulaType.Planetary, "Hypoae Chrea LS-T e3-1438", 3, true, "Hypoae Chrea LS-T e3-1438", (decimal?)-4560.1875, (decimal?)707.6875, (decimal?)32924.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22640, Nebula.NebulaType.Planetary, "Hypoae Chrea MS-T e3-6568", 3, true, "Hypoae Chrea MS-T e3-6568", (decimal?)-4422.5625, (decimal?)707.375, (decimal?)32864.5, (int)10 )); + AllOfThem.Add(new Nebula( 22641, Nebula.NebulaType.Planetary, "Hypoae Chrea ON-T e3-5029", 3, true, "Hypoae Chrea ON-T e3-5029", (decimal?)-4537.84375, (decimal?)566.75, (decimal?)32922.5, (int)10 )); + AllOfThem.Add(new Nebula( 22643, Nebula.NebulaType.Planetary, "Hypoae Chrea ZT-A e1358", 3, true, "Hypoae Chrea ZT-A e1358", (decimal?)-3933.09375, (decimal?)619.0625, (decimal?)32252.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22645, Nebula.NebulaType.Planetary, "Hypoe Blooe KT-Q e5-2164", 3, true, "Hypoe Blooe KT-Q e5-2164", (decimal?)-3838.9375, (decimal?)-1319.15625, (decimal?)33271.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22646, Nebula.NebulaType.Planetary, "Hypoe Bluae CH-U e3-4053", 3, true, "Hypoe Bluae CH-U e3-4053", (decimal?)-1204.875, (decimal?)-64.0625, (decimal?)32946.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22647, Nebula.NebulaType.Planetary, "Hypoe Bluae GM-V e2-9142", 3, true, "Hypoe Bluae GM-V e2-9142", (decimal?)-899.75, (decimal?)-540.59375, (decimal?)32755.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22648, Nebula.NebulaType.Planetary, "Hypoe Bluae JG-Y e808", 3, true, "Hypoe Bluae JG-Y e808", (decimal?)-529.3125, (decimal?)-1202.59375, (decimal?)32525.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22649, Nebula.NebulaType.Planetary, "Hypoe Bluae NC-V e2-1196", 3, true, "Hypoe Bluae NC-V e2-1196", (decimal?)-424.46875, (decimal?)-920.125, (decimal?)32758.625, (int)10 )); + AllOfThem.Add(new Nebula( 22650, Nebula.NebulaType.Planetary, "Hypoe Bluae QE-Q e5-7104", 3, true, "Hypoe Bluae QE-Q e5-7104", (decimal?)-1189.84375, (decimal?)-513.28125, (decimal?)33278.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22651, Nebula.NebulaType.Planetary, "Hypoe Bluae TY-S e3-1362", 3, true, "Hypoe Bluae TY-S e3-1362", (decimal?)-795.03125, (decimal?)-1293.875, (decimal?)32873.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22652, Nebula.NebulaType.Planetary, "Hypoe Bluae TZ-P e5-1439", 3, true, "Hypoe Bluae TZ-P e5-1439", (decimal?)-1103.65625, (decimal?)-713.4375, (decimal?)33255.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22732, Nebula.NebulaType.Planetary, "Hypou Chraei CR-N e6-6093", 3, true, "Hypou Chraei CR-N e6-6093", (decimal?)-3864.46875, (decimal?)34.90625, (decimal?)33365.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22733, Nebula.NebulaType.Planetary, "Hypou Chraei FG-X e1-2628", 3, true, "Hypou Chraei FG-X e1-2628", (decimal?)-3006.53125, (decimal?)745.65625, (decimal?)32637.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22734, Nebula.NebulaType.Planetary, "Hypou Chraei FG-Y e1518", 3, true, "Hypou Chraei FG-Y e1518", (decimal?)-3585.375, (decimal?)32.8125, (decimal?)32449.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22735, Nebula.NebulaType.Planetary, "Hypou Chraei HG-X e1-3732", 3, true, "Hypou Chraei HG-X e1-3732", (decimal?)-2682.59375, (decimal?)641.8125, (decimal?)32568.375, (int)10 )); + AllOfThem.Add(new Nebula( 22736, Nebula.NebulaType.Planetary, "Hypou Chraei JI-S e4-2281", 3, true, "Hypou Chraei JI-S e4-2281", (decimal?)-3696.40625, (decimal?)1054.5625, (decimal?)33113.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22737, Nebula.NebulaType.Planetary, "Hypou Chraei KH-V e2-7689", 3, true, "Hypou Chraei KH-V e2-7689", (decimal?)-3151.96875, (decimal?)470.53125, (decimal?)32781.375, (int)10 )); + AllOfThem.Add(new Nebula( 22738, Nebula.NebulaType.Planetary, "Hypou Chraei LW-W e1-8877", 3, true, "Hypou Chraei LW-W e1-8877", (decimal?)-2672.71875, (decimal?)431.21875, (decimal?)32620.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22739, Nebula.NebulaType.Planetary, "Hypou Chraei MX-U e2-3372", 3, true, "Hypou Chraei MX-U e2-3372", (decimal?)-3468.59375, (decimal?)186.25, (decimal?)32718.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22740, Nebula.NebulaType.Planetary, "Hypou Chraei PS-T e3-4425", 3, true, "Hypou Chraei PS-T e3-4425", (decimal?)-2727.65625, (decimal?)698.25, (decimal?)32919, (int)10 )); + AllOfThem.Add(new Nebula( 22741, Nebula.NebulaType.Planetary, "Hypou Chraei QT-R e4-4248", 3, true, "Hypou Chraei QT-R e4-4248", (decimal?)-3579.3125, (decimal?)490.71875, (decimal?)33107.875, (int)10 )); + AllOfThem.Add(new Nebula( 22742, Nebula.NebulaType.Planetary, "Hypou Chraei SE-Q e5-105", 3, true, "Hypou Chraei SE-Q e5-105", (decimal?)-3545.46875, (decimal?)746, (decimal?)33202.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22743, Nebula.NebulaType.Planetary, "Hypou Chraei VE-Q e5-5330", 3, true, "Hypou Chraei VE-Q e5-5330", (decimal?)-3020.125, (decimal?)627.6875, (decimal?)33222.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22776, Nebula.NebulaType.Planetary, "Hypuae Briae BV-Y e3851", 3, true, "Hypuae Briae BV-Y e3851", (decimal?)449.3125, (decimal?)521.09375, (decimal?)34970.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22777, Nebula.NebulaType.Planetary, "Hypuae Briae DL-P e5-55", 3, true, "Hypuae Briae DL-P e5-55", (decimal?)847.34375, (decimal?)36.9375, (decimal?)35763.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22778, Nebula.NebulaType.Planetary, "Hypuae Briae LC-U e3-152", 3, true, "Hypuae Briae LC-U e3-152", (decimal?)1126.40625, (decimal?)1082.03125, (decimal?)35493.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22779, Nebula.NebulaType.Planetary, "Hypuae Briae OX-U e2-582", 3, true, "Hypuae Briae OX-U e2-582", (decimal?)619.78125, (decimal?)152.21875, (decimal?)35405.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22780, Nebula.NebulaType.Planetary, "Hypuae Briae VD-B e962", 3, true, "Hypuae Briae VD-B e962", (decimal?)1166.03125, (decimal?)953.96875, (decimal?)34893.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22781, Nebula.NebulaType.Planetary, "Hypuae Chraei AV-P e5-4300", 3, true, "Hypuae Chraei AV-P e5-4300", (decimal?)-1520.0625, (decimal?)309.5, (decimal?)33304.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22782, Nebula.NebulaType.Planetary, "Hypuae Chraei EM-V e2-708", 3, true, "Hypuae Chraei EM-V e2-708", (decimal?)-2467.875, (decimal?)769.28125, (decimal?)32822.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22783, Nebula.NebulaType.Planetary, "Hypuae Chraei FG-X e1-5385", 3, true, "Hypuae Chraei FG-X e1-5385", (decimal?)-1718.21875, (decimal?)704.1875, (decimal?)32556.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22784, Nebula.NebulaType.Planetary, "Hypuae Chraei FW-N e6-280", 3, true, "Hypuae Chraei FW-N e6-280", (decimal?)-1754.9375, (decimal?)149, (decimal?)33353.625, (int)10 )); + AllOfThem.Add(new Nebula( 22785, Nebula.NebulaType.Planetary, "Hypuae Chraei JM-V e2-4602", 3, true, "Hypuae Chraei JM-V e2-4602", (decimal?)-1767.15625, (decimal?)647.46875, (decimal?)32745.75, (int)10 )); + AllOfThem.Add(new Nebula( 22786, Nebula.NebulaType.Planetary, "Hypuae Chraei JM-V e2-8539", 3, true, "Hypuae Chraei JM-V e2-8539", (decimal?)-1775.15625, (decimal?)719.96875, (decimal?)32756.625, (int)10 )); + AllOfThem.Add(new Nebula( 22787, Nebula.NebulaType.Planetary, "Hypuae Chraei LX-U e2-1756", 3, true, "Hypuae Chraei LX-U e2-1756", (decimal?)-2327.65625, (decimal?)191.40625, (decimal?)32732.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22788, Nebula.NebulaType.Planetary, "Hypuae Chraei UU-O e6-1745", 3, true, "Hypuae Chraei UU-O e6-1745", (decimal?)-1883.5625, (decimal?)937.3125, (decimal?)33492.5, (int)10 )); + AllOfThem.Add(new Nebula( 22789, Nebula.NebulaType.Planetary, "Hypuae Chraei VT-A e2404", 3, true, "Hypuae Chraei VT-A e2404", (decimal?)-2126.1875, (decimal?)664.625, (decimal?)32277.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22790, Nebula.NebulaType.Planetary, "Hypuae Chraei WE-R e4-3683", 3, true, "Hypuae Chraei WE-R e4-3683", (decimal?)-2148.59375, (decimal?)127.6875, (decimal?)33099.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22791, Nebula.NebulaType.Planetary, "Hypuae Chraei WT-A e3037", 3, true, "Hypuae Chraei WT-A e3037", (decimal?)-1957.875, (decimal?)746.46875, (decimal?)32276.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22792, Nebula.NebulaType.Planetary, "Hypuae Chraei XJ-Z e3588", 3, true, "Hypuae Chraei XJ-Z e3588", (decimal?)-1682.09375, (decimal?)958.40625, (decimal?)32514.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22793, Nebula.NebulaType.Planetary, "Hypuae Phyloea MX-T e3-18", 3, true, "Hypuae Phyloea MX-T e3-18", (decimal?)1002.21875, (decimal?)2076.0625, (decimal?)32949.5, (int)10 )); + AllOfThem.Add(new Nebula( 22794, Nebula.NebulaType.Planetary, "Hypuae Phyloea YJ-R e4-1223", 3, true, "Hypuae Phyloea YJ-R e4-1223", (decimal?)901.625, (decimal?)1551.875, (decimal?)33060.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22803, Nebula.NebulaType.Planetary, "Hyuqau IG-Y e82", 3, true, "Hyuqau IG-Y e82", (decimal?)-566.59375, (decimal?)-1153.4375, (decimal?)35045.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22806, Nebula.NebulaType.Planetary, "Hyuqeae FB-W e2-119", 3, true, "Hyuqeae FB-W e2-119", (decimal?)2339.71875, (decimal?)-152.21875, (decimal?)35285.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22807, Nebula.NebulaType.Planetary, "Hyuqeae MT-Q e5-4335", 3, true, "Hyuqeae MT-Q e5-4335", (decimal?)1602.375, (decimal?)-154.15625, (decimal?)35859.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22808, Nebula.NebulaType.Planetary, "Hyuqeae ST-A e3517", 3, true, "Hyuqeae ST-A e3517", (decimal?)1343.75, (decimal?)-514.84375, (decimal?)34932.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22809, Nebula.NebulaType.Planetary, "Hyuqeae SY-A e7294", 3, true, "Hyuqeae SY-A e7294", (decimal?)1614.03125, (decimal?)-394.8125, (decimal?)34862.125, (int)10 )); + AllOfThem.Add(new Nebula( 22810, Nebula.NebulaType.Planetary, "Hyuqeae TU-O e6-239", 3, true, "Hyuqeae TU-O e6-239", (decimal?)1717.21875, (decimal?)-338.96875, (decimal?)35980.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22818, Nebula.NebulaType.Planetary, "Hyuqo BF-Z e8141", 3, true, "Hyuqo BF-Z e8141", (decimal?)1102.1875, (decimal?)-363.15625, (decimal?)35021.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22827, Nebula.NebulaType.Planetary, "Hyuqu FW-V e2-107", 3, true, "Hyuqu FW-V e2-107", (decimal?)3447.75, (decimal?)-302.09375, (decimal?)35330.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22828, Nebula.NebulaType.Planetary, "Hyuqu NS-T e3-123", 3, true, "Hyuqu NS-T e3-123", (decimal?)3319.1875, (decimal?)-575.125, (decimal?)35423.125, (int)10 )); + AllOfThem.Add(new Nebula( 22829, Nebula.NebulaType.Planetary, "Hyuqu TJ-Z e436", 3, true, "Hyuqu TJ-Z e436", (decimal?)2680.875, (decimal?)-336.125, (decimal?)34975.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22860, Nebula.NebulaType.Planetary, "Iwaitt EL-X e1-9244", 3, true, "Iwaitt EL-X e1-9244", (decimal?)-4100.625, (decimal?)-384.71875, (decimal?)32692.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22861, Nebula.NebulaType.Planetary, "Iwaitt JG-Y e833", 3, true, "Iwaitt JG-Y e833", (decimal?)-4247.15625, (decimal?)-1294.15625, (decimal?)32417.125, (int)10 )); + AllOfThem.Add(new Nebula( 22863, Nebula.NebulaType.Planetary, "Iwaitt PY-R e4-553", 3, true, "Iwaitt PY-R e4-553", (decimal?)-4556.21875, (decimal?)-601.5, (decimal?)33079.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22864, Nebula.NebulaType.Planetary, "Iwaitt RD-S e4-2546", 3, true, "Iwaitt RD-S e4-2546", (decimal?)-4040.5, (decimal?)-431.09375, (decimal?)33031.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22867, Nebula.NebulaType.Planetary, "Iwaitt ZJ-Z e4", 3, true, "Iwaitt ZJ-Z e4", (decimal?)-4032.875, (decimal?)-343.40625, (decimal?)32413.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22868, Nebula.NebulaType.Planetary, "Iwhaind BL-X e1-9313", 3, true, "Iwhaind BL-X e1-9313", (decimal?)-3399.96875, (decimal?)-436.84375, (decimal?)32584.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22869, Nebula.NebulaType.Planetary, "Iwhaind CF-A e3490", 3, true, "Iwhaind CF-A e3490", (decimal?)-3233.3125, (decimal?)-1093.84375, (decimal?)32249.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22870, Nebula.NebulaType.Planetary, "Iwhaind EQ-Y e5150", 3, true, "Iwhaind EQ-Y e5150", (decimal?)-3167.5, (decimal?)-968.78125, (decimal?)32533.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22871, Nebula.NebulaType.Planetary, "Iwhaind EV-Y e3153", 3, true, "Iwhaind EV-Y e3153", (decimal?)-2812.5, (decimal?)-754.125, (decimal?)32531.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22872, Nebula.NebulaType.Planetary, "Iwhaind GR-V e2-2510", 3, true, "Iwhaind GR-V e2-2510", (decimal?)-3174.875, (decimal?)-447.71875, (decimal?)32723.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22873, Nebula.NebulaType.Planetary, "Iwhaind HB-X e1-6193", 3, true, "Iwhaind HB-X e1-6193", (decimal?)-3087.21875, (decimal?)-793.625, (decimal?)32668.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22874, Nebula.NebulaType.Planetary, "Iwhaind HH-V e2-2455", 3, true, "Iwhaind HH-V e2-2455", (decimal?)-3701.5, (decimal?)-793.90625, (decimal?)32736.125, (int)10 )); + AllOfThem.Add(new Nebula( 22875, Nebula.NebulaType.Planetary, "Iwhaind MN-S e4-6009", 3, true, "Iwhaind MN-S e4-6009", (decimal?)-2907.09375, (decimal?)-108.6875, (decimal?)33140.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22876, Nebula.NebulaType.Planetary, "Iwhaind OS-T e3-8052", 3, true, "Iwhaind OS-T e3-8052", (decimal?)-2895.21875, (decimal?)-654.46875, (decimal?)32892.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22877, Nebula.NebulaType.Planetary, "Iwhaind OT-Q e5-6929", 3, true, "Iwhaind OT-Q e5-6929", (decimal?)-3172.125, (decimal?)-145.09375, (decimal?)33305.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22878, Nebula.NebulaType.Planetary, "Iwhaind QN-T e3-143", 3, true, "Iwhaind QN-T e3-143", (decimal?)-2851.1875, (decimal?)-775.1875, (decimal?)32857.25, (int)10 )); + AllOfThem.Add(new Nebula( 22879, Nebula.NebulaType.Planetary, "Iwhaind SO-Q e5-516", 3, true, "Iwhaind SO-Q e5-516", (decimal?)-2803.15625, (decimal?)-197.03125, (decimal?)33276.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22880, Nebula.NebulaType.Planetary, "Iwhaind WJ-Z e374", 3, true, "Iwhaind WJ-Z e374", (decimal?)-3125.1875, (decimal?)-207.5625, (decimal?)32474.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22881, Nebula.NebulaType.Planetary, "Iwhaind YA-W e2-8581", 3, true, "Iwhaind YA-W e2-8581", (decimal?)-3877.5, (decimal?)-149.71875, (decimal?)32730.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23049, Nebula.NebulaType.Planetary, "Lasao AQ-P e5-2589", 3, true, "Lasao AQ-P e5-2589", (decimal?)5816.90625, (decimal?)199.34375, (decimal?)33297.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23050, Nebula.NebulaType.Planetary, "Lasao BL-P e5-447", 3, true, "Lasao BL-P e5-447", (decimal?)5634.8125, (decimal?)31.8125, (decimal?)33289.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23051, Nebula.NebulaType.Planetary, "Lasao CB-X e1-1399", 3, true, "Lasao CB-X e1-1399", (decimal?)5161.71875, (decimal?)480.28125, (decimal?)32619.875, (int)10 )); + AllOfThem.Add(new Nebula( 23053, Nebula.NebulaType.Planetary, "Lasao ER-N e6-315", 3, true, "Lasao ER-N e6-315", (decimal?)5440.25, (decimal?)-10.28125, (decimal?)33410.125, (int)10 )); + AllOfThem.Add(new Nebula( 23055, Nebula.NebulaType.Planetary, "Lasao VU-P e5-521", 3, true, "Lasao VU-P e5-521", (decimal?)5304.5625, (decimal?)405.28125, (decimal?)33201.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23058, Nebula.NebulaType.Planetary, "Lasi AK-A e3590", 3, true, "Lasi AK-A e3590", (decimal?)4533.15625, (decimal?)423.3125, (decimal?)32260.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23059, Nebula.NebulaType.Planetary, "Lasi AL-O e6-162", 3, true, "Lasi AL-O e6-162", (decimal?)4860.59375, (decimal?)714.1875, (decimal?)33346.5, (int)10 )); + AllOfThem.Add(new Nebula( 23060, Nebula.NebulaType.Planetary, "Lasi CW-N e6-8426", 3, true, "Lasi CW-N e6-8426", (decimal?)4106.71875, (decimal?)144.1875, (decimal?)33408.75, (int)10 )); + AllOfThem.Add(new Nebula( 23061, Nebula.NebulaType.Planetary, "Lasi HW-W e1-2538", 3, true, "Lasi HW-W e1-2538", (decimal?)4381.75, (decimal?)327.09375, (decimal?)32540.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23062, Nebula.NebulaType.Planetary, "Lasi IL-Y e7060", 3, true, "Lasi IL-Y e7060", (decimal?)4823.53125, (decimal?)282.0625, (decimal?)32487.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23063, Nebula.NebulaType.Planetary, "Lasi JM-W e1-7462", 3, true, "Lasi JM-W e1-7462", (decimal?)3998.59375, (decimal?)116.28125, (decimal?)32683.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23064, Nebula.NebulaType.Planetary, "Lasi OS-U e2-5226", 3, true, "Lasi OS-U e2-5226", (decimal?)4127.09375, (decimal?)130.75, (decimal?)32850.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23065, Nebula.NebulaType.Planetary, "Lasi QY-S e3-5788", 3, true, "Lasi QY-S e3-5788", (decimal?)3798.5625, (decimal?)-21.46875, (decimal?)32963.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23066, Nebula.NebulaType.Planetary, "Lasi RY-R e4-3131", 3, true, "Lasi RY-R e4-3131", (decimal?)4588.8125, (decimal?)692.53125, (decimal?)33090.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23067, Nebula.NebulaType.Planetary, "Lasi VU-P e5-2051", 3, true, "Lasi VU-P e5-2051", (decimal?)4009.6875, (decimal?)377.3125, (decimal?)33280.625, (int)10 )); + AllOfThem.Add(new Nebula( 23068, Nebula.NebulaType.Planetary, "Lasi WF-O e6-2749", 3, true, "Lasi WF-O e6-2749", (decimal?)3846.25, (decimal?)557.90625, (decimal?)33363.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23069, Nebula.NebulaType.Planetary, "Lasi WF-O e6-3970", 3, true, "Lasi WF-O e6-3970", (decimal?)3887.5625, (decimal?)483.375, (decimal?)33458.625, (int)10 )); + AllOfThem.Add(new Nebula( 23070, Nebula.NebulaType.Planetary, "Lasi YJ-A e10030", 3, true, "Lasi YJ-A e10030", (decimal?)4246.375, (decimal?)417.71875, (decimal?)32277.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23071, Nebula.NebulaType.Planetary, "Lasi ZT-A e3983", 3, true, "Lasi ZT-A e3983", (decimal?)5007.1875, (decimal?)667.65625, (decimal?)32360.125, (int)10 )); + AllOfThem.Add(new Nebula( 23072, Nebula.NebulaType.Planetary, "Lasiae AF-A e466", 3, true, "Lasiae AF-A e466", (decimal?)-1016, (decimal?)283.96875, (decimal?)32332.125, (int)10 )); + AllOfThem.Add(new Nebula( 23073, Nebula.NebulaType.Planetary, "Lasiae CG-X e1-4277", 3, true, "Lasiae CG-X e1-4277", (decimal?)-976.15625, (decimal?)631.09375, (decimal?)32605.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23074, Nebula.NebulaType.Planetary, "Lasiae EB-X e1-5836", 3, true, "Lasiae EB-X e1-5836", (decimal?)-942.3125, (decimal?)517.9375, (decimal?)32535.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23075, Nebula.NebulaType.Planetary, "Lasiae IW-W e1-555", 3, true, "Lasiae IW-W e1-555", (decimal?)-638.25, (decimal?)396.40625, (decimal?)32591.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23076, Nebula.NebulaType.Planetary, "Lasiae XF-O e6-7405", 3, true, "Lasiae XF-O e6-7405", (decimal?)-1057.625, (decimal?)564.6875, (decimal?)33461.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23077, Nebula.NebulaType.Planetary, "Lasiae XU-P e5-6918", 3, true, "Lasiae XU-P e5-6918", (decimal?)-797, (decimal?)390.8125, (decimal?)33315.125, (int)10 )); + AllOfThem.Add(new Nebula( 23078, Nebula.NebulaType.Planetary, "Lasoae AP-A e6892", 3, true, "Lasoae AP-A e6892", (decimal?)1030.78125, (decimal?)502.03125, (decimal?)32333.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23079, Nebula.NebulaType.Planetary, "Lasoae GR-V e2-3553", 3, true, "Lasoae GR-V e2-3553", (decimal?)638.5, (decimal?)810.1875, (decimal?)32819.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23080, Nebula.NebulaType.Planetary, "Lasoae JN-S e4-518", 3, true, "Lasoae JN-S e4-518", (decimal?)493.65625, (decimal?)1122.5, (decimal?)33051.5, (int)10 )); + AllOfThem.Add(new Nebula( 23081, Nebula.NebulaType.Planetary, "Lasoae OD-S e4-353", 3, true, "Lasoae OD-S e4-353", (decimal?)576.25, (decimal?)780.90625, (decimal?)33070.625, (int)10 )); + AllOfThem.Add(new Nebula( 23082, Nebula.NebulaType.Planetary, "Lasoae PD-S e4-5247", 3, true, "Lasoae PD-S e4-5247", (decimal?)809.96875, (decimal?)910.1875, (decimal?)33049.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23083, Nebula.NebulaType.Planetary, "Lasoae RY-R e4-7014", 3, true, "Lasoae RY-R e4-7014", (decimal?)856.0625, (decimal?)714.71875, (decimal?)33039.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23084, Nebula.NebulaType.Planetary, "Lasoae SI-T e3-2093", 3, true, "Lasoae SI-T e3-2093", (decimal?)1029.5, (decimal?)406.21875, (decimal?)32876.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23085, Nebula.NebulaType.Planetary, "Lasoae SJ-Q e5-3367", 3, true, "Lasoae SJ-Q e5-3367", (decimal?)680.65625, (decimal?)779.65625, (decimal?)33310.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23086, Nebula.NebulaType.Planetary, "Lasoae TI-B e1936", 3, true, "Lasoae TI-B e1936", (decimal?)1154.90625, (decimal?)1106.5, (decimal?)32284.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23087, Nebula.NebulaType.Planetary, "Lasoae UD-B e455", 3, true, "Lasoae UD-B e455", (decimal?)1041.4375, (decimal?)961.46875, (decimal?)32315.625, (int)10 )); + AllOfThem.Add(new Nebula( 23088, Nebula.NebulaType.Planetary, "Lasoae UD-B e6084", 3, true, "Lasoae UD-B e6084", (decimal?)905.40625, (decimal?)1073.25, (decimal?)32274.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23089, Nebula.NebulaType.Planetary, "Lasoae UE-Q e5-7988", 3, true, "Lasoae UE-Q e5-7988", (decimal?)662.90625, (decimal?)667.53125, (decimal?)33308.125, (int)10 )); + AllOfThem.Add(new Nebula( 23090, Nebula.NebulaType.Planetary, "Lasou AG-O e6-10020", 3, true, "Lasou AG-O e6-10020", (decimal?)1869, (decimal?)461.5625, (decimal?)33414.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23091, Nebula.NebulaType.Planetary, "Lasou EQ-Y e315", 3, true, "Lasou EQ-Y e315", (decimal?)1882.25, (decimal?)408.875, (decimal?)32490.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23092, Nebula.NebulaType.Planetary, "Lasou GH-V e2-9605", 3, true, "Lasou GH-V e2-9605", (decimal?)1295.40625, (decimal?)503.03125, (decimal?)32743.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23093, Nebula.NebulaType.Planetary, "Lasou RU-O e6-2229", 3, true, "Lasou RU-O e6-2229", (decimal?)1440.9375, (decimal?)1006.90625, (decimal?)33439.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23094, Nebula.NebulaType.Planetary, "Lasou VJ-Q e5-4102", 3, true, "Lasou VJ-Q e5-4102", (decimal?)2454.90625, (decimal?)783.375, (decimal?)33227.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23095, Nebula.NebulaType.Planetary, "Lasou XT-A e4321", 3, true, "Lasou XT-A e4321", (decimal?)2046.71875, (decimal?)732.1875, (decimal?)32315.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23096, Nebula.NebulaType.Planetary, "Lasou ZZ-Y e3048", 3, true, "Lasou ZZ-Y e3048", (decimal?)1791.28125, (decimal?)638.6875, (decimal?)32421.375, (int)10 )); + AllOfThem.Add(new Nebula( 23098, Nebula.NebulaType.Planetary, "Lasuae CQ-P e5-7958", 3, true, "Lasuae CQ-P e5-7958", (decimal?)3472.625, (decimal?)156.78125, (decimal?)33227.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23099, Nebula.NebulaType.Planetary, "Lasuae EL-P e5-9256", 3, true, "Lasuae EL-P e5-9256", (decimal?)3504.4375, (decimal?)18.40625, (decimal?)33230.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23100, Nebula.NebulaType.Planetary, "Lasuae HW-N e6-167", 3, true, "Lasuae HW-N e6-167", (decimal?)3749.03125, (decimal?)244.375, (decimal?)33465.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23101, Nebula.NebulaType.Planetary, "Lasuae HW-N e6-8330", 3, true, "Lasuae HW-N e6-8330", (decimal?)3630.5625, (decimal?)278.5, (decimal?)33476.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23102, Nebula.NebulaType.Planetary, "Lasuae IM-V e2-5101", 3, true, "Lasuae IM-V e2-5101", (decimal?)3195.65625, (decimal?)758.9375, (decimal?)32742.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23103, Nebula.NebulaType.Planetary, "Lasuae PC-V e2-8471", 3, true, "Lasuae PC-V e2-8471", (decimal?)3632.125, (decimal?)392.65625, (decimal?)32695.75, (int)10 )); + AllOfThem.Add(new Nebula( 23104, Nebula.NebulaType.Planetary, "Lasuae RN-T e3-504", 3, true, "Lasuae RN-T e3-504", (decimal?)3747.71875, (decimal?)465.53125, (decimal?)32860.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23105, Nebula.NebulaType.Planetary, "Lasuae SZ-P e5-2068", 3, true, "Lasuae SZ-P e5-2068", (decimal?)2547.84375, (decimal?)535.8125, (decimal?)33215.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23106, Nebula.NebulaType.Planetary, "Lasuae TO-R e4-217", 3, true, "Lasuae TO-R e4-217", (decimal?)3029.46875, (decimal?)322.25, (decimal?)33015.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23107, Nebula.NebulaType.Planetary, "Lasuae VO-R e4-2092", 3, true, "Lasuae VO-R e4-2092", (decimal?)3414.90625, (decimal?)425.5625, (decimal?)33076.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23108, Nebula.NebulaType.Planetary, "Lasuae XO-A e5532", 3, true, "Lasuae XO-A e5532", (decimal?)3037.15625, (decimal?)574.40625, (decimal?)32324.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23109, Nebula.NebulaType.Planetary, "Lasuae XO-A e6443", 3, true, "Lasuae XO-A e6443", (decimal?)3055.375, (decimal?)604, (decimal?)32318.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23110, Nebula.NebulaType.Planetary, "Lasuae YK-O e6-2452", 3, true, "Lasuae YK-O e6-2452", (decimal?)3252.75, (decimal?)665.21875, (decimal?)33397, (int)10 )); + AllOfThem.Add(new Nebula( 23111, Nebula.NebulaType.Planetary, "Lasuae ZJ-A e6818", 3, true, "Lasuae ZJ-A e6818", (decimal?)3053.375, (decimal?)353.4375, (decimal?)32222.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23186, Nebula.NebulaType.Planetary, "Lyaisaa FW-V e2-2523", 3, true, "Lyaisaa FW-V e2-2523", (decimal?)-1770.15625, (decimal?)978.46875, (decimal?)31426.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23187, Nebula.NebulaType.Planetary, "Lyaisaa FW-W e1-3925", 3, true, "Lyaisaa FW-W e1-3925", (decimal?)-2401.59375, (decimal?)343.59375, (decimal?)31271.25, (int)10 )); + AllOfThem.Add(new Nebula( 23188, Nebula.NebulaType.Planetary, "Lyaisaa NX-T e3-5541", 3, true, "Lyaisaa NX-T e3-5541", (decimal?)-1439.84375, (decimal?)923.5625, (decimal?)31647, (int)10 )); + AllOfThem.Add(new Nebula( 23189, Nebula.NebulaType.Planetary, "Lyaisaa PS-U e2-2659", 3, true, "Lyaisaa PS-U e2-2659", (decimal?)-2074.46875, (decimal?)5.34375, (decimal?)31428.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23190, Nebula.NebulaType.Planetary, "Lyaisaa RE-Q e5-333", 3, true, "Lyaisaa RE-Q e5-333", (decimal?)-2438.53125, (decimal?)732.59375, (decimal?)32044.25, (int)10 )); + AllOfThem.Add(new Nebula( 23191, Nebula.NebulaType.Planetary, "Lyaisaa ST-A e3288", 3, true, "Lyaisaa ST-A e3288", (decimal?)-2572.40625, (decimal?)741.875, (decimal?)30997.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23192, Nebula.NebulaType.Planetary, "Lyaisaa SY-A e8383", 3, true, "Lyaisaa SY-A e8383", (decimal?)-2192.46875, (decimal?)866.53125, (decimal?)31057.375, (int)10 )); + AllOfThem.Add(new Nebula( 23193, Nebula.NebulaType.Planetary, "Lyaisaa UJ-R e4-4590", 3, true, "Lyaisaa UJ-R e4-4590", (decimal?)-2243.0625, (decimal?)270.34375, (decimal?)31833.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23194, Nebula.NebulaType.Planetary, "Lyaisaa WJ-Z e6616", 3, true, "Lyaisaa WJ-Z e6616", (decimal?)-1832.09375, (decimal?)997.8125, (decimal?)31198.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23195, Nebula.NebulaType.Planetary, "Lyaisaa WJ-Z e8792", 3, true, "Lyaisaa WJ-Z e8792", (decimal?)-1953.0625, (decimal?)936.28125, (decimal?)31207.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23196, Nebula.NebulaType.Planetary, "Lyaisaa WJ-Z e8907", 3, true, "Lyaisaa WJ-Z e8907", (decimal?)-1932.65625, (decimal?)1079.40625, (decimal?)31179.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23197, Nebula.NebulaType.Planetary, "Lyaisaa WT-A e356", 3, true, "Lyaisaa WT-A e356", (decimal?)-1865.71875, (decimal?)708.71875, (decimal?)30960.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23198, Nebula.NebulaType.Planetary, "Lyaisaa WT-A e4361", 3, true, "Lyaisaa WT-A e4361", (decimal?)-1975.84375, (decimal?)770.53125, (decimal?)31041.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23199, Nebula.NebulaType.Planetary, "Lyaisaa XK-O e6-3373", 3, true, "Lyaisaa XK-O e6-3373", (decimal?)-1991.28125, (decimal?)711.40625, (decimal?)32172.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23200, Nebula.NebulaType.Planetary, "Lyaisaa ZE-R e4-3763", 3, true, "Lyaisaa ZE-R e4-3763", (decimal?)-1750.5625, (decimal?)26.96875, (decimal?)31769.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23201, Nebula.NebulaType.Planetary, "Lyaisaa ZZ-P e5-7600", 3, true, "Lyaisaa ZZ-P e5-7600", (decimal?)-1480.03125, (decimal?)503.375, (decimal?)32051.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23202, Nebula.NebulaType.Planetary, "Lyaisae AQ-Y e3191", 3, true, "Lyaisae AQ-Y e3191", (decimal?)1244.53125, (decimal?)421.96875, (decimal?)31221.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23203, Nebula.NebulaType.Planetary, "Lyaisae AW-V e2-4648", 3, true, "Lyaisae AW-V e2-4648", (decimal?)1364.90625, (decimal?)1073.9375, (decimal?)31503.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23204, Nebula.NebulaType.Planetary, "Lyaisae CG-X e1-9120", 3, true, "Lyaisae CG-X e1-9120", (decimal?)1573.78125, (decimal?)738.25, (decimal?)31288.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23205, Nebula.NebulaType.Planetary, "Lyaisae FW-V e2-3940", 3, true, "Lyaisae FW-V e2-3940", (decimal?)2102, (decimal?)965.21875, (decimal?)31435.25, (int)10 )); + AllOfThem.Add(new Nebula( 23206, Nebula.NebulaType.Planetary, "Lyaisae HA-A e3363", 3, true, "Lyaisae HA-A e3363", (decimal?)2438.125, (decimal?)100.6875, (decimal?)31072.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23207, Nebula.NebulaType.Planetary, "Lyaisae IG-Y e3547", 3, true, "Lyaisae IG-Y e3547", (decimal?)1982.875, (decimal?)84.875, (decimal?)31112.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23208, Nebula.NebulaType.Planetary, "Lyaisae LT-Q e5-619", 3, true, "Lyaisae LT-Q e5-619", (decimal?)1419.8125, (decimal?)1131.59375, (decimal?)31987.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23209, Nebula.NebulaType.Planetary, "Lyaisae PI-S e4-1894", 3, true, "Lyaisae PI-S e4-1894", (decimal?)2432.5625, (decimal?)1042.15625, (decimal?)31746.25, (int)10 )); + AllOfThem.Add(new Nebula( 23210, Nebula.NebulaType.Planetary, "Lyaisae PI-S e4-2859", 3, true, "Lyaisae PI-S e4-2859", (decimal?)2463.3125, (decimal?)1061.40625, (decimal?)31871.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23211, Nebula.NebulaType.Planetary, "Lyaisae PS-U e2-3388", 3, true, "Lyaisae PS-U e2-3388", (decimal?)1746.03125, (decimal?)27.65625, (decimal?)31524.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23212, Nebula.NebulaType.Planetary, "Lyaisae QE-Q e5-728", 3, true, "Lyaisae QE-Q e5-728", (decimal?)1297.03125, (decimal?)723.1875, (decimal?)32054.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23213, Nebula.NebulaType.Planetary, "Lyaisae SY-S e3-581", 3, true, "Lyaisae SY-S e3-581", (decimal?)1601.28125, (decimal?)127.65625, (decimal?)31610.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23214, Nebula.NebulaType.Planetary, "Lyaisae WK-O e6-5058", 3, true, "Lyaisae WK-O e6-5058", (decimal?)1605.125, (decimal?)770.65625, (decimal?)32197.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23227, Nebula.NebulaType.Planetary, "Lyaisoi AA-Z e7275", 3, true, "Lyaisoi AA-Z e7275", (decimal?)-3210.75, (decimal?)712.40625, (decimal?)31201.25, (int)10 )); + AllOfThem.Add(new Nebula( 23228, Nebula.NebulaType.Planetary, "Lyaisoi BK-A e2492", 3, true, "Lyaisoi BK-A e2492", (decimal?)-2997.5625, (decimal?)427.0625, (decimal?)31062.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23229, Nebula.NebulaType.Planetary, "Lyaisoi DW-V e2-2522", 3, true, "Lyaisoi DW-V e2-2522", (decimal?)-3366.46875, (decimal?)1067.9375, (decimal?)31487.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23230, Nebula.NebulaType.Planetary, "Lyaisoi EB-O e6-1314", 3, true, "Lyaisoi EB-O e6-1314", (decimal?)-2853.9375, (decimal?)356.9375, (decimal?)32081.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23231, Nebula.NebulaType.Planetary, "Lyaisoi JC-U e3-5919", 3, true, "Lyaisoi JC-U e3-5919", (decimal?)-3022.75, (decimal?)1007.15625, (decimal?)31703.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23233, Nebula.NebulaType.Planetary, "Lyaisoi ON-T e3-8355", 3, true, "Lyaisoi ON-T e3-8355", (decimal?)-3172.5625, (decimal?)470.875, (decimal?)31597.25, (int)10 )); + AllOfThem.Add(new Nebula( 23235, Nebula.NebulaType.Planetary, "Lyaisoi RT-Q e5-3559", 3, true, "Lyaisoi RT-Q e5-3559", (decimal?)-2784.0625, (decimal?)1108.375, (decimal?)32035.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23236, Nebula.NebulaType.Planetary, "Lyaisoi SE-Q e5-6952", 3, true, "Lyaisoi SE-Q e5-6952", (decimal?)-3540.96875, (decimal?)738.9375, (decimal?)31899.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23237, Nebula.NebulaType.Planetary, "Lyaisoi VJ-Q e5-1910", 3, true, "Lyaisoi VJ-Q e5-1910", (decimal?)-2697.71875, (decimal?)872.15625, (decimal?)32007, (int)10 )); + AllOfThem.Add(new Nebula( 23238, Nebula.NebulaType.Planetary, "Lyaisoo AW-N e6-1338", 3, true, "Lyaisoo AW-N e6-1338", (decimal?)3918.90625, (decimal?)220.65625, (decimal?)32160.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23241, Nebula.NebulaType.Planetary, "Lyaisoo FW-N e6-2814", 3, true, "Lyaisoo FW-N e6-2814", (decimal?)4611.25, (decimal?)206.8125, (decimal?)32207.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23242, Nebula.NebulaType.Planetary, "Lyaisoo IS-T e3-3718", 3, true, "Lyaisoo IS-T e3-3718", (decimal?)3776.59375, (decimal?)668.03125, (decimal?)31655.875, (int)10 )); + AllOfThem.Add(new Nebula( 23244, Nebula.NebulaType.Planetary, "Lyaisoo KX-U e2-2420", 3, true, "Lyaisoo KX-U e2-2420", (decimal?)3861.625, (decimal?)245.03125, (decimal?)31543.125, (int)10 )); + AllOfThem.Add(new Nebula( 23249, Nebula.NebulaType.Planetary, "Lyaisoo OD-T e3-574", 3, true, "Lyaisoo OD-T e3-574", (decimal?)3779.71875, (decimal?)183.15625, (decimal?)31716.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23255, Nebula.NebulaType.Planetary, "Lyaisua AW-V e2-6437", 3, true, "Lyaisua AW-V e2-6437", (decimal?)-1204.71875, (decimal?)1093.96875, (decimal?)31419.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23256, Nebula.NebulaType.Planetary, "Lyaisua BK-A e487", 3, true, "Lyaisua BK-A e487", (decimal?)-392.65625, (decimal?)448.40625, (decimal?)31025.875, (int)10 )); + AllOfThem.Add(new Nebula( 23257, Nebula.NebulaType.Planetary, "Lyaisua CW-V e2-1614", 3, true, "Lyaisua CW-V e2-1614", (decimal?)-985.59375, (decimal?)1074.3125, (decimal?)31554.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23258, Nebula.NebulaType.Planetary, "Lyaisua DR-V e2-4647", 3, true, "Lyaisua DR-V e2-4647", (decimal?)-1103.625, (decimal?)830.53125, (decimal?)31424.875, (int)10 )); + AllOfThem.Add(new Nebula( 23259, Nebula.NebulaType.Planetary, "Lyaisua KD-S e4-3977", 3, true, "Lyaisua KD-S e4-3977", (decimal?)-1258.125, (decimal?)790.53125, (decimal?)31860.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23260, Nebula.NebulaType.Planetary, "Lyaisua NC-V e2-3717", 3, true, "Lyaisua NC-V e2-3717", (decimal?)-519.75, (decimal?)348.125, (decimal?)31445.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23261, Nebula.NebulaType.Planetary, "Lyaisua NX-U e2-3493", 3, true, "Lyaisua NX-U e2-3493", (decimal?)-706.6875, (decimal?)232.34375, (decimal?)31461.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23262, Nebula.NebulaType.Planetary, "Lyaisua QS-U e2-7590", 3, true, "Lyaisua QS-U e2-7590", (decimal?)-600.625, (decimal?)67.46875, (decimal?)31483.125, (int)10 )); + AllOfThem.Add(new Nebula( 23263, Nebula.NebulaType.Planetary, "Lyaisua RI-B e5699", 3, true, "Lyaisua RI-B e5699", (decimal?)-437.71875, (decimal?)1145.25, (decimal?)31053.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23264, Nebula.NebulaType.Planetary, "Lyaisua SD-T e3-4937", 3, true, "Lyaisua SD-T e3-4937", (decimal?)-694.21875, (decimal?)260.34375, (decimal?)31721.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23265, Nebula.NebulaType.Planetary, "Lyaisua SJ-Z e7708", 3, true, "Lyaisua SJ-Z e7708", (decimal?)-1308.59375, (decimal?)949.34375, (decimal?)31238.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23266, Nebula.NebulaType.Planetary, "Lyaisua UE-Z e884", 3, true, "Lyaisua UE-Z e884", (decimal?)-1251.25, (decimal?)922.40625, (decimal?)31127.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23267, Nebula.NebulaType.Planetary, "Lyaisua WJ-Z e1045", 3, true, "Lyaisua WJ-Z e1045", (decimal?)-603.8125, (decimal?)1086.1875, (decimal?)31194.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23268, Nebula.NebulaType.Planetary, "Lyaisua XO-A e1968", 3, true, "Lyaisua XO-A e1968", (decimal?)-823.03125, (decimal?)606.53125, (decimal?)31073.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23269, Nebula.NebulaType.Planetary, "Lyaisua YU-X e1-552", 3, true, "Lyaisua YU-X e1-552", (decimal?)-654.21875, (decimal?)1168.96875, (decimal?)31330.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23392, Nebula.NebulaType.Planetary, "Noijeae EF-A e365", 3, true, "Noijeae EF-A e365", (decimal?)4883.5625, (decimal?)1533.71875, (decimal?)32241.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23393, Nebula.NebulaType.Planetary, "Noijeae YE-Z e125", 3, true, "Noijeae YE-Z e125", (decimal?)4452.25, (decimal?)2194.125, (decimal?)32506.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23394, Nebula.NebulaType.Planetary, "Noiji JW-W e1-41", 3, true, "Noiji JW-W e1-41", (decimal?)-482.6875, (decimal?)1617.78125, (decimal?)32606.625, (int)10 )); + AllOfThem.Add(new Nebula( 23395, Nebula.NebulaType.Planetary, "Noiji LM-W e1-1107", 3, true, "Noiji LM-W e1-1107", (decimal?)-759.40625, (decimal?)1407.15625, (decimal?)32575.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23396, Nebula.NebulaType.Planetary, "Noiji OS-U e2-2374", 3, true, "Noiji OS-U e2-2374", (decimal?)-964.21875, (decimal?)1315.875, (decimal?)32700.5, (int)10 )); + AllOfThem.Add(new Nebula( 23397, Nebula.NebulaType.Planetary, "Noiji XE-R e4-1074", 3, true, "Noiji XE-R e4-1074", (decimal?)-787, (decimal?)1331.46875, (decimal?)33053.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23643, Nebula.NebulaType.Planetary, "Phaa Chroa CK-A e1842", 3, true, "Phaa Chroa CK-A e1842", (decimal?)6112.03125, (decimal?)350.25, (decimal?)33586.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23644, Nebula.NebulaType.Planetary, "Phaa Chroa EA-A e2727", 3, true, "Phaa Chroa EA-A e2727", (decimal?)5805.5, (decimal?)131.28125, (decimal?)33585.75, (int)10 )); + AllOfThem.Add(new Nebula( 23645, Nebula.NebulaType.Planetary, "Phaa Chroa LM-V e2-366", 3, true, "Phaa Chroa LM-V e2-366", (decimal?)6248.40625, (decimal?)753.375, (decimal?)34052.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23646, Nebula.NebulaType.Planetary, "Phaa Chroa UD-B e920", 3, true, "Phaa Chroa UD-B e920", (decimal?)6030.34375, (decimal?)987.28125, (decimal?)33653.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23647, Nebula.NebulaType.Planetary, "Phaa Chruia CL-X e1-3047", 3, true, "Phaa Chruia CL-X e1-3047", (decimal?)3208.90625, (decimal?)830.9375, (decimal?)33931.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23648, Nebula.NebulaType.Planetary, "Phaa Chruia DK-A e7359", 3, true, "Phaa Chruia DK-A e7359", (decimal?)3705.75, (decimal?)306.15625, (decimal?)33511.875, (int)10 )); + AllOfThem.Add(new Nebula( 23649, Nebula.NebulaType.Planetary, "Phaa Chruia EB-X e1-304", 3, true, "Phaa Chruia EB-X e1-304", (decimal?)2917.9375, (decimal?)482.25, (decimal?)33923.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23650, Nebula.NebulaType.Planetary, "Phaa Chruia EB-X e1-4262", 3, true, "Phaa Chruia EB-X e1-4262", (decimal?)2900.65625, (decimal?)604.5625, (decimal?)33836.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23651, Nebula.NebulaType.Planetary, "Phaa Chruia GA-A e4754", 3, true, "Phaa Chruia GA-A e4754", (decimal?)3545.125, (decimal?)69, (decimal?)33542.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23652, Nebula.NebulaType.Planetary, "Phaa Chruia IB-X e1-5687", 3, true, "Phaa Chruia IB-X e1-5687", (decimal?)3553.125, (decimal?)484.15625, (decimal?)33947.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23653, Nebula.NebulaType.Planetary, "Phaa Chruia KW-W e1-474", 3, true, "Phaa Chruia KW-W e1-474", (decimal?)3554.875, (decimal?)368.84375, (decimal?)33946.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23654, Nebula.NebulaType.Planetary, "Phaa Chruia MN-T e3-4071", 3, true, "Phaa Chruia MN-T e3-4071", (decimal?)2854.4375, (decimal?)587.71875, (decimal?)34252.375, (int)10 )); + AllOfThem.Add(new Nebula( 23655, Nebula.NebulaType.Planetary, "Phaa Chruia NM-W e1-5139", 3, true, "Phaa Chruia NM-W e1-5139", (decimal?)3424.75, (decimal?)-4.65625, (decimal?)33922.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23656, Nebula.NebulaType.Planetary, "Phaa Chruia QD-T e3-5747", 3, true, "Phaa Chruia QD-T e3-5747", (decimal?)2858.5625, (decimal?)273.6875, (decimal?)34192.25, (int)10 )); + AllOfThem.Add(new Nebula( 23657, Nebula.NebulaType.Planetary, "Phaa Chruia QE-Q e5-4998", 3, true, "Phaa Chruia QE-Q e5-4998", (decimal?)2637.78125, (decimal?)641.84375, (decimal?)34467.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23658, Nebula.NebulaType.Planetary, "Phaa Chruia ZT-A e6187", 3, true, "Phaa Chruia ZT-A e6187", (decimal?)3765.28125, (decimal?)674.78125, (decimal?)33594.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23674, Nebula.NebulaType.Planetary, "Pheia Chraei CB-O e6-1833", 3, true, "Pheia Chraei CB-O e6-1833", (decimal?)-1965.5625, (decimal?)306.28125, (decimal?)34749.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23675, Nebula.NebulaType.Planetary, "Pheia Chraei EL-P e5-960", 3, true, "Pheia Chraei EL-P e5-960", (decimal?)-1591.5625, (decimal?)105.75, (decimal?)34502, (int)10 )); + AllOfThem.Add(new Nebula( 23676, Nebula.NebulaType.Planetary, "Pheia Chraei LG-Y e6507", 3, true, "Pheia Chraei LG-Y e6507", (decimal?)-1361.3125, (decimal?)119.5625, (decimal?)33678.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23677, Nebula.NebulaType.Planetary, "Pheia Chraei NM-W e1-4605", 3, true, "Pheia Chraei NM-W e1-4605", (decimal?)-1709.96875, (decimal?)15.46875, (decimal?)33916.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23678, Nebula.NebulaType.Planetary, "Pheia Chraei WY-S e3-86", 3, true, "Pheia Chraei WY-S e3-86", (decimal?)-1658.9375, (decimal?)8.6875, (decimal?)34177.25, (int)10 )); + AllOfThem.Add(new Nebula( 23798, Nebula.NebulaType.Planetary, "Phleedgae AF-Z e2394", 3, true, "Phleedgae AF-Z e2394", (decimal?)-1533.4375, (decimal?)-411.71875, (decimal?)33716.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23799, Nebula.NebulaType.Planetary, "Phleedgae AF-Z e7927", 3, true, "Phleedgae AF-Z e7927", (decimal?)-1637.15625, (decimal?)-463.59375, (decimal?)33747.625, (int)10 )); + AllOfThem.Add(new Nebula( 23800, Nebula.NebulaType.Planetary, "Phleedgae BL-O e6-5442", 3, true, "Phleedgae BL-O e6-5442", (decimal?)-1486.65625, (decimal?)-648.21875, (decimal?)34715.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23801, Nebula.NebulaType.Planetary, "Phleedgae FL-X e1-8341", 3, true, "Phleedgae FL-X e1-8341", (decimal?)-1403.375, (decimal?)-426.0625, (decimal?)33887.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23802, Nebula.NebulaType.Planetary, "Phleedgae GW-V e2-4060", 3, true, "Phleedgae GW-V e2-4060", (decimal?)-1525.28125, (decimal?)-221.8125, (decimal?)34011.5, (int)10 )); + AllOfThem.Add(new Nebula( 23803, Nebula.NebulaType.Planetary, "Phleedgae II-S e4-8473", 3, true, "Phleedgae II-S e4-8473", (decimal?)-2572.4375, (decimal?)-293.6875, (decimal?)34305.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23804, Nebula.NebulaType.Planetary, "Phleedgae KC-U e3-717", 3, true, "Phleedgae KC-U e3-717", (decimal?)-1529.59375, (decimal?)-302.15625, (decimal?)34153.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23805, Nebula.NebulaType.Planetary, "Phleedgae RO-Z e3903", 3, true, "Phleedgae RO-Z e3903", (decimal?)-2460.875, (decimal?)-118.28125, (decimal?)33707.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23806, Nebula.NebulaType.Planetary, "Phleedgae WT-A e3604", 3, true, "Phleedgae WT-A e3604", (decimal?)-1914.59375, (decimal?)-622.40625, (decimal?)33512.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23894, Nebula.NebulaType.Planetary, "Phoi Phylaa WE-R e4-628", 3, true, "Phoi Phylaa WE-R e4-628", (decimal?)4202.46875, (decimal?)1255.71875, (decimal?)34444.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23933, Nebula.NebulaType.Planetary, "Phraa Greou ZP-X e1-325", 3, true, "Phraa Greou ZP-X e1-325", (decimal?)510.1875, (decimal?)-1471.09375, (decimal?)36433.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23978, Nebula.NebulaType.Planetary, "Phroea Bla EC-U e3-536", 3, true, "Phroea Bla EC-U e3-536", (decimal?)2628.15625, (decimal?)-1591.5625, (decimal?)34285.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23979, Nebula.NebulaType.Planetary, "Phroea Blao AQ-X e1-9", 3, true, "Phroea Blao AQ-X e1-9", (decimal?)5740.1875, (decimal?)-241.40625, (decimal?)33968.125, (int)10 )); + AllOfThem.Add(new Nebula( 23980, Nebula.NebulaType.Planetary, "Phroea Blao AQ-Y e49", 3, true, "Phroea Blao AQ-Y e49", (decimal?)5115.0625, (decimal?)-845.15625, (decimal?)33784.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23981, Nebula.NebulaType.Planetary, "Phroea Blao FH-U e3-2318", 3, true, "Phroea Blao FH-U e3-2318", (decimal?)5618.3125, (decimal?)-129.25, (decimal?)34169.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23982, Nebula.NebulaType.Planetary, "Phroea Blao JN-S e4-330", 3, true, "Phroea Blao JN-S e4-330", (decimal?)5629.1875, (decimal?)-41.15625, (decimal?)34442.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23983, Nebula.NebulaType.Planetary, "Phroea Bli AB-W e2-8723", 3, true, "Phroea Bli AB-W e2-8723", (decimal?)2952.4375, (decimal?)-46.90625, (decimal?)34103.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23984, Nebula.NebulaType.Planetary, "Phroea Bli BW-V e2-10185", 3, true, "Phroea Bli BW-V e2-10185", (decimal?)2710.5625, (decimal?)-189.8125, (decimal?)34107.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23985, Nebula.NebulaType.Planetary, "Phroea Bli DG-O E6-2196", 3, true, "Phroea Bli DG-O e6-2196", (decimal?)3662.875, (decimal?)-824.59375, (decimal?)34737.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23986, Nebula.NebulaType.Planetary, "Phroea Bli DH-U e3-3414", 3, true, "Phroea Bli DH-U e3-3414", (decimal?)2664.4375, (decimal?)-113.65625, (decimal?)34246.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23987, Nebula.NebulaType.Planetary, "Phroea Bli EM-V e2-8690", 3, true, "Phroea Bli EM-V e2-8690", (decimal?)2525.0625, (decimal?)-603.6875, (decimal?)34073.125, (int)10 )); + AllOfThem.Add(new Nebula( 23988, Nebula.NebulaType.Planetary, "Phroea bli lc-v e2-100", 3, true, "Phroea Bli LC-V e2-100", (decimal?)3088.21875, (decimal?)-938.78125, (decimal?)34025.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23989, Nebula.NebulaType.Planetary, "Phroea Bli LC-V e2-100", 3, true, "Phroea Bli LC-V e2-100", (decimal?)3088.21875, (decimal?)-938.78125, (decimal?)34025.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23990, Nebula.NebulaType.Planetary, "Phroea Bli SP-O e6-5798", 3, true, "Phroea Bli SP-O e6-5798", (decimal?)2497.0625, (decimal?)-427.75, (decimal?)34665.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23991, Nebula.NebulaType.Planetary, "Phroea Bli TO-Z e2991", 3, true, "Phroea Bli TO-Z e2991", (decimal?)2986.21875, (decimal?)-128.40625, (decimal?)33780.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23992, Nebula.NebulaType.Planetary, "Phroea Bli TT-A E3446", 3, true, "Phroea Bli TT-A e3446", (decimal?)2787.40625, (decimal?)-564.96875, (decimal?)33600.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23993, Nebula.NebulaType.Planetary, "Phroea Bli UE-Z e155", 3, true, "Phroea Bli UE-Z e155", (decimal?)2621.625, (decimal?)-453.5625, (decimal?)33689.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24001, Nebula.NebulaType.Planetary, "Phroea Bluae JB-X e1-1761", 3, true, "Phroea Bluae JB-X e1-1761", (decimal?)-3925.1875, (decimal?)-670.3125, (decimal?)33931.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24003, Nebula.NebulaType.Planetary, "Phroea Bluae WY-A e44", 3, true, "Phroea Bluae WY-A e44", (decimal?)-4136.71875, (decimal?)-408, (decimal?)33572.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24073, Nebula.NebulaType.Planetary, "Phroi Blou BF-Z e144", 3, true, "Phroi Blou BF-Z e144", (decimal?)-2719.4375, (decimal?)-429.71875, (decimal?)33746.75, (int)10 )); + AllOfThem.Add(new Nebula( 24074, Nebula.NebulaType.Planetary, "Phroi Blou BV-Y e2964", 3, true, "Phroi Blou BV-Y e2964", (decimal?)-3286.28125, (decimal?)-691.8125, (decimal?)33718.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24075, Nebula.NebulaType.Planetary, "Phroi Blou FG-X e1-15", 3, true, "Phroi Blou FG-X e1-15", (decimal?)-3076.59375, (decimal?)-637.25, (decimal?)33883.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24076, Nebula.NebulaType.Planetary, "Phroi Blou JW-W e1-1677", 3, true, "Phroi Blou JW-W e1-1677", (decimal?)-3067.625, (decimal?)-984.65625, (decimal?)33974, (int)10 )); + AllOfThem.Add(new Nebula( 24077, Nebula.NebulaType.Planetary, "Phroi Blou NI-B e5502", 3, true, "Phroi Blou NI-B e5502", (decimal?)-3633.3125, (decimal?)-110.75, (decimal?)33593.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24079, Nebula.NebulaType.Planetary, "Phroi Blou RY-R e4-265", 3, true, "Phroi Blou RY-R e4-265", (decimal?)-3020.15625, (decimal?)-608.46875, (decimal?)34357.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24082, Nebula.NebulaType.Planetary, "Phroi Blou VE-Q e5-4814", 3, true, "Phroi Blou VE-Q e5-4814", (decimal?)-2952.25, (decimal?)-620.46875, (decimal?)34568.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24083, Nebula.NebulaType.Planetary, "Phroi Blou XT-A e1248", 3, true, "Phroi Blou XT-A e1248", (decimal?)-2947, (decimal?)-546.4375, (decimal?)33594.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24084, Nebula.NebulaType.Planetary, "Phroi Bluae AA-Z e4050", 3, true, "Phroi Bluae AA-Z e4050", (decimal?)-675.03125, (decimal?)-518.8125, (decimal?)33704.875, (int)10 )); + AllOfThem.Add(new Nebula( 24085, Nebula.NebulaType.Planetary, "Phroi Bluae HC-U e3-431", 3, true, "Phroi Bluae HC-U e3-431", (decimal?)-827.90625, (decimal?)-325.75, (decimal?)34145.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24086, Nebula.NebulaType.Planetary, "Phroi Bluae MN-T e3-5681", 3, true, "Phroi Bluae MN-T e3-5681", (decimal?)-973.46875, (decimal?)-774.15625, (decimal?)34182.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24087, Nebula.NebulaType.Planetary, "Phroi Bluae QI-T e3-3454", 3, true, "Phroi Bluae QI-T e3-3454", (decimal?)-681.09375, (decimal?)-950.5625, (decimal?)34219.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24088, Nebula.NebulaType.Planetary, "Phroi Bluae RY-A e2909", 3, true, "Phroi Bluae RY-A e2909", (decimal?)-1084.875, (decimal?)-501.6875, (decimal?)33579.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24089, Nebula.NebulaType.Planetary, "Phroi Bluae VJ-Z e3874", 3, true, "Phroi Bluae VJ-Z e3874", (decimal?)-816.5625, (decimal?)-310.8125, (decimal?)33669.625, (int)10 )); + AllOfThem.Add(new Nebula( 24090, Nebula.NebulaType.Planetary, "Phroi Bluae VO-Z e4828", 3, true, "Phroi Bluae VO-Z e4828", (decimal?)-534.78125, (decimal?)-122.3125, (decimal?)33665.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24091, Nebula.NebulaType.Planetary, "Phroi Bluae XF-O e6-2398", 3, true, "Phroi Bluae XF-O e6-2398", (decimal?)-1025.71875, (decimal?)-675.125, (decimal?)34632.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24092, Nebula.NebulaType.Planetary, "Phroi Bluae XK-O e6-212", 3, true, "Phroi Bluae XK-O e6-212", (decimal?)-737.09375, (decimal?)-509.8125, (decimal?)34772.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24093, Nebula.NebulaType.Planetary, "Phroi bluae xt-a e111", 3, true, "Phroi Bluae XT-A e111", (decimal?)-390.65625, (decimal?)-544.53125, (decimal?)33652.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24094, Nebula.NebulaType.Planetary, "Phroi Bluae YJ-A e5879", 3, true, "Phroi Bluae YJ-A e5879", (decimal?)-986.96875, (decimal?)-958.09375, (decimal?)33604, (int)10 )); + AllOfThem.Add(new Nebula( 24191, Nebula.NebulaType.Planetary, "Phua Chrea BQ-Y e7448", 3, true, "Phua Chrea BQ-Y e7448", (decimal?)-1152.90625, (decimal?)321.84375, (decimal?)33666.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24192, Nebula.NebulaType.Planetary, "Phua Chrea PI-T e3-18", 3, true, "Phua Chrea PI-T e3-18", (decimal?)-707.125, (decimal?)326.84375, (decimal?)34197.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24193, Nebula.NebulaType.Planetary, "Phua Chrea PI-T e3-8706", 3, true, "Phua Chrea PI-T e3-8706", (decimal?)-833.875, (decimal?)371, (decimal?)34237.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24194, Nebula.NebulaType.Planetary, "Phua Chrea QY-R e4-6", 3, true, "Phua Chrea QY-R e4-6", (decimal?)-559.8125, (decimal?)705.28125, (decimal?)34387.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24195, Nebula.NebulaType.Planetary, "Phua Chrea RO-Z E1594", 3, true, "Phua Chrea RO-Z e1594", (decimal?)-1061, (decimal?)1188.125, (decimal?)33805.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24196, Nebula.NebulaType.Planetary, "Phua Chrea XP-P e5-1052", 3, true, "Phua Chrea XP-P e5-1052", (decimal?)-1125.125, (decimal?)266.75, (decimal?)34491.375, (int)10 )); + AllOfThem.Add(new Nebula( 24197, Nebula.NebulaType.Planetary, "Phua Chrea YE-Z e1225", 3, true, "Phua Chrea YE-Z e1225", (decimal?)-575.125, (decimal?)930.46875, (decimal?)33777.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24198, Nebula.NebulaType.Planetary, "Phua chrea yf-o e6-5971", 3, true, "Phua Chrea YF-O e6-5971", (decimal?)-911.90625, (decimal?)580.28125, (decimal?)34646.375, (int)10 )); + AllOfThem.Add(new Nebula( 24199, Nebula.NebulaType.Planetary, "Phua Chrea ZU-Y e72", 3, true, "Phua Chrea ZU-Y e72", (decimal?)-1155.53125, (decimal?)552.59375, (decimal?)33757.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24305, Nebula.NebulaType.Planetary, "Rhuedgie AF-A e1834", 3, true, "Rhuedgie AF-A e1834", (decimal?)2876.1875, (decimal?)1556, (decimal?)30996.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24306, Nebula.NebulaType.Planetary, "Rhuedgu XJ-R e4-1971", 3, true, "Rhuedgu XJ-R e4-1971", (decimal?)-390.53125, (decimal?)1538.21875, (decimal?)31756.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24307, Nebula.NebulaType.Planetary, "Rhuedgu XU-P e5-509", 3, true, "Rhuedgu XU-P e5-509", (decimal?)-803.71875, (decimal?)1712.34375, (decimal?)31969.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24311, Nebula.NebulaType.Planetary, "Rothea UJ-Q e5-1221", 3, true, "Rothea UJ-Q e5-1221", (decimal?)2298.625, (decimal?)-1759.25, (decimal?)30686.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24313, Nebula.NebulaType.Planetary, "Rotheou SZ-O e6-874", 3, true, "Rotheou SZ-O e6-874", (decimal?)-558.34375, (decimal?)-1457.21875, (decimal?)30847.25, (int)10 )); + AllOfThem.Add(new Nebula( 24361, Nebula.NebulaType.Planetary, "Scheau Bla JX-T e3-1093", 3, true, "Scheau Bla JX-T e3-1093", (decimal?)1735.8125, (decimal?)-1775.5, (decimal?)33009.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24362, Nebula.NebulaType.Planetary, "Scheau Blao AB-W e2-9322", 3, true, "Scheau Blao AB-W e2-9322", (decimal?)4222.5625, (decimal?)-73.8125, (decimal?)32723.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24363, Nebula.NebulaType.Planetary, "Scheau Blao FC-U E3-1497", 3, true, "Scheau Blao FC-U e3-1497", (decimal?)3992.6875, (decimal?)-312.0625, (decimal?)32879.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24364, Nebula.NebulaType.Planetary, "Scheau Blao FM-V e2-5973", 3, true, "Scheau Blao FM-V e2-5973", (decimal?)4019.21875, (decimal?)-571.59375, (decimal?)32802.75, (int)10 )); + AllOfThem.Add(new Nebula( 24365, Nebula.NebulaType.Planetary, "Scheau Blao FM-V e2-961", 3, true, "Scheau Blao FM-V e2-961", (decimal?)3943.78125, (decimal?)-645.96875, (decimal?)32848.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24366, Nebula.NebulaType.Planetary, "Scheau Blao GN-S e4-4909", 3, true, "Scheau Blao GN-S e4-4909", (decimal?)3794.4375, (decimal?)-93.78125, (decimal?)33090.125, (int)10 )); + AllOfThem.Add(new Nebula( 24367, Nebula.NebulaType.Planetary, "Scheau Blao HM-V e2-6532", 3, true, "Scheau Blao HM-V e2-6532", (decimal?)4324.5625, (decimal?)-543.3125, (decimal?)32824.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24368, Nebula.NebulaType.Planetary, "Scheau Blao MT-Q E5-2539", 3, true, "Scheau Blao MT-Q e5-2539", (decimal?)4225.28125, (decimal?)-37.25, (decimal?)33196.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24369, Nebula.NebulaType.Planetary, "Scheau Blao RU-O e6-989", 3, true, "Scheau Blao RU-O e6-989", (decimal?)3966.28125, (decimal?)-215.71875, (decimal?)33466, (int)10 )); + AllOfThem.Add(new Nebula( 24370, Nebula.NebulaType.Planetary, "Scheau Blao TY-A e6995", 3, true, "Scheau Blao TY-A e6995", (decimal?)4367.75, (decimal?)-387.03125, (decimal?)32282.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24371, Nebula.NebulaType.Planetary, "Scheau Blao YU-X e1-1274", 3, true, "Scheau Blao YU-X e1-1274", (decimal?)4563.6875, (decimal?)-33.6875, (decimal?)32688.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24372, Nebula.NebulaType.Planetary, "Scheau Bli AL-O e6-5008", 3, true, "Scheau Bli AL-O e6-5008", (decimal?)2288.40625, (decimal?)-535.65625, (decimal?)33341.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24373, Nebula.NebulaType.Planetary, "Scheau Bli AQ-Y e5623", 3, true, "Scheau Bli AQ-Y e5623", (decimal?)1242.03125, (decimal?)-957.71875, (decimal?)32525.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24374, Nebula.NebulaType.Planetary, "Scheau Bli BW-V e2-325", 3, true, "Scheau Bli BW-V e2-325", (decimal?)1389.09375, (decimal?)-300.84375, (decimal?)32763.625, (int)10 )); + AllOfThem.Add(new Nebula( 24375, Nebula.NebulaType.Planetary, "Scheau Bli DQ-P e5-1203", 3, true, "Scheau Bli DQ-P e5-1203", (decimal?)2448.03125, (decimal?)-1050.5625, (decimal?)33228.125, (int)10 )); + AllOfThem.Add(new Nebula( 24376, Nebula.NebulaType.Planetary, "Scheau Bli EB-O e6-3726", 3, true, "Scheau Bli EB-O e6-3726", (decimal?)2301.53125, (decimal?)-967.90625, (decimal?)33474.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24377, Nebula.NebulaType.Planetary, "Scheau Bli EB-O e6-5988", 3, true, "Scheau Bli EB-O e6-5988", (decimal?)2196.375, (decimal?)-881.125, (decimal?)33396.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24378, Nebula.NebulaType.Planetary, "Scheau Bli IC-V e2-3095", 3, true, "Scheau Bli IC-V e2-3095", (decimal?)1225.5625, (decimal?)-834.875, (decimal?)32772.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24379, Nebula.NebulaType.Planetary, "Scheau Bli JR-V e2-4771", 3, true, "Scheau Bli JR-V e2-4771", (decimal?)2419.28125, (decimal?)-363.125, (decimal?)32779, (int)10 )); + AllOfThem.Add(new Nebula( 24380, Nebula.NebulaType.Planetary, "Scheau Bli JW-W e1-965", 3, true, "Scheau Bli JW-W e1-965", (decimal?)2117.15625, (decimal?)-835.53125, (decimal?)32680.25, (int)10 )); + AllOfThem.Add(new Nebula( 24381, Nebula.NebulaType.Planetary, "Scheau Bli PI-T e3-2407", 3, true, "Scheau Bli PI-T e3-2407", (decimal?)1825, (decimal?)-972.65625, (decimal?)32971, (int)10 )); + AllOfThem.Add(new Nebula( 24382, Nebula.NebulaType.Planetary, "Scheau Bli QO-Q e5-8410", 3, true, "Scheau Bli QO-Q e5-8410", (decimal?)1971.21875, (decimal?)-326.28125, (decimal?)33331.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24383, Nebula.NebulaType.Planetary, "Scheau Bli UP-O e6-2208", 3, true, "Scheau Bli UP-O e6-2208", (decimal?)1661.96875, (decimal?)-498.0625, (decimal?)33383.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24384, Nebula.NebulaType.Planetary, "Scheau Bli VP-O E6-7624", 3, true, "Scheau Bli VP-O e6-7624", (decimal?)1853.75, (decimal?)-475.90625, (decimal?)33459.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24385, Nebula.NebulaType.Planetary, "Scheau Bli WP-O e6-3632", 3, true, "Scheau Bli WP-O e6-3632", (decimal?)1987.09375, (decimal?)-347.84375, (decimal?)33479.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24386, Nebula.NebulaType.Planetary, "Scheau Bli XK-O e6-10975", 3, true, "Scheau Bli XK-O e6-10975", (decimal?)1803.46875, (decimal?)-553.03125, (decimal?)33468.125, (int)10 )); + AllOfThem.Add(new Nebula( 24387, Nebula.NebulaType.Planetary, "Scheau Bli XZ-P e5-980", 3, true, "Scheau Bli XZ-P e5-980", (decimal?)2134.96875, (decimal?)-818.25, (decimal?)33275.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24388, Nebula.NebulaType.Planetary, "Scheau Bli ZP-O e6-6827", 3, true, "Scheau Bli ZP-O e6-6827", (decimal?)2338.6875, (decimal?)-428.40625, (decimal?)33480.375, (int)10 )); + AllOfThem.Add(new Nebula( 24399, Nebula.NebulaType.Planetary, "Scheau Byoea KN-S e4-206", 3, true, "Scheau Byoea KN-S e4-206", (decimal?)4443, (decimal?)-65.21875, (decimal?)35602.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24461, Nebula.NebulaType.Planetary, "Schee Blao PI-T e3-730", 3, true, "Schee Blao PI-T e3-730", (decimal?)5536.875, (decimal?)-864.625, (decimal?)32998.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24462, Nebula.NebulaType.Planetary, "Schee Blao SP-O e6-4570", 3, true, "Schee Blao SP-O e6-4570", (decimal?)5169.21875, (decimal?)-465.65625, (decimal?)33431.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24464, Nebula.NebulaType.Planetary, "Schee Blao ZK-X e1-5869", 3, true, "Schee Blao ZK-X e1-5869", (decimal?)5292.8125, (decimal?)-490.28125, (decimal?)32633.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24465, Nebula.NebulaType.Planetary, "Schee Bli AV-Y E1951", 3, true, "Schee Bli AV-Y e1951", (decimal?)2930.1875, (decimal?)-676.21875, (decimal?)32534.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24466, Nebula.NebulaType.Planetary, "Schee Bli BL-X E1-8463", 3, true, "Schee Bli BL-X e1-8463", (decimal?)3103.5, (decimal?)-477.09375, (decimal?)32655.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24467, Nebula.NebulaType.Planetary, "Schee Bli DQ-X e1-3400", 3, true, "Schee Bli DQ-X e1-3400", (decimal?)3696.9375, (decimal?)-261.625, (decimal?)32547.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24468, Nebula.NebulaType.Planetary, "Schee Bli DQ-X e1-5439", 3, true, "Schee Bli DQ-X e1-5439", (decimal?)3644.125, (decimal?)-234.15625, (decimal?)32669.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24469, Nebula.NebulaType.Planetary, "Schee Bli HM-V e2-2023", 3, true, "Schee Bli HM-V e2-2023", (decimal?)3016.21875, (decimal?)-555.28125, (decimal?)32784.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24470, Nebula.NebulaType.Planetary, "Schee Bli HM-V e2-2736", 3, true, "Schee Bli HM-V e2-2736", (decimal?)3004.875, (decimal?)-608.78125, (decimal?)32777.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24471, Nebula.NebulaType.Planetary, "Schee Bli JX-T e3-4747", 3, true, "Schee Bli JX-T e3-4747", (decimal?)2988.6875, (decimal?)-355.71875, (decimal?)32952.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24472, Nebula.NebulaType.Planetary, "Schee Bli LC-V e2-3344", 3, true, "Schee Bli LC-V e2-3344", (decimal?)3114.90625, (decimal?)-949.875, (decimal?)32713.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24473, Nebula.NebulaType.Planetary, "Schee Bli LM-V e2-3680", 3, true, "Schee Bli LM-V e2-3680", (decimal?)3659.375, (decimal?)-506.5625, (decimal?)32779.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24474, Nebula.NebulaType.Planetary, "Schee Bli MT-Q E5-5514", 3, true, "Schee Bli MT-Q e5-5514", (decimal?)2828.90625, (decimal?)-96.375, (decimal?)33185.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24475, Nebula.NebulaType.Planetary, "Schee Bli NI-T E3-3551", 3, true, "Schee Bli NI-T e3-3551", (decimal?)2767.875, (decimal?)-962.1875, (decimal?)33001, (int)10 )); + AllOfThem.Add(new Nebula( 24476, Nebula.NebulaType.Planetary, "Schee Bli OY-R e4-319", 3, true, "Schee Bli OY-R e4-319", (decimal?)2961.78125, (decimal?)-616.1875, (decimal?)33102.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24477, Nebula.NebulaType.Planetary, "Schee Bli PN-T e3-6878", 3, true, "Schee Bli PN-T e3-6878", (decimal?)3371.125, (decimal?)-711.3125, (decimal?)32906.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24478, Nebula.NebulaType.Planetary, "Schee Bli RD-S e4-3523", 3, true, "Schee Bli RD-S e4-3523", (decimal?)3708, (decimal?)-452.125, (decimal?)33119.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24479, Nebula.NebulaType.Planetary, "Schee Bli RO-R E4-7291", 3, true, "Schee Bli RO-R e4-7291", (decimal?)2657.28125, (decimal?)-910.28125, (decimal?)33142.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24480, Nebula.NebulaType.Planetary, "Schee Bli ST-A E8286", 3, true, "Schee Bli ST-A e8286", (decimal?)2651.28125, (decimal?)-538.75, (decimal?)32326.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24481, Nebula.NebulaType.Planetary, "Schee Bli VP-O E6-8166", 3, true, "Schee Bli VP-O e6-8166", (decimal?)3022.40625, (decimal?)-490.1875, (decimal?)33400.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24482, Nebula.NebulaType.Planetary, "Schee bli vt-a e4176", 3, true, "Schee Bli VT-A e4176", (decimal?)3011.15625, (decimal?)-527.34375, (decimal?)32245.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24483, Nebula.NebulaType.Planetary, "Schee Bli XO-Z E958", 3, true, "Schee Bli XO-Z e958", (decimal?)3654.40625, (decimal?)-117.21875, (decimal?)32438.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24484, Nebula.NebulaType.Planetary, "Schee Bli XT-A e8966", 3, true, "Schee Bli XT-A e8966", (decimal?)3332.125, (decimal?)-620.75, (decimal?)32272.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24485, Nebula.NebulaType.Planetary, "Schee Bli YE-A e4873", 3, true, "Schee Bli YE-A e4873", (decimal?)2564.3125, (decimal?)-988.875, (decimal?)32250.375, (int)10 )); + AllOfThem.Add(new Nebula( 24486, Nebula.NebulaType.Planetary, "Schee Bli ZJ-A e2822", 3, true, "Schee Bli ZJ-A e2822", (decimal?)3054.5, (decimal?)-874.5625, (decimal?)32353.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24698, Nebula.NebulaType.Planetary, "Smase EG-X e1-30", 3, true, "Smase EG-X e1-30", (decimal?)3244.875, (decimal?)-1795.03125, (decimal?)32569.25, (int)10 )); + AllOfThem.Add(new Nebula( 24699, Nebula.NebulaType.Planetary, "Smasiae NT-Q e5-63", 3, true, "Smasiae NT-Q e5-63", (decimal?)4408.78125, (decimal?)-1380.25, (decimal?)33253.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24718, Nebula.NebulaType.Planetary, "Splojeia BA-Z e524", 3, true, "Splojeia BA-Z e524", (decimal?)3359.125, (decimal?)682.96875, (decimal?)35094.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24719, Nebula.NebulaType.Planetary, "Splojeia EL-P e5-2929", 3, true, "Splojeia EL-P e5-2929", (decimal?)3587.96875, (decimal?)-17.25, (decimal?)35794.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24720, Nebula.NebulaType.Planetary, "Splojeia EL-P e5-976", 3, true, "Splojeia EL-P e5-976", (decimal?)3531.59375, (decimal?)-2.65625, (decimal?)35766.125, (int)10 )); + AllOfThem.Add(new Nebula( 24721, Nebula.NebulaType.Planetary, "Splojeia FG-Y e5239", 3, true, "Splojeia FG-Y e5239", (decimal?)2655.6875, (decimal?)7.125, (decimal?)34977.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24734, Nebula.NebulaType.Planetary, "Splojoea DA-A e5521", 3, true, "Splojoea DA-A e5521", (decimal?)-2031.6875, (decimal?)106.53125, (decimal?)34910.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24735, Nebula.NebulaType.Planetary, "Splojoea HA-A e6052", 3, true, "Splojoea HA-A e6052", (decimal?)-1474.53125, (decimal?)17.28125, (decimal?)34849.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24741, Nebula.NebulaType.Planetary, "Splojua EA-A e1093", 3, true, "Splojua EA-A e1093", (decimal?)2008.9375, (decimal?)44.8125, (decimal?)34912.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24742, Nebula.NebulaType.Planetary, "Splojua EA-A e7553", 3, true, "Splojua EA-A e7553", (decimal?)1913.25, (decimal?)111.15625, (decimal?)34879.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24743, Nebula.NebulaType.Planetary, "Splojua GH-V e2-413", 3, true, "Splojua GH-V e2-413", (decimal?)1340.3125, (decimal?)546.78125, (decimal?)35338.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24744, Nebula.NebulaType.Planetary, "Splojua PI-T e3-177", 3, true, "Splojua PI-T e3-177", (decimal?)1790.90625, (decimal?)442.8125, (decimal?)35442.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24745, Nebula.NebulaType.Planetary, "Splojua ST-R e4-662", 3, true, "Splojua ST-R e4-662", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 24746, Nebula.NebulaType.Planetary, "Splojua TJ-R e4-5854", 3, true, "Splojua TJ-R e4-5854", (decimal?)1404.15625, (decimal?)211.875, (decimal?)35717.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24775, Nebula.NebulaType.Planetary, "Struqea FH-U e3-13", 3, true, "Struqea FH-U e3-13", (decimal?)518.9375, (decimal?)-1441.5625, (decimal?)35483.5, (int)10 )); + AllOfThem.Add(new Nebula( 24984, Nebula.NebulaType.Planetary, "Teqea DW-V e2-1162", 3, true, "Teqea DW-V e2-1162", (decimal?)1818.9375, (decimal?)-344.40625, (decimal?)36659.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24985, Nebula.NebulaType.Planetary, "Teqea QD-T e3-942", 3, true, "Teqea QD-T e3-942", (decimal?)1673.625, (decimal?)-1036.6875, (decimal?)36807.5, (int)10 )); + AllOfThem.Add(new Nebula( 24986, Nebula.NebulaType.Planetary, "Teqea TJ-Q e5-401", 3, true, "Teqea TJ-Q e5-401", (decimal?)2082.84375, (decimal?)-500.9375, (decimal?)37136.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24987, Nebula.NebulaType.Planetary, "Teqea YK-O e6-891", 3, true, "Teqea YK-O e6-891", (decimal?)1895.34375, (decimal?)-538.59375, (decimal?)37317.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25000, Nebula.NebulaType.Planetary, "Tequia NI-S e4-70", 3, true, "Tequia NI-S e4-70", (decimal?)3351.75, (decimal?)-256.6875, (decimal?)36942, (int)10 )); + AllOfThem.Add(new Nebula( 25001, Nebula.NebulaType.Planetary, "Tequia ZE-A e36", 3, true, "Tequia ZE-A e36", (decimal?)2750.4375, (decimal?)-1058.65625, (decimal?)36116.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25077, Nebula.NebulaType.Planetary, "Vegni MN-T e3-47", 3, true, "Vegni MN-T e3-47", (decimal?)2905.96875, (decimal?)485.9375, (decimal?)36708.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25078, Nebula.NebulaType.Planetary, "Vegni YK-P e5-2", 3, true, "Vegni YK-P e5-2", (decimal?)2627.09375, (decimal?)42.5, (decimal?)37047.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25089, Nebula.NebulaType.Planetary, "Vegnoae DV-Y e0", 3, true, "Vegnoae DV-Y e0", (decimal?)-404.03125, (decimal?)469.5625, (decimal?)36267.125, (int)10 )); + AllOfThem.Add(new Nebula( 25095, Nebula.NebulaType.Planetary, "Vegnuae BA-A e89", 3, true, "Vegnuae BA-A e89", (decimal?)1454.46875, (decimal?)39.03125, (decimal?)36105.21875, (int)10 )); + } + public static void init_Region_4() + { + AllOfThem.Add(new Nebula( 10025, Nebula.NebulaType.Standard, "Agnairt AA-A h36", 4, true, "Agnairt TA-U d4-7768", (decimal?)-10014.75, (decimal?)-36.625, (decimal?)22447.65625, (int)100 )); + AllOfThem.Add(new Nebula( 10026, Nebula.NebulaType.Standard, "Dryio Bloo AA-A h310", 4, true, "Dryio Bloo PZ-W d2-1161", (decimal?)-6375.84375, (decimal?)-1600.65625, (decimal?)28627.28125, (int)100 )); + AllOfThem.Add(new Nebula( 10027, Nebula.NebulaType.Standard, "Eimbaisys AA-A h605", 4, true, "Eimbaisys WK-O d6-917", (decimal?)-4946.84375, (decimal?)1627.875, (decimal?)30281.375, (int)100 )); + AllOfThem.Add(new Nebula( 10028, Nebula.NebulaType.Standard, "Eorld Grie AA-A h578", 4, true, "Eorld Grie DE-E d13-1757", (decimal?)-3612, (decimal?)-1356.75, (decimal?)30838.25, (int)100 )); + AllOfThem.Add(new Nebula( 10029, Nebula.NebulaType.Standard, "Foijaea AA-A h129", 4, true, "Foijaea VY-A e1158", (decimal?)-4241.59375, (decimal?)-1737.65625, (decimal?)32335.5625, (int)100 )); + AllOfThem.Add(new Nebula( 10030, Nebula.NebulaType.Standard, "Hypiae Ausms AA-A h226", 4, true, "Hypiae Ausms GN-Q d6-11", (decimal?)-8376.96875, (decimal?)2474.34375, (decimal?)25103.34375, (int)100 )); + AllOfThem.Add(new Nebula( 10031, Nebula.NebulaType.Standard, "Hypo Auf AA-A h37", 4, true, "Hypo Auf IZ-R c20-1", (decimal?)-9397.34375, (decimal?)2288.59375, (decimal?)25440.0625, (int)100 )); + AllOfThem.Add(new Nebula( 10032, Nebula.NebulaType.Standard, "Myumbai AA-A h235", 4, true, "Myumbai OK-D c13-11", (decimal?)-6212.40625, (decimal?)-2143.78125, (decimal?)22553.1875, (int)100 )); + AllOfThem.Add(new Nebula( 10033, Nebula.NebulaType.Standard, "Phrae Flyou AA-A h30", 4, true, "Phrae Flyou CB-M d8-485", (decimal?)-10610.8125, (decimal?)-493.40625, (decimal?)23986.96875, (int)100 )); + AllOfThem.Add(new Nebula( 10034, Nebula.NebulaType.Standard, "Tepuae AA-A h503", 4, true, "Tepuae FJ-R c21-53", (decimal?)-7929.96875, (decimal?)-1314.28125, (decimal?)24180.75, (int)100 )); + AllOfThem.Add(new Nebula( 10035, Nebula.NebulaType.Standard, "Xothuia AA-A h34", 4, true, "Xothuia KM-V e2-2291", (decimal?)-6660.71875, (decimal?)639, (decimal?)30243.28125, (int)100 )); + AllOfThem.Add(new Nebula( 10036, Nebula.NebulaType.Standard, "Xothuia AA-A h9", 4, true, "Xothuia TY-Z d13-1058", (decimal?)-6511.6875, (decimal?)139.625, (decimal?)30904.5625, (int)100 )); + AllOfThem.Add(new Nebula( 20049, Nebula.NebulaType.Planetary, "Agnairt BB-O e6-2561", 4, true, "Agnairt BB-O e6-2561", (decimal?)-9725.78125, (decimal?)-830.125, (decimal?)23122.25, (int)10 )); + AllOfThem.Add(new Nebula( 20050, Nebula.NebulaType.Planetary, "Agnairt KW-W e1-5033", 4, true, "Agnairt KW-W e1-5033", (decimal?)-9299.9375, (decimal?)-939.84375, (decimal?)22374.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20051, Nebula.NebulaType.Planetary, "Agnairt KX-T e3-7476", 4, true, "Agnairt KX-T e3-7476", (decimal?)-9550.53125, (decimal?)-435.6875, (decimal?)22686.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20052, Nebula.NebulaType.Planetary, "Agnairt LN-T e3-3751", 4, true, "Agnairt LN-T e3-3751", (decimal?)-10057.40625, (decimal?)-670.375, (decimal?)22670.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20053, Nebula.NebulaType.Planetary, "Agnairt LN-T e3-550", 4, true, "Agnairt LN-T e3-550", (decimal?)-10038.875, (decimal?)-751.46875, (decimal?)22657.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20054, Nebula.NebulaType.Planetary, "Agnairt OT-R e4-1169", 4, true, "Agnairt OT-R e4-1169", (decimal?)-10212.1875, (decimal?)-775.75, (decimal?)22779.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20055, Nebula.NebulaType.Planetary, "Agnairt TP-O e6-5885", 4, true, "Agnairt TP-O e6-5885", (decimal?)-10127.34375, (decimal?)-438.15625, (decimal?)23151.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20056, Nebula.NebulaType.Planetary, "Agnairt UT-R e4-6827", 4, true, "Agnairt UT-R e4-6827", (decimal?)-9330.0625, (decimal?)-727.09375, (decimal?)22842, (int)10 )); + AllOfThem.Add(new Nebula( 20057, Nebula.NebulaType.Planetary, "Agnairt UT-R e4-7266", 4, true, "Agnairt UT-R e4-7266", (decimal?)-9227.8125, (decimal?)-737.46875, (decimal?)22800.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20058, Nebula.NebulaType.Planetary, "Agnairt VJ-Z e2827", 4, true, "Agnairt VJ-Z e2827", (decimal?)-9740.65625, (decimal?)-266.40625, (decimal?)22201.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20059, Nebula.NebulaType.Planetary, "Agnairt VZ-P e5-4366", 4, true, "Agnairt VZ-P e5-4366", (decimal?)-9716.15625, (decimal?)-685.3125, (decimal?)23043.5, (int)10 )); + AllOfThem.Add(new Nebula( 20060, Nebula.NebulaType.Planetary, "Agnairt WO-R e4-3534", 4, true, "Agnairt WO-R e4-3534", (decimal?)-9306.0625, (decimal?)-858.625, (decimal?)22791.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20061, Nebula.NebulaType.Planetary, "Agnairt YF-O e6-3128", 4, true, "Agnairt YF-O e6-3128", (decimal?)-9902.25, (decimal?)-748.4375, (decimal?)23108.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20062, Nebula.NebulaType.Planetary, "Agnairy DB-X e1-1828", 4, true, "Agnairy DB-X e1-1828", (decimal?)-3629.09375, (decimal?)-723.03125, (decimal?)22381.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20063, Nebula.NebulaType.Planetary, "Agnairy DG-X e1-4409", 4, true, "Agnairy DG-X e1-4409", (decimal?)-3318.3125, (decimal?)-593.125, (decimal?)22444.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20064, Nebula.NebulaType.Planetary, "Agnairy ER-V e2-218", 4, true, "Agnairy ER-V e2-218", (decimal?)-3516.375, (decimal?)-430.25, (decimal?)22577.625, (int)10 )); + AllOfThem.Add(new Nebula( 20065, Nebula.NebulaType.Planetary, "Agnairy HW-W e1-1654", 4, true, "Agnairy HW-W e1-1654", (decimal?)-3330.71875, (decimal?)-855.125, (decimal?)22412.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20066, Nebula.NebulaType.Planetary, "Agnairy HW-W e1-410", 4, true, "Agnairy HW-W e1-410", (decimal?)-3312.15625, (decimal?)-913.75, (decimal?)22411.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20068, Nebula.NebulaType.Planetary, "Agnairy MI-B e1225", 4, true, "Agnairy MI-B e1225", (decimal?)-3805.0625, (decimal?)-108.03125, (decimal?)22119.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20069, Nebula.NebulaType.Planetary, "Agnairy ND-S e4-2877", 4, true, "Agnairy ND-S e4-2877", (decimal?)-3417.625, (decimal?)-451.84375, (decimal?)22810.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20070, Nebula.NebulaType.Planetary, "Agnairy VO-R e4-2758", 4, true, "Agnairy VO-R e4-2758", (decimal?)-2952.8125, (decimal?)-869.375, (decimal?)22906.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20071, Nebula.NebulaType.Planetary, "Agnairy WZ-Y e8378", 4, true, "Agnairy WZ-Y e8378", (decimal?)-3844.90625, (decimal?)-514.34375, (decimal?)22273.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20072, Nebula.NebulaType.Planetary, "Agnairy XP-X e1-3006", 4, true, "Agnairy XP-X e1-3006", (decimal?)-3628.15625, (decimal?)-253.53125, (decimal?)22321.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20073, Nebula.NebulaType.Planetary, "Agnaiz BG-O e6-10131", 4, true, "Agnaiz BG-O e6-10131", (decimal?)-8175.8125, (decimal?)-714.625, (decimal?)23145.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20074, Nebula.NebulaType.Planetary, "Agnaiz CQ-Y e1624", 4, true, "Agnaiz CQ-Y e1624", (decimal?)-8628.15625, (decimal?)-880.375, (decimal?)22144.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20075, Nebula.NebulaType.Planetary, "Agnaiz GB-X e1-2062", 4, true, "Agnaiz GB-X e1-2062", (decimal?)-8361.15625, (decimal?)-710.875, (decimal?)22341.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20076, Nebula.NebulaType.Planetary, "Agnaiz KX-T e3-9500", 4, true, "Agnaiz KX-T e3-9500", (decimal?)-8271.96875, (decimal?)-455.90625, (decimal?)22714.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20077, Nebula.NebulaType.Planetary, "Agnaiz MS-T e3-1543", 4, true, "Agnaiz MS-T e3-1543", (decimal?)-8286.5625, (decimal?)-645.71875, (decimal?)22680.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20078, Nebula.NebulaType.Planetary, "Agnaiz VY-A e5276", 4, true, "Agnaiz VY-A e5276", (decimal?)-8177.40625, (decimal?)-388.25, (decimal?)21983.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20079, Nebula.NebulaType.Planetary, "Agnaiz WE-Z e1533", 4, true, "Agnaiz WE-Z e1533", (decimal?)-8562.28125, (decimal?)-394.375, (decimal?)22261.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20080, Nebula.NebulaType.Planetary, "Agnaiz YP-O e6-6058", 4, true, "Agnaiz YP-O e6-6058", (decimal?)-7924.6875, (decimal?)-496.46875, (decimal?)23193.5, (int)10 )); + AllOfThem.Add(new Nebula( 20182, Nebula.NebulaType.Planetary, "Aunaihm XE-Z e58", 4, true, "Aunaihm XE-Z e58", (decimal?)-8498.59375, (decimal?)2214.875, (decimal?)20915.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20183, Nebula.NebulaType.Planetary, "Aunaihn IB-X e1-541", 4, true, "Aunaihn IB-X e1-541", (decimal?)-5354.09375, (decimal?)1842.65625, (decimal?)21070.875, (int)10 )); + AllOfThem.Add(new Nebula( 20309, Nebula.NebulaType.Planetary, "Bloomee HN-S e4-3591", 4, true, "Bloomee HN-S e4-3591", (decimal?)-3675.5, (decimal?)-1452.90625, (decimal?)25404.625, (int)10 )); + AllOfThem.Add(new Nebula( 20310, Nebula.NebulaType.Planetary, "Bloomoa ON-T e3-220", 4, true, "Bloomoa ON-T e3-220", (decimal?)-7063.15625, (decimal?)-2076.15625, (decimal?)25235.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20407, Nebula.NebulaType.Planetary, "Brairoa AV-X e1-1675", 4, true, "Brairoa AV-X e1-1675", (decimal?)-4167.1875, (decimal?)-115.28125, (decimal?)31304.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20408, Nebula.NebulaType.Planetary, "Brairoa BQ-Y e425", 4, true, "Brairoa BQ-Y e425", (decimal?)-4924.53125, (decimal?)-902, (decimal?)31177.25, (int)10 )); + AllOfThem.Add(new Nebula( 20409, Nebula.NebulaType.Planetary, "Brairoa EB-X e1-5891", 4, true, "Brairoa EB-X e1-5891", (decimal?)-4739.125, (decimal?)-668.03125, (decimal?)31266.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20410, Nebula.NebulaType.Planetary, "Brairoa EM-V e2-7707", 4, true, "Brairoa EM-V e2-7707", (decimal?)-5179.28125, (decimal?)-534.15625, (decimal?)31467.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20411, Nebula.NebulaType.Planetary, "Brairoa JL-Y e8183", 4, true, "Brairoa JL-Y e8183", (decimal?)-3941.125, (decimal?)-999.0625, (decimal?)31130.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20412, Nebula.NebulaType.Planetary, "Brairoa LG-Y e4580", 4, true, "Brairoa LG-Y e4580", (decimal?)-3924.6875, (decimal?)-1272.3125, (decimal?)31238.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20413, Nebula.NebulaType.Planetary, "Brairoa SI-T e3-1292", 4, true, "Brairoa SI-T e3-1292", (decimal?)-4144, (decimal?)-868, (decimal?)31615.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20414, Nebula.NebulaType.Planetary, "Brairoa SJ-Q e5-7813", 4, true, "Brairoa SJ-Q e5-7813", (decimal?)-4532.34375, (decimal?)-465.25, (decimal?)31975.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20415, Nebula.NebulaType.Planetary, "Brairoa TJ-Q e5-7877", 4, true, "Brairoa TJ-Q e5-7877", (decimal?)-4273.90625, (decimal?)-348.25, (decimal?)31949.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20416, Nebula.NebulaType.Planetary, "Brairoa UT-R e4-6917", 4, true, "Brairoa UT-R e4-6917", (decimal?)-4211.3125, (decimal?)-730.75, (decimal?)31804.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20417, Nebula.NebulaType.Planetary, "Brairoa WO-A e6616", 4, true, "Brairoa WO-A e6616", (decimal?)-4747.71875, (decimal?)-762, (decimal?)30999.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20418, Nebula.NebulaType.Planetary, "Brairoa XZ-Y e3580", 4, true, "Brairoa XZ-Y e3580", (decimal?)-5021.53125, (decimal?)-508.3125, (decimal?)31121.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20419, Nebula.NebulaType.Planetary, "Brairoa YU-P e5-6650", 4, true, "Brairoa YU-P e5-6650", (decimal?)-4465.5, (decimal?)-945.53125, (decimal?)31991.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20420, Nebula.NebulaType.Planetary, "Brairoa ZJ-Z e13", 4, true, "Brairoa ZJ-Z e13", (decimal?)-3939.90625, (decimal?)-255.59375, (decimal?)31193.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20421, Nebula.NebulaType.Planetary, "Brairuia DB-W e2-1965", 4, true, "Brairuia DB-W e2-1965", (decimal?)-5532.53125, (decimal?)-99.96875, (decimal?)31541.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20422, Nebula.NebulaType.Planetary, "Brairuia FL-X e1-7767", 4, true, "Brairuia FL-X e1-7767", (decimal?)-5298.3125, (decimal?)-353.46875, (decimal?)31338.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20423, Nebula.NebulaType.Planetary, "Brairuia HG-X e1-2448", 4, true, "Brairuia HG-X e1-2448", (decimal?)-5309.40625, (decimal?)-646.3125, (decimal?)31410.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20425, Nebula.NebulaType.Planetary, "Brairuia JH-U e3-4963", 4, true, "Brairuia JH-U e3-4963", (decimal?)-5266.4375, (decimal?)-137.3125, (decimal?)31697.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20426, Nebula.NebulaType.Planetary, "Brairuia NX-T e3-7902", 4, true, "Brairuia NX-T e3-7902", (decimal?)-5250.34375, (decimal?)-419.28125, (decimal?)31710.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20427, Nebula.NebulaType.Planetary, "Brairuia QZ-O e6-297", 4, true, "Brairuia QZ-O e6-297", (decimal?)-6060.4375, (decimal?)-25.40625, (decimal?)32091.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20428, Nebula.NebulaType.Planetary, "Brairuia TD-B e1018", 4, true, "Brairuia TD-B e1018", (decimal?)-5570.5625, (decimal?)-209.25, (decimal?)31056.25, (int)10 )); + AllOfThem.Add(new Nebula( 20429, Nebula.NebulaType.Planetary, "Brairuia UZ-P e5-131", 4, true, "Brairuia UZ-P e5-131", (decimal?)-6027.78125, (decimal?)-729.6875, (decimal?)31952.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20430, Nebula.NebulaType.Planetary, "Brairuia XE-Q e5-1895", 4, true, "Brairuia XE-Q e5-1895", (decimal?)-5290.1875, (decimal?)-543.46875, (decimal?)32035.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20431, Nebula.NebulaType.Planetary, "Brairuia YU-Y e231", 4, true, "Brairuia YU-Y e231", (decimal?)-6337, (decimal?)-687.8125, (decimal?)31095.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20519, Nebula.NebulaType.Planetary, "Byoomai BW-V e2-690", 4, true, "Byoomai BW-V e2-690", (decimal?)-10046.21875, (decimal?)-231.0625, (decimal?)25067.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20520, Nebula.NebulaType.Planetary, "Byoomai CG-O e6-1979", 4, true, "Byoomai CG-O e6-1979", (decimal?)-9284.75, (decimal?)-715.28125, (decimal?)25666.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20521, Nebula.NebulaType.Planetary, "Byoomai CQ-Y e3439", 4, true, "Byoomai CQ-Y e3439", (decimal?)-9836.9375, (decimal?)-971.40625, (decimal?)24841.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20522, Nebula.NebulaType.Planetary, "Byoomai EL-X e1-8807", 4, true, "Byoomai EL-X e1-8807", (decimal?)-9295.375, (decimal?)-491.40625, (decimal?)24903.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20523, Nebula.NebulaType.Planetary, "Byoomai EM-V e2-92", 4, true, "Byoomai EM-V e2-92", (decimal?)-10172.78125, (decimal?)-643.78125, (decimal?)25133.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20524, Nebula.NebulaType.Planetary, "Byoomai HR-V e2-1241", 4, true, "Byoomai HR-V e2-1241", (decimal?)-9455.9375, (decimal?)-495.875, (decimal?)25120.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20525, Nebula.NebulaType.Planetary, "Byoomai JB-X e1-3451", 4, true, "Byoomai JB-X e1-3451", (decimal?)-9085.125, (decimal?)-741.59375, (decimal?)24954.125, (int)10 )); + AllOfThem.Add(new Nebula( 20526, Nebula.NebulaType.Planetary, "Byoomai JM-V e2-2266", 4, true, "Byoomai JM-V e2-2266", (decimal?)-9499.25, (decimal?)-586, (decimal?)25135.125, (int)10 )); + AllOfThem.Add(new Nebula( 20527, Nebula.NebulaType.Planetary, "Byoomai NY-R e4-392", 4, true, "Byoomai NY-R e4-392", (decimal?)-9985.125, (decimal?)-581.9375, (decimal?)25400.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20528, Nebula.NebulaType.Planetary, "Byoomai OZ-O e6-358", 4, true, "Byoomai OZ-O e6-358", (decimal?)-10201.46875, (decimal?)-88.25, (decimal?)25701.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20529, Nebula.NebulaType.Planetary, "Byoomai PJ-Q e5-3200", 4, true, "Byoomai PJ-Q e5-3200", (decimal?)-10008.125, (decimal?)-457, (decimal?)25559.25, (int)10 )); + AllOfThem.Add(new Nebula( 20530, Nebula.NebulaType.Planetary, "Byoomai QY-A e5537", 4, true, "Byoomai QY-A e5537", (decimal?)-10293.46875, (decimal?)-469.46875, (decimal?)24612.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20531, Nebula.NebulaType.Planetary, "Byoomai UT-A e1459", 4, true, "Byoomai UT-A e1459", (decimal?)-9972.03125, (decimal?)-636.59375, (decimal?)24580.375, (int)10 )); + AllOfThem.Add(new Nebula( 20532, Nebula.NebulaType.Planetary, "Byoomai UU-X e1-875", 4, true, "Byoomai UU-X e1-875", (decimal?)-10241.4375, (decimal?)-115.0625, (decimal?)24896.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20544, Nebula.NebulaType.Planetary, "Byoome CV-Y e6035", 4, true, "Byoome CV-Y e6035", (decimal?)-8294.5, (decimal?)-797.1875, (decimal?)24713.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20545, Nebula.NebulaType.Planetary, "Byoome DQ-Y e2553", 4, true, "Byoome DQ-Y e2553", (decimal?)-8521.65625, (decimal?)-848.15625, (decimal?)24760, (int)10 )); + AllOfThem.Add(new Nebula( 20546, Nebula.NebulaType.Planetary, "Byoome IR-V e2-4094", 4, true, "Byoome IR-V e2-4094", (decimal?)-8008.125, (decimal?)-451.21875, (decimal?)25085.125, (int)10 )); + AllOfThem.Add(new Nebula( 20547, Nebula.NebulaType.Planetary, "Byoome JH-V e2-5040", 4, true, "Byoome JH-V e2-5040", (decimal?)-8427.71875, (decimal?)-697.5, (decimal?)25166.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20548, Nebula.NebulaType.Planetary, "Byoome KD-S e4-5280", 4, true, "Byoome KD-S e4-5280", (decimal?)-8961.125, (decimal?)-479.625, (decimal?)25471.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20549, Nebula.NebulaType.Planetary, "Byoome KM-V e2-8032", 4, true, "Byoome KM-V e2-8032", (decimal?)-7912.9375, (decimal?)-544.09375, (decimal?)25174.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20550, Nebula.NebulaType.Planetary, "Byoome MN-S e4-3847", 4, true, "Byoome MN-S e4-3847", (decimal?)-8014.15625, (decimal?)-38.65625, (decimal?)25351.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20551, Nebula.NebulaType.Planetary, "Byoome MN-S e4-4209", 4, true, "Byoome MN-S e4-4209", (decimal?)-7917.59375, (decimal?)-109.8125, (decimal?)25458, (int)10 )); + AllOfThem.Add(new Nebula( 20552, Nebula.NebulaType.Planetary, "Byoome NX-T e3-2052", 4, true, "Byoome NX-T e3-2052", (decimal?)-7795.84375, (decimal?)-418.84375, (decimal?)25192.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20553, Nebula.NebulaType.Planetary, "Byoome OI-S e4-9213", 4, true, "Byoome OI-S e4-9213", (decimal?)-7967.09375, (decimal?)-254.625, (decimal?)25493.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20554, Nebula.NebulaType.Planetary, "Byoome RY-A e4292", 4, true, "Byoome RY-A e4292", (decimal?)-8814.84375, (decimal?)-421.53125, (decimal?)24673.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20555, Nebula.NebulaType.Planetary, "Byoome TU-O e6-2908", 4, true, "Byoome TU-O e6-2908", (decimal?)-8460.625, (decimal?)-335.75, (decimal?)25680.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20556, Nebula.NebulaType.Planetary, "Byoome TU-O e6-697", 4, true, "Byoome TU-O e6-697", (decimal?)-8429.6875, (decimal?)-244.875, (decimal?)25659.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20557, Nebula.NebulaType.Planetary, "Byoome WU-O e6-566", 4, true, "Byoome WU-O e6-566", (decimal?)-7937.65625, (decimal?)-216.25, (decimal?)25718.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20558, Nebula.NebulaType.Planetary, "Byoome XK-O e6-1031", 4, true, "Byoome XK-O e6-1031", (decimal?)-8502.3125, (decimal?)-656.15625, (decimal?)25717.25, (int)10 )); + AllOfThem.Add(new Nebula( 20559, Nebula.NebulaType.Planetary, "Byoome YZ-Y e3312", 4, true, "Byoome YZ-Y e3312", (decimal?)-8634.78125, (decimal?)-528.84375, (decimal?)24842.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20560, Nebula.NebulaType.Planetary, "Byoome ZK-O e6-4926", 4, true, "Byoome ZK-O e6-4926", (decimal?)-8128, (decimal?)-506.03125, (decimal?)25741.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20561, Nebula.NebulaType.Planetary, "Byoome ZP-O e6-937", 4, true, "Byoome ZP-O e6-937", (decimal?)-7889.78125, (decimal?)-489.1875, (decimal?)25725.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20579, Nebula.NebulaType.Planetary, "Byoomi AW-V e2-2303", 4, true, "Byoomi AW-V e2-2303", (decimal?)-2568.03125, (decimal?)-249.75, (decimal?)25015.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20581, Nebula.NebulaType.Planetary, "Byoomi EC-U e3-55", 4, true, "Byoomi EC-U e3-55", (decimal?)-2524.09375, (decimal?)-333.3125, (decimal?)25315.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20587, Nebula.NebulaType.Planetary, "Byoomi QO-Z e7718", 4, true, "Byoomi QO-Z e7718", (decimal?)-2591.46875, (decimal?)-38.40625, (decimal?)24764.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20592, Nebula.NebulaType.Planetary, "Byoomi UJ-Z e7463", 4, true, "Byoomi UJ-Z e7463", (decimal?)-2294.21875, (decimal?)-217.21875, (decimal?)24844.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20597, Nebula.NebulaType.Planetary, "Byoomiae BF-Z e3956", 4, true, "Byoomiae BF-Z e3956", (decimal?)-6491.1875, (decimal?)-390.78125, (decimal?)24848.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20598, Nebula.NebulaType.Planetary, "Byoomiae CK-A e2523", 4, true, "Byoomiae CK-A e2523", (decimal?)-6665.40625, (decimal?)-864.59375, (decimal?)24618.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20599, Nebula.NebulaType.Planetary, "Byoomiae DW-V e2-2462", 4, true, "Byoomiae DW-V e2-2462", (decimal?)-7235.03125, (decimal?)-328.09375, (decimal?)25147.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20600, Nebula.NebulaType.Planetary, "Byoomiae EQ-Y e4958", 4, true, "Byoomiae EQ-Y e4958", (decimal?)-7021.53125, (decimal?)-916.5, (decimal?)24840.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20601, Nebula.NebulaType.Planetary, "Byoomiae EV-Y e3264", 4, true, "Byoomiae EV-Y e3264", (decimal?)-6697.0625, (decimal?)-764.15625, (decimal?)24853.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20602, Nebula.NebulaType.Planetary, "Byoomiae GG-X e1-9550", 4, true, "Byoomiae GG-X e1-9550", (decimal?)-6715, (decimal?)-571.65625, (decimal?)25005.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20603, Nebula.NebulaType.Planetary, "Byoomiae LH-V e2-2783", 4, true, "Byoomiae LH-V e2-2783", (decimal?)-6892.375, (decimal?)-751.71875, (decimal?)25028.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20604, Nebula.NebulaType.Planetary, "Byoomiae LN-S e4-4988", 4, true, "Byoomiae LN-S e4-4988", (decimal?)-6852.90625, (decimal?)-62.3125, (decimal?)25441.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20605, Nebula.NebulaType.Planetary, "Byoomiae LS-T e3-9277", 4, true, "Byoomiae LS-T e3-9277", (decimal?)-7239.03125, (decimal?)-611.9375, (decimal?)25322, (int)10 )); + AllOfThem.Add(new Nebula( 20606, Nebula.NebulaType.Planetary, "Byoomiae MI-S e4-4316", 4, true, "Byoomiae MI-S e4-4316", (decimal?)-6990.28125, (decimal?)-231.90625, (decimal?)25447.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20607, Nebula.NebulaType.Planetary, "Byoomiae NX-T e3-8026", 4, true, "Byoomiae NX-T e3-8026", (decimal?)-6599.71875, (decimal?)-496.65625, (decimal?)25198.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20608, Nebula.NebulaType.Planetary, "Byoomiae NX-T e3-9398", 4, true, "Byoomiae NX-T e3-9398", (decimal?)-6612.90625, (decimal?)-362.21875, (decimal?)25175, (int)10 )); + AllOfThem.Add(new Nebula( 20609, Nebula.NebulaType.Planetary, "Byoomiae ON-T e3-2155", 4, true, "Byoomiae ON-T e3-2155", (decimal?)-7089.46875, (decimal?)-673.96875, (decimal?)25302.25, (int)10 )); + AllOfThem.Add(new Nebula( 20610, Nebula.NebulaType.Planetary, "Byoomiae OT-R e4-4270", 4, true, "Byoomiae OT-R e4-4270", (decimal?)-7701.15625, (decimal?)-809.28125, (decimal?)25469.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20611, Nebula.NebulaType.Planetary, "Byoomiae PI-B e2098", 4, true, "Byoomiae PI-B e2098", (decimal?)-7125.125, (decimal?)-151.96875, (decimal?)24642.625, (int)10 )); + AllOfThem.Add(new Nebula( 20612, Nebula.NebulaType.Planetary, "Byoomiae PI-B e6353", 4, true, "Byoomiae PI-B e6353", (decimal?)-7252.9375, (decimal?)-42.09375, (decimal?)24622.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20613, Nebula.NebulaType.Planetary, "Byoomiae PI-T e3-2251", 4, true, "Byoomiae PI-T e3-2251", (decimal?)-7138.9375, (decimal?)-830.71875, (decimal?)25285.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20614, Nebula.NebulaType.Planetary, "Byoomiae PT-R e4-296", 4, true, "Byoomiae PT-R e4-296", (decimal?)-7486.40625, (decimal?)-810.3125, (decimal?)25356.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20615, Nebula.NebulaType.Planetary, "Byoomiae PY-R e4-8079", 4, true, "Byoomiae PY-R e4-8079", (decimal?)-7159.78125, (decimal?)-649.15625, (decimal?)25430.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20616, Nebula.NebulaType.Planetary, "Byoomiae QJ-Q e5-8808", 4, true, "Byoomiae QJ-Q e5-8808", (decimal?)-7331.875, (decimal?)-358.875, (decimal?)25513.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20617, Nebula.NebulaType.Planetary, "Byoomiae QY-R e4-5502", 4, true, "Byoomiae QY-R e4-5502", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 20618, Nebula.NebulaType.Planetary, "Byoomiae RE-Q e5-6125", 4, true, "Byoomiae RE-Q e5-6125", (decimal?)-7492.6875, (decimal?)-573.96875, (decimal?)25602.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20619, Nebula.NebulaType.Planetary, "Byoomiae SY-R e4-9776", 4, true, "Byoomiae SY-R e4-9776", (decimal?)-6733.125, (decimal?)-514.84375, (decimal?)25448.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20620, Nebula.NebulaType.Planetary, "Byoomiae VK-O e6-6009", 4, true, "Byoomiae VK-O e6-6009", (decimal?)-7492.0625, (decimal?)-607.9375, (decimal?)25810.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20621, Nebula.NebulaType.Planetary, "Byoomiae VO-Z e8323", 4, true, "Byoomiae VO-Z e8323", (decimal?)-6898.5625, (decimal?)-182.3125, (decimal?)24757.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20622, Nebula.NebulaType.Planetary, "Byoomiae WE-Z e3072", 4, true, "Byoomiae WE-Z e3072", (decimal?)-7319.03125, (decimal?)-426.59375, (decimal?)24710.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20623, Nebula.NebulaType.Planetary, "Byoomiae WP-X e1-7327", 4, true, "Byoomiae WP-X e1-7327", (decimal?)-7603.875, (decimal?)-269.9375, (decimal?)24919, (int)10 )); + AllOfThem.Add(new Nebula( 20624, Nebula.NebulaType.Planetary, "Byoomiae XU-X e1-4378", 4, true, "Byoomiae XU-X e1-4378", (decimal?)-7207.375, (decimal?)-104.46875, (decimal?)24894.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20637, Nebula.NebulaType.Planetary, "Byoomue JN-S e4-446", 4, true, "Byoomue JN-S e4-446", (decimal?)-10986.71875, (decimal?)-126.6875, (decimal?)25484.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20638, Nebula.NebulaType.Planetary, "Byoomue XT-A e3954", 4, true, "Byoomue XT-A e3954", (decimal?)-10722.625, (decimal?)-619.15625, (decimal?)24576.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20651, Nebula.NebulaType.Planetary, "Choomaae CB-O e6-5663", 4, true, "Choomaae CB-O e6-5663", (decimal?)-4450.71875, (decimal?)357.21875, (decimal?)25797.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20652, Nebula.NebulaType.Planetary, "Choomaae DR-V e2-3217", 4, true, "Choomaae DR-V e2-3217", (decimal?)-5011.78125, (decimal?)882.3125, (decimal?)25109.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20653, Nebula.NebulaType.Planetary, "Choomaae JM-V e2-4665", 4, true, "Choomaae JM-V e2-4665", (decimal?)-4257.28125, (decimal?)709.09375, (decimal?)25131.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20654, Nebula.NebulaType.Planetary, "Choomaae LC-V e2-6901", 4, true, "Choomaae LC-V e2-6901", (decimal?)-4583.875, (decimal?)418.5625, (decimal?)25028.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20655, Nebula.NebulaType.Planetary, "Choomaae LM-V e2-7841", 4, true, "Choomaae LM-V e2-7841", (decimal?)-3966.375, (decimal?)726.96875, (decimal?)25139.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20656, Nebula.NebulaType.Planetary, "Choomaae NS-T e3-1690", 4, true, "Choomaae NS-T e3-1690", (decimal?)-4231.875, (decimal?)745.84375, (decimal?)25231.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20657, Nebula.NebulaType.Planetary, "Choomaae YE-R e4-5653", 4, true, "Choomaae YE-R e4-5653", (decimal?)-4426.25, (decimal?)132.34375, (decimal?)25398.875, (int)10 )); + AllOfThem.Add(new Nebula( 20658, Nebula.NebulaType.Planetary, "Choomaei AF-Z e5681", 4, true, "Choomaei AF-Z e5681", (decimal?)-9208.8125, (decimal?)845.96875, (decimal?)24792.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20659, Nebula.NebulaType.Planetary, "Choomaei AL-O e6-5165", 4, true, "Choomaei AL-O e6-5165", (decimal?)-9212.625, (decimal?)624.0625, (decimal?)25745, (int)10 )); + AllOfThem.Add(new Nebula( 20660, Nebula.NebulaType.Planetary, "Choomaei BV-Y e144", 4, true, "Choomaei BV-Y e144", (decimal?)-9692.46875, (decimal?)515.1875, (decimal?)24775.5, (int)10 )); + AllOfThem.Add(new Nebula( 20661, Nebula.NebulaType.Planetary, "Choomaei CA-Z e3180", 4, true, "Choomaei CA-Z e3180", (decimal?)-9324.75, (decimal?)653.375, (decimal?)24740.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20662, Nebula.NebulaType.Planetary, "Choomaei CB-O e6-5102", 4, true, "Choomaei CB-O e6-5102", (decimal?)-9583.625, (decimal?)410.84375, (decimal?)25713.625, (int)10 )); + AllOfThem.Add(new Nebula( 20663, Nebula.NebulaType.Planetary, "Choomaei CF-A e499", 4, true, "Choomaei CF-A e499", (decimal?)-9558.3125, (decimal?)202.3125, (decimal?)24586.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20664, Nebula.NebulaType.Planetary, "Choomaei FF-A e6933", 4, true, "Choomaei FF-A e6933", (decimal?)-9082.8125, (decimal?)224.59375, (decimal?)24653.125, (int)10 )); + AllOfThem.Add(new Nebula( 20665, Nebula.NebulaType.Planetary, "Choomaei FR-V e2-3467", 4, true, "Choomaei FR-V e2-3467", (decimal?)-9691.3125, (decimal?)790.0625, (decimal?)25169.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20666, Nebula.NebulaType.Planetary, "Choomaei JW-W e1-3668", 4, true, "Choomaei JW-W e1-3668", (decimal?)-9415.8125, (decimal?)446.21875, (decimal?)24990.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20667, Nebula.NebulaType.Planetary, "Choomaei NH-V e2-8490", 4, true, "Choomaei NH-V e2-8490", (decimal?)-9092.96875, (decimal?)511.15625, (decimal?)25040.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20668, Nebula.NebulaType.Planetary, "Choomaei NX-U e2-8146", 4, true, "Choomaei NX-U e2-8146", (decimal?)-9809.6875, (decimal?)284.3125, (decimal?)25078.875, (int)10 )); + AllOfThem.Add(new Nebula( 20669, Nebula.NebulaType.Planetary, "Choomaei TJ-Q e5-3190", 4, true, "Choomaei TJ-Q e5-3190", (decimal?)-9463.96875, (decimal?)895, (decimal?)25644.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20670, Nebula.NebulaType.Planetary, "Choomaei VT-R e4-2797", 4, true, "Choomaei VT-R e4-2797", (decimal?)-9131.71875, (decimal?)589.34375, (decimal?)25460.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20671, Nebula.NebulaType.Planetary, "Choomaei WJ-R e4-6315", 4, true, "Choomaei WJ-R e4-6315", (decimal?)-9534.1875, (decimal?)259.53125, (decimal?)25483.125, (int)10 )); + AllOfThem.Add(new Nebula( 20672, Nebula.NebulaType.Planetary, "Choomaei ZK-P e5-1368", 4, true, "Choomaei ZK-P e5-1368", (decimal?)-10131.40625, (decimal?)93.28125, (decimal?)25604.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20673, Nebula.NebulaType.Planetary, "Choomeau BQ-Y e3313", 4, true, "Choomeau BQ-Y e3313", (decimal?)-3709.03125, (decimal?)430.5, (decimal?)24736.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20674, Nebula.NebulaType.Planetary, "Choomeau EL-X e1-2075", 4, true, "Choomeau EL-X e1-2075", (decimal?)-2878.6875, (decimal?)794.25, (decimal?)24952.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20675, Nebula.NebulaType.Planetary, "Choomeau FL-Y e7794", 4, true, "Choomeau FL-Y e7794", (decimal?)-3364.3125, (decimal?)245.6875, (decimal?)24748.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20676, Nebula.NebulaType.Planetary, "Choomeau GG-X e1-8678", 4, true, "Choomeau GG-X e1-8678", (decimal?)-2856.5, (decimal?)773.21875, (decimal?)24871.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20677, Nebula.NebulaType.Planetary, "Choomeau GG-X e1-9258", 4, true, "Choomeau GG-X e1-9258", (decimal?)-2815.03125, (decimal?)769.03125, (decimal?)24978.5, (int)10 )); + AllOfThem.Add(new Nebula( 20678, Nebula.NebulaType.Planetary, "Choomeau II-S e4-6758", 4, true, "Choomeau II-S e4-6758", (decimal?)-3875.59375, (decimal?)1046.96875, (decimal?)25431.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20679, Nebula.NebulaType.Planetary, "Choomeau LI-S e4-7199", 4, true, "Choomeau LI-S e4-7199", (decimal?)-3366.625, (decimal?)970.1875, (decimal?)25353.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20680, Nebula.NebulaType.Planetary, "Choomeau OC-V e2-5623", 4, true, "Choomeau OC-V e2-5623", (decimal?)-2912.125, (decimal?)409.84375, (decimal?)25152.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20681, Nebula.NebulaType.Planetary, "Choomeau RU-O e6-9212", 4, true, "Choomeau RU-O e6-9212", (decimal?)-3590.1875, (decimal?)1076.9375, (decimal?)25661.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20682, Nebula.NebulaType.Planetary, "Choomeau SU-O e6-3162", 4, true, "Choomeau SU-O e6-3162", (decimal?)-3527.09375, (decimal?)1058.5, (decimal?)25728.125, (int)10 )); + AllOfThem.Add(new Nebula( 20683, Nebula.NebulaType.Planetary, "Choomeau SU-O e6-6777", 4, true, "Choomeau SU-O e6-6777", (decimal?)-3461.6875, (decimal?)1077.78125, (decimal?)25728.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20684, Nebula.NebulaType.Planetary, "Choomeau TY-S e3-7704", 4, true, "Choomeau TY-S e3-7704", (decimal?)-3268.1875, (decimal?)25.40625, (decimal?)25324.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20685, Nebula.NebulaType.Planetary, "Choomeau UJ-Q e5-663", 4, true, "Choomeau UJ-Q e5-663", (decimal?)-2935.03125, (decimal?)845.25, (decimal?)25621.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20686, Nebula.NebulaType.Planetary, "Choomeau UK-O e6-2862", 4, true, "Choomeau UK-O e6-2862", (decimal?)-3767.96875, (decimal?)676.71875, (decimal?)25796.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20687, Nebula.NebulaType.Planetary, "Choomeau VE-Q e5-428", 4, true, "Choomeau VE-Q e5-428", (decimal?)-2993.40625, (decimal?)623.03125, (decimal?)25633.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20688, Nebula.NebulaType.Planetary, "Choomeau VE-Q e5-7630", 4, true, "Choomeau VE-Q e5-7630", (decimal?)-2993.90625, (decimal?)657.78125, (decimal?)25599.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20689, Nebula.NebulaType.Planetary, "Choomeau VJ-R e4-1951", 4, true, "Choomeau VJ-R e4-1951", (decimal?)-3376.75, (decimal?)196, (decimal?)25347.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20690, Nebula.NebulaType.Planetary, "Choomeau VZ-P e5-2362", 4, true, "Choomeau VZ-P e5-2362", (decimal?)-3367.625, (decimal?)553.75, (decimal?)25596.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20691, Nebula.NebulaType.Planetary, "Choomeau ZT-A e2265", 4, true, "Choomeau ZT-A e2265", (decimal?)-2728.0625, (decimal?)696.75, (decimal?)24535.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20695, Nebula.NebulaType.Planetary, "Choomee JM-W e1-2907", 4, true, "Choomee JM-W e1-2907", (decimal?)-2360.3125, (decimal?)10.96875, (decimal?)24963.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20696, Nebula.NebulaType.Planetary, "Choomee KN-T e3-2530", 4, true, "Choomee KN-T e3-2530", (decimal?)-2488.28125, (decimal?)484.40625, (decimal?)25293.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20699, Nebula.NebulaType.Planetary, "Choomee RY-S e3-1146", 4, true, "Choomee RY-S e3-1146", (decimal?)-2430.15625, (decimal?)96.03125, (decimal?)25183.125, (int)10 )); + AllOfThem.Add(new Nebula( 20703, Nebula.NebulaType.Planetary, "Choomeou IL-Y e402", 4, true, "Choomeou IL-Y e402", (decimal?)-10535.5, (decimal?)222.9375, (decimal?)24835.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20704, Nebula.NebulaType.Planetary, "Choomeou IR-N e6-770", 4, true, "Choomeou IR-N e6-770", (decimal?)-10562.15625, (decimal?)12.90625, (decimal?)25667.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20706, Nebula.NebulaType.Planetary, "Choomeou VT-R e4-50", 4, true, "Choomeou VT-R e4-50", (decimal?)-10439.65625, (decimal?)465.90625, (decimal?)25476.875, (int)10 )); + AllOfThem.Add(new Nebula( 20708, Nebula.NebulaType.Planetary, "Choomuia AL-O e6-2623", 4, true, "Choomuia AL-O e6-2623", (decimal?)-6628.8125, (decimal?)774.71875, (decimal?)25762.125, (int)10 )); + AllOfThem.Add(new Nebula( 20709, Nebula.NebulaType.Planetary, "Choomuia BB-O e6-8889", 4, true, "Choomuia BB-O e6-8889", (decimal?)-7221.09375, (decimal?)355.75, (decimal?)25691.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20710, Nebula.NebulaType.Planetary, "Choomuia ER-V e2-2693", 4, true, "Choomuia ER-V e2-2693", (decimal?)-7313.625, (decimal?)878.09375, (decimal?)25122.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20711, Nebula.NebulaType.Planetary, "Choomuia HC-U e3-278", 4, true, "Choomuia HC-U e3-278", (decimal?)-7247.25, (decimal?)966.21875, (decimal?)25188.625, (int)10 )); + AllOfThem.Add(new Nebula( 20712, Nebula.NebulaType.Planetary, "Choomuia HM-V e2-3373", 4, true, "Choomuia HM-V e2-3373", (decimal?)-7137, (decimal?)757.59375, (decimal?)25074.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20713, Nebula.NebulaType.Planetary, "Choomuia JI-S e4-366", 4, true, "Choomuia JI-S e4-366", (decimal?)-7428.3125, (decimal?)994.96875, (decimal?)25450.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20714, Nebula.NebulaType.Planetary, "Choomuia KD-S e4-813", 4, true, "Choomuia KD-S e4-813", (decimal?)-7702.375, (decimal?)814.3125, (decimal?)25352.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20715, Nebula.NebulaType.Planetary, "Choomuia NH-V e2-3622", 4, true, "Choomuia NH-V e2-3622", (decimal?)-6490.90625, (decimal?)489.9375, (decimal?)25114.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20716, Nebula.NebulaType.Planetary, "Choomuia SZ-P e5-3346", 4, true, "Choomuia SZ-P e5-3346", (decimal?)-7646.75, (decimal?)500.15625, (decimal?)25622.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20717, Nebula.NebulaType.Planetary, "Choomuia XE-Q e5-10440", 4, true, "Choomuia XE-Q e5-10440", (decimal?)-6479.6875, (decimal?)625.3125, (decimal?)25649.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20718, Nebula.NebulaType.Planetary, "Choomuia XO-A e2387", 4, true, "Choomuia XO-A e2387", (decimal?)-7164.75, (decimal?)517.1875, (decimal?)24675.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20719, Nebula.NebulaType.Planetary, "Choomuia XP-O e6-6279", 4, true, "Choomuia XP-O e6-6279", (decimal?)-6827.34375, (decimal?)914.03125, (decimal?)25726.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20720, Nebula.NebulaType.Planetary, "Choomuia XU-P e5-5900", 4, true, "Choomuia XU-P e5-5900", (decimal?)-7247.71875, (decimal?)406.375, (decimal?)25624.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20721, Nebula.NebulaType.Planetary, "Choomuia ZF-O e6-3767", 4, true, "Choomuia ZF-O e6-3767", (decimal?)-7190.25, (decimal?)524.375, (decimal?)25765.375, (int)10 )); + AllOfThem.Add(new Nebula( 20722, Nebula.NebulaType.Planetary, "Chraisa AV-Y f1133", 4, true, "Chraisa AV-Y f1133", (decimal?)-5601.78125, (decimal?)-1473.75, (decimal?)31523.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20727, Nebula.NebulaType.Planetary, "Chraisue EH-U e3-1134", 4, true, "Chraisue EH-U e3-1134", (decimal?)-4724.875, (decimal?)-1382.84375, (decimal?)31625.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20728, Nebula.NebulaType.Planetary, "Chraisue IC-U e3-1801", 4, true, "Chraisue IC-U e3-1801", (decimal?)-4412.34375, (decimal?)-1583.75, (decimal?)31619.5, (int)10 )); + AllOfThem.Add(new Nebula( 20729, Nebula.NebulaType.Planetary, "Chraisue PT-Q e5-1313", 4, true, "Chraisue PT-Q e5-1313", (decimal?)-4261.96875, (decimal?)-1391.5, (decimal?)32004.125, (int)10 )); + AllOfThem.Add(new Nebula( 20778, Nebula.NebulaType.Planetary, "Croomoea CG-O e6-419", 4, true, "Croomoea CG-O e6-419", (decimal?)-2896.28125, (decimal?)1832.1875, (decimal?)25762.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20779, Nebula.NebulaType.Planetary, "Croomoea TI-T e3-3107", 4, true, "Croomoea TI-T e3-3107", (decimal?)-2719.9375, (decimal?)1700.34375, (decimal?)25204.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20780, Nebula.NebulaType.Planetary, "Croomoea ZO-A e1919", 4, true, "Croomoea ZO-A e1919", (decimal?)-2968.125, (decimal?)1834.625, (decimal?)24612, (int)10 )); + AllOfThem.Add(new Nebula( 20782, Nebula.NebulaType.Planetary, "Croomoi MI-T e3-618", 4, true, "Croomoi MI-T e3-618", (decimal?)-2473.28125, (decimal?)1721.6875, (decimal?)25291.5, (int)10 )); + AllOfThem.Add(new Nebula( 20800, Nebula.NebulaType.Planetary, "Dryaa Blou II-S e4-7028", 4, true, "Dryaa Blou II-S e4-7028", (decimal?)-2472.0625, (decimal?)-272.625, (decimal?)29265.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20802, Nebula.NebulaType.Planetary, "Dryaa Blou NT-Q e5-4794", 4, true, "Dryaa Blou NT-Q e5-4794", (decimal?)-2103.78125, (decimal?)-97.875, (decimal?)29394.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20804, Nebula.NebulaType.Planetary, "Dryaa Blou WP-O e6-7859", 4, true, "Dryaa Blou WP-O e6-7859", (decimal?)-1912.59375, (decimal?)-383.1875, (decimal?)29533.875, (int)10 )); + AllOfThem.Add(new Nebula( 20884, Nebula.NebulaType.Planetary, "Dryao Aoscs CR-N e6-2804", 4, true, "Dryao Aoscs CR-N e6-2804", (decimal?)-3754.15625, (decimal?)64.6875, (decimal?)19410.5, (int)10 )); + AllOfThem.Add(new Nebula( 20890, Nebula.NebulaType.Planetary, "Dryao Aoscs QU-O e6-2280", 4, true, "Dryao Aoscs QU-O e6-2280", (decimal?)-3864.78125, (decimal?)1031.6875, (decimal?)19301.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20894, Nebula.NebulaType.Planetary, "Dryao Aoscs SZ-P e5-6122", 4, true, "Dryao Aoscs SZ-P e5-6122", (decimal?)-3756.03125, (decimal?)581.6875, (decimal?)19220.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20897, Nebula.NebulaType.Planetary, "Dryao Aoscs YF-O e6-8693", 4, true, "Dryao Aoscs YF-O e6-8693", (decimal?)-3535.21875, (decimal?)503.6875, (decimal?)19393.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20914, Nebula.NebulaType.Planetary, "Dryao Chraei BG-X e1-7499", 4, true, "Dryao Chraei BG-X e1-7499", (decimal?)-3594.28125, (decimal?)751.1875, (decimal?)28814.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20915, Nebula.NebulaType.Planetary, "Dryao Chraei CL-X e1-4259", 4, true, "Dryao Chraei CL-X e1-4259", (decimal?)-3126.3125, (decimal?)917.5, (decimal?)28696.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20916, Nebula.NebulaType.Planetary, "Dryao Chraei FC-U e3-9411", 4, true, "Dryao Chraei FC-U e3-9411", (decimal?)-3630.46875, (decimal?)976.84375, (decimal?)29174.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20917, Nebula.NebulaType.Planetary, "Dryao Chraei IX-T e3-2407", 4, true, "Dryao Chraei IX-T e3-2407", (decimal?)-3475.03125, (decimal?)914.9375, (decimal?)29081.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20918, Nebula.NebulaType.Planetary, "Dryao Chraei JG-Y e6872", 4, true, "Dryao Chraei JG-Y e6872", (decimal?)-3056.5, (decimal?)33, (decimal?)28549.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20919, Nebula.NebulaType.Planetary, "Dryao Chraei JW-W e1-1475", 4, true, "Dryao Chraei JW-W e1-1475", (decimal?)-3076.5625, (decimal?)360.625, (decimal?)28748.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20920, Nebula.NebulaType.Planetary, "Dryao Chraei KG-Y e149", 4, true, "Dryao Chraei KG-Y e149", (decimal?)-2923.71875, (decimal?)48.21875, (decimal?)28659.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20921, Nebula.NebulaType.Planetary, "Dryao Chraei MI-S e4-35", 4, true, "Dryao Chraei MI-S e4-35", (decimal?)-3151.1875, (decimal?)1025.65625, (decimal?)29176.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20922, Nebula.NebulaType.Planetary, "Dryao Chraei NS-T e3-3515", 4, true, "Dryao Chraei NS-T e3-3515", (decimal?)-2996.9375, (decimal?)745.625, (decimal?)29093.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20923, Nebula.NebulaType.Planetary, "Dryao Chraei RS-U e2-2113", 4, true, "Dryao Chraei RS-U e2-2113", (decimal?)-3063.84375, (decimal?)101.21875, (decimal?)28886.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20924, Nebula.NebulaType.Planetary, "Dryao Chraei UJ-Q e5-4504", 4, true, "Dryao Chraei UJ-Q e5-4504", (decimal?)-2895.90625, (decimal?)824.53125, (decimal?)29350.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20925, Nebula.NebulaType.Planetary, "Dryao Chraei VJ-Q e5-9836", 4, true, "Dryao Chraei VJ-Q e5-9836", (decimal?)-2757.15625, (decimal?)823.15625, (decimal?)29362.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20926, Nebula.NebulaType.Planetary, "Dryao Chraei VZ-P e5-2583", 4, true, "Dryao Chraei VZ-P e5-2583", (decimal?)-3289.84375, (decimal?)599.34375, (decimal?)29352.625, (int)10 )); + AllOfThem.Add(new Nebula( 20927, Nebula.NebulaType.Planetary, "Dryao Chraei XP-O e6-4898", 4, true, "Dryao Chraei XP-O e6-4898", (decimal?)-3064.40625, (decimal?)908.625, (decimal?)29536.75, (int)10 )); + AllOfThem.Add(new Nebula( 20928, Nebula.NebulaType.Planetary, "Dryao Chraei ZK-X e1-2346", 4, true, "Dryao Chraei ZK-X e1-2346", (decimal?)-3620.6875, (decimal?)926.40625, (decimal?)28717.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20979, Nebula.NebulaType.Planetary, "Dryau Chraei JI-S e4-6078", 4, true, "Dryau Chraei JI-S e4-6078", (decimal?)-2440.375, (decimal?)976.34375, (decimal?)29191.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20981, Nebula.NebulaType.Planetary, "Dryau Chraei QO-Q e5-7371", 4, true, "Dryau Chraei QO-Q e5-7371", (decimal?)-1884.875, (decimal?)1067.15625, (decimal?)29450.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21005, Nebula.NebulaType.Planetary, "Dryi Aub BW-V e2-7240", 4, true, "Dryi Aub BW-V e2-7240", (decimal?)-4989.03125, (decimal?)1032, (decimal?)21237.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21008, Nebula.NebulaType.Planetary, "Dryi Aub CW-V e2-6362", 4, true, "Dryi Aub CW-V e2-6362", (decimal?)-4780.9375, (decimal?)1022.28125, (decimal?)21322.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21009, Nebula.NebulaType.Planetary, "Dryi Aub DG-O e6-4635", 4, true, "Dryi Aub DG-O e6-4635", (decimal?)-3967.90625, (decimal?)601.21875, (decimal?)21831.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21011, Nebula.NebulaType.Planetary, "Dryi Aub LN-S e4-7883", 4, true, "Dryi Aub LN-S e4-7883", (decimal?)-4285.40625, (decimal?)1125.09375, (decimal?)21512.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21012, Nebula.NebulaType.Planetary, "Dryi Aub MI-T e3-2595", 4, true, "Dryi Aub MI-T e3-2595", (decimal?)-5027.375, (decimal?)377.53125, (decimal?)21450.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21013, Nebula.NebulaType.Planetary, "Dryi Aub PD-T e3-1616", 4, true, "Dryi Aub PD-T e3-1616", (decimal?)-4921.5, (decimal?)269.96875, (decimal?)21466.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21014, Nebula.NebulaType.Planetary, "Dryi Aub PO-Q e5-4989", 4, true, "Dryi Aub PO-Q e5-4989", (decimal?)-4595.875, (decimal?)1022.0625, (decimal?)21668.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21015, Nebula.NebulaType.Planetary, "Dryi Aub QO-Q e5-1757", 4, true, "Dryi Aub QO-Q e5-1757", (decimal?)-4390.03125, (decimal?)1042.34375, (decimal?)21785.625, (int)10 )); + AllOfThem.Add(new Nebula( 21016, Nebula.NebulaType.Planetary, "Dryi Aub QO-Q e5-4954", 4, true, "Dryi Aub QO-Q e5-4954", (decimal?)-4420.03125, (decimal?)1085.21875, (decimal?)21775.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21017, Nebula.NebulaType.Planetary, "Dryi Aub TD-B e8685", 4, true, "Dryi Aub TD-B e8685", (decimal?)-4286, (decimal?)1071.40625, (decimal?)20716.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21018, Nebula.NebulaType.Planetary, "Dryi Aub VP-O e6-2270", 4, true, "Dryi Aub VP-O e6-2270", (decimal?)-4546.4375, (decimal?)846.875, (decimal?)21931.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21019, Nebula.NebulaType.Planetary, "Dryi Aub WJ-A e1684", 4, true, "Dryi Aub WJ-A e1684", (decimal?)-5183.8125, (decimal?)398.75, (decimal?)20759.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21020, Nebula.NebulaType.Planetary, "Dryi Aub WP-X e1-4369", 4, true, "Dryi Aub WP-X e1-4369", (decimal?)-5183.65625, (decimal?)941.71875, (decimal?)21174.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21021, Nebula.NebulaType.Planetary, "Dryi Audst NX-U e2-1996", 4, true, "Dryi Audst NX-U e2-1996", (decimal?)-4693.9375, (decimal?)1446.1875, (decimal?)21324.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21022, Nebula.NebulaType.Planetary, "Dryi Audst XP-P e5-3125", 4, true, "Dryi Audst XP-P e5-3125", (decimal?)-4984.5, (decimal?)1469.6875, (decimal?)21747.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21038, Nebula.NebulaType.Planetary, "Dryi Ausms UY-S e3-1113", 4, true, "Dryi Ausms UY-S e3-1113", (decimal?)-7098.625, (decimal?)1293, (decimal?)21366.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21042, Nebula.NebulaType.Planetary, "Dryi Bre FA-A e630", 4, true, "Dryi Bre FA-A e630", (decimal?)-6842.96875, (decimal?)18.34375, (decimal?)30986.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21044, Nebula.NebulaType.Planetary, "Dryi Briae JB-X e1-3774", 4, true, "Dryi Briae JB-X e1-3774", (decimal?)-4032.15625, (decimal?)549.40625, (decimal?)31336.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21045, Nebula.NebulaType.Planetary, "Dryi Briae JB-X e1-5968", 4, true, "Dryi Briae JB-X e1-5968", (decimal?)-3940.84375, (decimal?)543.9375, (decimal?)31269.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21046, Nebula.NebulaType.Planetary, "Dryi Briae MN-T e3-3809", 4, true, "Dryi Briae MN-T e3-3809", (decimal?)-4712.96875, (decimal?)478.875, (decimal?)31641.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21047, Nebula.NebulaType.Planetary, "Dryi Briae NS-T e3-6469", 4, true, "Dryi Briae NS-T e3-6469", (decimal?)-4344.59375, (decimal?)738.09375, (decimal?)31591.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21048, Nebula.NebulaType.Planetary, "Dryi Briae PY-R e4-4689", 4, true, "Dryi Briae PY-R e4-4689", (decimal?)-4574.5, (decimal?)742.6875, (decimal?)31833.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21049, Nebula.NebulaType.Planetary, "Dryi Briae RE-Q e5-5796", 4, true, "Dryi Briae RE-Q e5-5796", (decimal?)-4919.8125, (decimal?)713.90625, (decimal?)31986.625, (int)10 )); + AllOfThem.Add(new Nebula( 21050, Nebula.NebulaType.Planetary, "Dryi Briae SO-Q e5-5100", 4, true, "Dryi Briae SO-Q e5-5100", (decimal?)-4085.9375, (decimal?)1089.3125, (decimal?)32034.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21051, Nebula.NebulaType.Planetary, "Dryi Briae UO-A e3369", 4, true, "Dryi Briae UO-A e3369", (decimal?)-5125.8125, (decimal?)599.96875, (decimal?)31092.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21052, Nebula.NebulaType.Planetary, "Dryi Briae VE-Q e5-4666", 4, true, "Dryi Briae VE-Q e5-4666", (decimal?)-4244.96875, (decimal?)718.71875, (decimal?)32013, (int)10 )); + AllOfThem.Add(new Nebula( 21053, Nebula.NebulaType.Planetary, "Dryi Briae WE-Q e5-7176", 4, true, "Dryi Briae WE-Q e5-7176", (decimal?)-4088.78125, (decimal?)690.96875, (decimal?)31992.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21054, Nebula.NebulaType.Planetary, "Dryi Briae XE-R e4-1409", 4, true, "Dryi Briae XE-R e4-1409", (decimal?)-4615.34375, (decimal?)98.5, (decimal?)31750.75, (int)10 )); + AllOfThem.Add(new Nebula( 21055, Nebula.NebulaType.Planetary, "Dryi Briae YK-O e6-7386", 4, true, "Dryi Briae YK-O e6-7386", (decimal?)-4393.96875, (decimal?)766.96875, (decimal?)32142.5, (int)10 )); + AllOfThem.Add(new Nebula( 21066, Nebula.NebulaType.Planetary, "Dryi Chraei AL-P e5-5711", 4, true, "Dryi Chraei AL-P e5-5711", (decimal?)-7333.5625, (decimal?)111.71875, (decimal?)29372.375, (int)10 )); + AllOfThem.Add(new Nebula( 21067, Nebula.NebulaType.Planetary, "Dryi Chraei AV-P e5-5303", 4, true, "Dryi Chraei AV-P e5-5303", (decimal?)-6640.90625, (decimal?)429.21875, (decimal?)29413.875, (int)10 )); + AllOfThem.Add(new Nebula( 21068, Nebula.NebulaType.Planetary, "Dryi Chraei EG-X e1-2080", 4, true, "Dryi Chraei EG-X e1-2080", (decimal?)-7012.9375, (decimal?)756.25, (decimal?)28757.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21069, Nebula.NebulaType.Planetary, "Dryi Chraei GR-N e6-7550", 4, true, "Dryi Chraei GR-N e6-7550", (decimal?)-6953.125, (decimal?)20.09375, (decimal?)29547.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21070, Nebula.NebulaType.Planetary, "Dryi Chraei JS-T e3-2850", 4, true, "Dryi Chraei JS-T e3-2850", (decimal?)-7440.59375, (decimal?)680.5, (decimal?)29066.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21071, Nebula.NebulaType.Planetary, "Dryi Chraei NY-R e4-2357", 4, true, "Dryi Chraei NY-R e4-2357", (decimal?)-7440.90625, (decimal?)646.9375, (decimal?)29250.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21072, Nebula.NebulaType.Planetary, "Dryi Chraei PI-B e4096", 4, true, "Dryi Chraei PI-B e4096", (decimal?)-7138.34375, (decimal?)1138.84375, (decimal?)28522.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21073, Nebula.NebulaType.Planetary, "Dryi Chraei PI-T e3-3993", 4, true, "Dryi Chraei PI-T e3-3993", (decimal?)-7171.8125, (decimal?)299.71875, (decimal?)29046.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21074, Nebula.NebulaType.Planetary, "Dryi Chraei QY-A e3055", 4, true, "Dryi Chraei QY-A e3055", (decimal?)-7712.625, (decimal?)783.84375, (decimal?)28504.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21075, Nebula.NebulaType.Planetary, "Dryi Chraei SI-T e3-8582", 4, true, "Dryi Chraei SI-T e3-8582", (decimal?)-6678.71875, (decimal?)325.1875, (decimal?)29050.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21076, Nebula.NebulaType.Planetary, "Dryi Chraei TE-Q e5-7646", 4, true, "Dryi Chraei TE-Q e5-7646", (decimal?)-7149.21875, (decimal?)770.09375, (decimal?)29401.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21077, Nebula.NebulaType.Planetary, "Dryi Chraei YE-Z e3472", 4, true, "Dryi Chraei YE-Z e3472", (decimal?)-7032.34375, (decimal?)872.1875, (decimal?)28607.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21078, Nebula.NebulaType.Planetary, "Dryi Chraei YK-X e1-2721", 4, true, "Dryi Chraei YK-X e1-2721", (decimal?)-7645.09375, (decimal?)807.90625, (decimal?)28770.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21079, Nebula.NebulaType.Planetary, "Dryi Chraei ZJ-Z e3069", 4, true, "Dryi Chraei ZJ-Z e3069", (decimal?)-6521.40625, (decimal?)976.875, (decimal?)28601.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21080, Nebula.NebulaType.Planetary, "Dryi Chrea CR-N e6-239", 4, true, "Dryi Chrea CR-N e6-239", (decimal?)-5151.8125, (decimal?)39.15625, (decimal?)29524.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21081, Nebula.NebulaType.Planetary, "Dryi Chrea EB-W e2-6455", 4, true, "Dryi Chrea EB-W e2-6455", (decimal?)-4094.90625, (decimal?)1110.25, (decimal?)28896.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21082, Nebula.NebulaType.Planetary, "Dryi Chrea LI-S e4-4635", 4, true, "Dryi Chrea LI-S e4-4635", (decimal?)-4608.5, (decimal?)950.25, (decimal?)29239.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21083, Nebula.NebulaType.Planetary, "Dryi Chrea PO-Q e5-7934", 4, true, "Dryi Chrea PO-Q e5-7934", (decimal?)-4600.71875, (decimal?)1005.90625, (decimal?)29373.375, (int)10 )); + AllOfThem.Add(new Nebula( 21084, Nebula.NebulaType.Planetary, "Dryi Chrea RD-S e4-680", 4, true, "Dryi Chrea RD-S e4-680", (decimal?)-3969.25, (decimal?)877.9375, (decimal?)29214.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21085, Nebula.NebulaType.Planetary, "Dryi Chrea SY-R e4-7715", 4, true, "Dryi Chrea SY-R e4-7715", (decimal?)-4166.40625, (decimal?)640.53125, (decimal?)29246.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21086, Nebula.NebulaType.Planetary, "Dryi Chrea UE-Q e5-158", 4, true, "Dryi Chrea UE-Q e5-158", (decimal?)-4487.375, (decimal?)673.8125, (decimal?)29410.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21087, Nebula.NebulaType.Planetary, "Dryi Chrea UO-R e4-3697", 4, true, "Dryi Chrea UO-R e4-3697", (decimal?)-4539.40625, (decimal?)403.71875, (decimal?)29184.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21088, Nebula.NebulaType.Planetary, "Dryi Chrea YT-A e2211", 4, true, "Dryi Chrea YT-A e2211", (decimal?)-4192.4375, (decimal?)632.21875, (decimal?)28443.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21089, Nebula.NebulaType.Planetary, "Dryi Chrea ZK-X e1-1815", 4, true, "Dryi Chrea ZK-X e1-1815", (decimal?)-4938.90625, (decimal?)883.40625, (decimal?)28731.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21090, Nebula.NebulaType.Planetary, "Dryi Free AF-A e8807", 4, true, "Dryi Free AF-A e8807", (decimal?)-7295.84375, (decimal?)230.25, (decimal?)20813.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21091, Nebula.NebulaType.Planetary, "Dryi Free BA-A e1189", 4, true, "Dryi Free BA-A e1189", (decimal?)-7553.46875, (decimal?)72.875, (decimal?)20738.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21092, Nebula.NebulaType.Planetary, "Dryi Free BL-X e1-3092", 4, true, "Dryi Free BL-X e1-3092", (decimal?)-7252.6875, (decimal?)922.625, (decimal?)21051.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21093, Nebula.NebulaType.Planetary, "Dryi Free EW-W e1-305", 4, true, "Dryi Free EW-W e1-305", (decimal?)-7695.4375, (decimal?)432.84375, (decimal?)21156.125, (int)10 )); + AllOfThem.Add(new Nebula( 21094, Nebula.NebulaType.Planetary, "Dryi Free FQ-Y e432", 4, true, "Dryi Free FQ-Y e432", (decimal?)-6919.375, (decimal?)336.09375, (decimal?)20957.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21095, Nebula.NebulaType.Planetary, "Dryi Free KH-V e2-7922", 4, true, "Dryi Free KH-V e2-7922", (decimal?)-7095.1875, (decimal?)586.53125, (decimal?)21211.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21096, Nebula.NebulaType.Planetary, "Dryi Free MS-T e3-7647", 4, true, "Dryi Free MS-T e3-7647", (decimal?)-7012.96875, (decimal?)634.875, (decimal?)21416.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21097, Nebula.NebulaType.Planetary, "Dryi Free NY-R e4-2342", 4, true, "Dryi Free NY-R e4-2342", (decimal?)-7449.09375, (decimal?)660.71875, (decimal?)21568.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21098, Nebula.NebulaType.Planetary, "Dryi Free PT-R e4-7103", 4, true, "Dryi Free PT-R e4-7103", (decimal?)-7485.03125, (decimal?)562.625, (decimal?)21597.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21099, Nebula.NebulaType.Planetary, "Dryi Free PY-R e4-26", 4, true, "Dryi Free PY-R e4-26", (decimal?)-7231.4375, (decimal?)690.5, (decimal?)21618.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21100, Nebula.NebulaType.Planetary, "Dryi Free QJ-Q e5-4843", 4, true, "Dryi Free QJ-Q e5-4843", (decimal?)-7368.03125, (decimal?)893.875, (decimal?)21773.75, (int)10 )); + AllOfThem.Add(new Nebula( 21101, Nebula.NebulaType.Planetary, "Dryi Free RY-S e3-7901", 4, true, "Dryi Free RY-S e3-7901", (decimal?)-7429.40625, (decimal?)91.09375, (decimal?)21448.875, (int)10 )); + AllOfThem.Add(new Nebula( 21102, Nebula.NebulaType.Planetary, "Dryi Free RZ-O e6-3077", 4, true, "Dryi Free RZ-O e6-3077", (decimal?)-7222.90625, (decimal?)1194.3125, (decimal?)21889.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21103, Nebula.NebulaType.Planetary, "Dryi Free SS-U e2-3128", 4, true, "Dryi Free SS-U e2-3128", (decimal?)-6751.46875, (decimal?)130.6875, (decimal?)21207.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21104, Nebula.NebulaType.Planetary, "Dryi Free TP-O e6-2830", 4, true, "Dryi Free TP-O e6-2830", (decimal?)-7536.625, (decimal?)865.03125, (decimal?)21904.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21105, Nebula.NebulaType.Planetary, "Dryi Free UK-O e6-5411", 4, true, "Dryi Free UK-O e6-5411", (decimal?)-7607.03125, (decimal?)725.875, (decimal?)21946.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21106, Nebula.NebulaType.Planetary, "Dryi Free UY-S e3-8417", 4, true, "Dryi Free UY-S e3-8417", (decimal?)-7018.125, (decimal?)115.9375, (decimal?)21424.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21107, Nebula.NebulaType.Planetary, "Dryi Free VE-R e4-6068", 4, true, "Dryi Free VE-R e4-6068", (decimal?)-7500.71875, (decimal?)87.59375, (decimal?)21516, (int)10 )); + AllOfThem.Add(new Nebula( 21108, Nebula.NebulaType.Planetary, "Dryi Free XO-R e4-987", 4, true, "Dryi Free XO-R e4-987", (decimal?)-6560.65625, (decimal?)429.34375, (decimal?)21648.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21109, Nebula.NebulaType.Planetary, "Dryi Free YE-R e4-6755", 4, true, "Dryi Free YE-R e4-6755", (decimal?)-6984.71875, (decimal?)-1.46875, (decimal?)21558.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21110, Nebula.NebulaType.Planetary, "Dryi Free ZK-O e6-1362", 4, true, "Dryi Free ZK-O e6-1362", (decimal?)-6891.75, (decimal?)661.1875, (decimal?)21864.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21111, Nebula.NebulaType.Planetary, "Dryi Free ZK-P e5-4565", 4, true, "Dryi Free ZK-P e5-4565", (decimal?)-7434.71875, (decimal?)59.53125, (decimal?)21728.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21112, Nebula.NebulaType.Planetary, "Dryi Phylio EV-Y e157", 4, true, "Dryi Phylio EV-Y e157", (decimal?)-6745.9375, (decimal?)1821.90625, (decimal?)28576.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21133, Nebula.NebulaType.Planetary, "Dryio Blou YU-P e5-7", 4, true, "Dryio Blou YU-P e5-7", (decimal?)-8361.34375, (decimal?)-936.625, (decimal?)29494, (int)10 )); + AllOfThem.Add(new Nebula( 21134, Nebula.NebulaType.Planetary, "Dryio Bluae CW-N e6-4034", 4, true, "Dryio Bluae CW-N e6-4034", (decimal?)-6080.78125, (decimal?)-1116, (decimal?)29637.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21135, Nebula.NebulaType.Planetary, "Dryio Bluae DA-Z e1089", 4, true, "Dryio Bluae DA-Z e1089", (decimal?)-5246.96875, (decimal?)-630, (decimal?)28661.75, (int)10 )); + AllOfThem.Add(new Nebula( 21136, Nebula.NebulaType.Planetary, "Dryio Bluae EM-V e2-3452", 4, true, "Dryio Bluae EM-V e2-3452", (decimal?)-6385.625, (decimal?)-520.71875, (decimal?)28888.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21137, Nebula.NebulaType.Planetary, "Dryio Bluae FQ-Y e2534", 4, true, "Dryio Bluae FQ-Y e2534", (decimal?)-5505.59375, (decimal?)-860.53125, (decimal?)28640.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21138, Nebula.NebulaType.Planetary, "Dryio Bluae MS-T e3-6433", 4, true, "Dryio Bluae MS-T e3-6433", (decimal?)-5750.71875, (decimal?)-523.96875, (decimal?)29097.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21139, Nebula.NebulaType.Planetary, "Dryio Bluae VU-P e5-8659", 4, true, "Dryio Bluae VU-P e5-8659", (decimal?)-6224.90625, (decimal?)-975.09375, (decimal?)29412.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21140, Nebula.NebulaType.Planetary, "Dryio Bluae YU-Y e1986", 4, true, "Dryio Bluae YU-Y e1986", (decimal?)-6386.59375, (decimal?)-727.5625, (decimal?)28654.625, (int)10 )); + AllOfThem.Add(new Nebula( 21141, Nebula.NebulaType.Planetary, "Dryio Bluae ZZ-P e5-2563", 4, true, "Dryio Bluae ZZ-P e5-2563", (decimal?)-5302.75, (decimal?)-718.96875, (decimal?)29411.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21142, Nebula.NebulaType.Planetary, "Dryio Flyi AB-W e2-7444", 4, true, "Dryio Flyi AB-W e2-7444", (decimal?)-6067.90625, (decimal?)-151.28125, (decimal?)18719.125, (int)10 )); + AllOfThem.Add(new Nebula( 21143, Nebula.NebulaType.Planetary, "Dryio Flyi EV-Y e8312", 4, true, "Dryio Flyi EV-Y e8312", (decimal?)-5484.8125, (decimal?)-667.65625, (decimal?)18430.625, (int)10 )); + AllOfThem.Add(new Nebula( 21144, Nebula.NebulaType.Planetary, "Dryio Flyi HQ-Y e257", 4, true, "Dryio Flyi HQ-Y e257", (decimal?)-5300.03125, (decimal?)-860, (decimal?)18400.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21145, Nebula.NebulaType.Planetary, "Dryio Flyi JH-U e3-4426", 4, true, "Dryio Flyi JH-U e3-4426", (decimal?)-5206.03125, (decimal?)-141.78125, (decimal?)18919.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21146, Nebula.NebulaType.Planetary, "Dryio Flyi PN-T e3-8285", 4, true, "Dryio Flyi PN-T e3-8285", (decimal?)-5511.53125, (decimal?)-709.625, (decimal?)18780.875, (int)10 )); + AllOfThem.Add(new Nebula( 21147, Nebula.NebulaType.Planetary, "Dryio Flyi XF-O e6-7779", 4, true, "Dryio Flyi XF-O e6-7779", (decimal?)-6276.3125, (decimal?)-783.34375, (decimal?)19412.75, (int)10 )); + AllOfThem.Add(new Nebula( 21148, Nebula.NebulaType.Planetary, "Dryio Flyi YA-W e2-2067", 4, true, "Dryio Flyi YA-W e2-2067", (decimal?)-6307.5625, (decimal?)-44.6875, (decimal?)18710.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21149, Nebula.NebulaType.Planetary, "Dryio Flyi YP-P e5-2423", 4, true, "Dryio Flyi YP-P e5-2423", (decimal?)-6005.84375, (decimal?)-1036.1875, (decimal?)19235, (int)10 )); + AllOfThem.Add(new Nebula( 21152, Nebula.NebulaType.Planetary, "Dryio Flyuae CG-O e6-3131", 4, true, "Dryio Flyuae CG-O e6-3131", (decimal?)-7963.09375, (decimal?)-729.34375, (decimal?)19258.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21206, Nebula.NebulaType.Planetary, "Dryoea Bluae BK-A e4488", 4, true, "Dryoea Bluae BK-A e4488", (decimal?)-4312.78125, (decimal?)-955.78125, (decimal?)28479.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21207, Nebula.NebulaType.Planetary, "Dryoea Bluae BV-P e5-1894", 4, true, "Dryoea Bluae BV-P e5-1894", (decimal?)-4051.1875, (decimal?)-870.1875, (decimal?)29476.5, (int)10 )); + AllOfThem.Add(new Nebula( 21208, Nebula.NebulaType.Planetary, "Dryoea Bluae CQ-X e1-4045", 4, true, "Dryoea Bluae CQ-X e1-4045", (decimal?)-4144.4375, (decimal?)-224.375, (decimal?)28788.125, (int)10 )); + AllOfThem.Add(new Nebula( 21209, Nebula.NebulaType.Planetary, "Dryoea Bluae CW-V e2-3087", 4, true, "Dryoea Bluae CW-V e2-3087", (decimal?)-4800.78125, (decimal?)-313.96875, (decimal?)28940.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21210, Nebula.NebulaType.Planetary, "Dryoea Bluae EQ-Y e9351", 4, true, "Dryoea Bluae EQ-Y e9351", (decimal?)-4414.4375, (decimal?)-899.90625, (decimal?)28573.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21211, Nebula.NebulaType.Planetary, "Dryoea Bluae GC-U e3-6323", 4, true, "Dryoea Bluae GC-U e3-6323", (decimal?)-4717.125, (decimal?)-335.46875, (decimal?)29130.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21212, Nebula.NebulaType.Planetary, "Dryoea Bluae JG-Y e796", 4, true, "Dryoea Bluae JG-Y e796", (decimal?)-4311.3125, (decimal?)-1185.21875, (decimal?)28643.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21213, Nebula.NebulaType.Planetary, "Dryoea Bluae LC-U e3-1343", 4, true, "Dryoea Bluae LC-U e3-1343", (decimal?)-3933.90625, (decimal?)-267.21875, (decimal?)29018.5, (int)10 )); + AllOfThem.Add(new Nebula( 21214, Nebula.NebulaType.Planetary, "Dryoea Bluae MC-V e2-5129", 4, true, "Dryoea Bluae MC-V e2-5129", (decimal?)-4439.65625, (decimal?)-890.625, (decimal?)28917.875, (int)10 )); + AllOfThem.Add(new Nebula( 21215, Nebula.NebulaType.Planetary, "Dryoea Bluae MC-V e2-6321", 4, true, "Dryoea Bluae MC-V e2-6321", (decimal?)-4485.15625, (decimal?)-828.21875, (decimal?)28952.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21216, Nebula.NebulaType.Planetary, "Dryoea Bluae UO-R e4-83", 4, true, "Dryoea Bluae UO-R e4-83", (decimal?)-4535.6875, (decimal?)-976.9375, (decimal?)29291.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21217, Nebula.NebulaType.Planetary, "Dryoea Bluae VJ-Q e5-2079", 4, true, "Dryoea Bluae VJ-Q e5-2079", (decimal?)-3965.8125, (decimal?)-438.3125, (decimal?)29347.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21220, Nebula.NebulaType.Planetary, "Dryoea Flyi ER-V e2-4345", 4, true, "Dryoea Flyi ER-V e2-4345", (decimal?)-4798.875, (decimal?)-499.75, (decimal?)18668.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21221, Nebula.NebulaType.Planetary, "Dryoea Flyi FH-U e3-488", 4, true, "Dryoea Flyi FH-U e3-488", (decimal?)-4613.25, (decimal?)-39.21875, (decimal?)18857.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21222, Nebula.NebulaType.Planetary, "Dryoea Flyi GW-W e1-6647", 4, true, "Dryoea Flyi GW-W e1-6647", (decimal?)-4801.8125, (decimal?)-937.90625, (decimal?)18561.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21223, Nebula.NebulaType.Planetary, "Dryoea Flyi II-S e4-6870", 4, true, "Dryoea Flyi II-S e4-6870", (decimal?)-5141.59375, (decimal?)-289.46875, (decimal?)19057.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21224, Nebula.NebulaType.Planetary, "Dryoea Flyi KC-V e2-2725", 4, true, "Dryoea Flyi KC-V e2-2725", (decimal?)-4733.15625, (decimal?)-900.78125, (decimal?)18696.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21225, Nebula.NebulaType.Planetary, "Dryoea Flyi KM-V e2-9087", 4, true, "Dryoea Flyi KM-V e2-9087", (decimal?)-4222.09375, (decimal?)-522.34375, (decimal?)18693.25, (int)10 )); + AllOfThem.Add(new Nebula( 21226, Nebula.NebulaType.Planetary, "Dryoea Flyi MM-W e1-483", 4, true, "Dryoea Flyi MM-W e1-483", (decimal?)-4414.125, (decimal?)-1272.40625, (decimal?)18492.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21227, Nebula.NebulaType.Planetary, "Dryoea Flyi NC-V e2-4861", 4, true, "Dryoea Flyi NC-V e2-4861", (decimal?)-4336.21875, (decimal?)-952.40625, (decimal?)18727.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21228, Nebula.NebulaType.Planetary, "Dryoea Flyi UT-R e4-4807", 4, true, "Dryoea Flyi UT-R e4-4807", (decimal?)-4086.59375, (decimal?)-780.28125, (decimal?)19044.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21229, Nebula.NebulaType.Planetary, "Dryoea Flyi UT-R e4-8182", 4, true, "Dryoea Flyi UT-R e4-8182", (decimal?)-4215.1875, (decimal?)-820.71875, (decimal?)19045.5, (int)10 )); + AllOfThem.Add(new Nebula( 21230, Nebula.NebulaType.Planetary, "Dryoea Flyoo OI-S e4-1100", 4, true, "Dryoea Flyoo OI-S e4-1100", (decimal?)-6751.90625, (decimal?)-1499.78125, (decimal?)18969.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21231, Nebula.NebulaType.Planetary, "Dryoea Flyuae DB-O e6-803", 4, true, "Dryoea Flyuae DB-O e6-803", (decimal?)-6918.8125, (decimal?)-954.75, (decimal?)19290.75, (int)10 )); + AllOfThem.Add(new Nebula( 21232, Nebula.NebulaType.Planetary, "Dryoea Flyuae DK-A e2894", 4, true, "Dryoea Flyuae DK-A e2894", (decimal?)-6550.15625, (decimal?)-933.03125, (decimal?)18163.875, (int)10 )); + AllOfThem.Add(new Nebula( 21233, Nebula.NebulaType.Planetary, "Dryoea Flyuae EB-X e1-3130", 4, true, "Dryoea Flyuae EB-X e1-3130", (decimal?)-7374.90625, (decimal?)-743.59375, (decimal?)18597.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21234, Nebula.NebulaType.Planetary, "Dryoea Flyuae EB-X e1-723", 4, true, "Dryoea Flyuae EB-X e1-723", (decimal?)-7401.1875, (decimal?)-685.5625, (decimal?)18548.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21235, Nebula.NebulaType.Planetary, "Dryoea Flyuae EG-X e1-6972", 4, true, "Dryoea Flyuae EG-X e1-6972", (decimal?)-6998.65625, (decimal?)-590.3125, (decimal?)18534.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21236, Nebula.NebulaType.Planetary, "Dryoea Flyuae EH-U e3-3356", 4, true, "Dryoea Flyuae EH-U e3-3356", (decimal?)-7327.0625, (decimal?)-132.53125, (decimal?)18792.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21237, Nebula.NebulaType.Planetary, "Dryoea Flyuae GM-V e2-230", 4, true, "Dryoea Flyuae GM-V e2-230", (decimal?)-7303.8125, (decimal?)-541.3125, (decimal?)18669.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21238, Nebula.NebulaType.Planetary, "Dryoea Flyuae HW-W e1-2278", 4, true, "Dryoea Flyuae HW-W e1-2278", (decimal?)-7253.96875, (decimal?)-906.125, (decimal?)18483.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21239, Nebula.NebulaType.Planetary, "Dryoea Flyuae IH-U e3-7063", 4, true, "Dryoea Flyuae IH-U e3-7063", (decimal?)-6662.03125, (decimal?)-113, (decimal?)18823.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21240, Nebula.NebulaType.Planetary, "Dryoea Flyuae JR-V e2-1724", 4, true, "Dryoea Flyuae JR-V e2-1724", (decimal?)-6617.71875, (decimal?)-372.75, (decimal?)18759, (int)10 )); + AllOfThem.Add(new Nebula( 21241, Nebula.NebulaType.Planetary, "Dryoea Flyuae NN-T e3-6029", 4, true, "Dryoea Flyuae NN-T e3-6029", (decimal?)-7192.5, (decimal?)-813.3125, (decimal?)18830.125, (int)10 )); + AllOfThem.Add(new Nebula( 21242, Nebula.NebulaType.Planetary, "Dryoea Flyuae RN-T e3-1619", 4, true, "Dryoea Flyuae RN-T e3-1619", (decimal?)-6612.625, (decimal?)-672.875, (decimal?)18839.125, (int)10 )); + AllOfThem.Add(new Nebula( 21243, Nebula.NebulaType.Planetary, "Dryoea Flyuae TS-U e2-2879", 4, true, "Dryoea Flyuae TS-U e2-2879", (decimal?)-6543.15625, (decimal?)-1178.9375, (decimal?)18696.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21244, Nebula.NebulaType.Planetary, "Dryoea Flyuae TT-R e4-9138", 4, true, "Dryoea Flyuae TT-R e4-9138", (decimal?)-6842.03125, (decimal?)-736.03125, (decimal?)19080.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21245, Nebula.NebulaType.Planetary, "Dryoea Flyuae VJ-R e4-4774", 4, true, "Dryoea Flyuae VJ-R e4-4774", (decimal?)-7201.28125, (decimal?)-1018.84375, (decimal?)18943.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21246, Nebula.NebulaType.Planetary, "Dryoea Flyuae WP-O e6-1448", 4, true, "Dryoea Flyuae WP-O e6-1448", (decimal?)-6964.3125, (decimal?)-444.96875, (decimal?)19343.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21250, Nebula.NebulaType.Planetary, "Dryoea Pra ZA-W e2-1279", 4, true, "Dryoea Pra ZA-W e2-1279", (decimal?)-4898.78125, (decimal?)-1401.15625, (decimal?)21309.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21325, Nebula.NebulaType.Planetary, "Dryoi Pruae YA-O e6-2696", 4, true, "Dryoi Pruae YA-O e6-2696", (decimal?)-3756.875, (decimal?)-896.53125, (decimal?)21816.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21330, Nebula.NebulaType.Planetary, "Dryooe Prou BK-A e3076", 4, true, "Dryooe Prou BK-A e3076", (decimal?)-9404.84375, (decimal?)-955.84375, (decimal?)20700.125, (int)10 )); + AllOfThem.Add(new Nebula( 21331, Nebula.NebulaType.Planetary, "Dryooe Prou CK-A e1153", 4, true, "Dryooe Prou CK-A e1153", (decimal?)-9248.96875, (decimal?)-960.75, (decimal?)20750.125, (int)10 )); + AllOfThem.Add(new Nebula( 21332, Nebula.NebulaType.Planetary, "Dryooe Prou LM-V e2-8649", 4, true, "Dryooe Prou LM-V e2-8649", (decimal?)-9088.09375, (decimal?)-509.21875, (decimal?)21316.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21333, Nebula.NebulaType.Planetary, "Dryooe Prou UD-B e924", 4, true, "Dryooe Prou UD-B e924", (decimal?)-9292.125, (decimal?)-312.71875, (decimal?)20837.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21335, Nebula.NebulaType.Planetary, "Dryooe Prou VO-R e4-342", 4, true, "Dryooe Prou VO-R e4-342", (decimal?)-9383.90625, (decimal?)-974.84375, (decimal?)21603.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21336, Nebula.NebulaType.Planetary, "Dryooe Prou WP-O e6-5466", 4, true, "Dryooe Prou WP-O e6-5466", (decimal?)-9568.59375, (decimal?)-367.65625, (decimal?)21946.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21343, Nebula.NebulaType.Planetary, "Dryuae Aoscs FB-O e6-115", 4, true, "Dryuae Aoscs FB-O e6-115", (decimal?)-7846.59375, (decimal?)381.625, (decimal?)19349.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21344, Nebula.NebulaType.Planetary, "Dryuae Aoscs FB-O e6-4070", 4, true, "Dryuae Aoscs FB-O e6-4070", (decimal?)-7776.65625, (decimal?)454.625, (decimal?)19320.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21349, Nebula.NebulaType.Planetary, "Dryuae Aoscs RD-S e4-6542", 4, true, "Dryuae Aoscs RD-S e4-6542", (decimal?)-7823.65625, (decimal?)815.21875, (decimal?)19000.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21375, Nebula.NebulaType.Planetary, "Dryuae Chraei JL-Y e7237", 4, true, "Dryuae Chraei JL-Y e7237", (decimal?)-7751.84375, (decimal?)261.21875, (decimal?)28536.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21377, Nebula.NebulaType.Planetary, "Dryuae Chrea AQ-X e1-5901", 4, true, "Dryuae Chrea AQ-X e1-5901", (decimal?)-5703.9375, (decimal?)1083.25, (decimal?)28812.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21378, Nebula.NebulaType.Planetary, "Dryuae Chrea AQ-Y e804", 4, true, "Dryuae Chrea AQ-Y e804", (decimal?)-6436.71875, (decimal?)323.71875, (decimal?)28552.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21379, Nebula.NebulaType.Planetary, "Dryuae Chrea BF-A e1126", 4, true, "Dryuae Chrea BF-A e1126", (decimal?)-5854.84375, (decimal?)286.71875, (decimal?)28405.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21380, Nebula.NebulaType.Planetary, "Dryuae Chrea EM-V e2-8191", 4, true, "Dryuae Chrea EM-V e2-8191", (decimal?)-6313.9375, (decimal?)774.3125, (decimal?)28884.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21381, Nebula.NebulaType.Planetary, "Dryuae Chrea JC-U e3-5880", 4, true, "Dryuae Chrea JC-U e3-5880", (decimal?)-5514.59375, (decimal?)961.0625, (decimal?)29140.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21382, Nebula.NebulaType.Planetary, "Dryuae Chrea JH-V e2-8239", 4, true, "Dryuae Chrea JH-V e2-8239", (decimal?)-5961.96875, (decimal?)515.5, (decimal?)28958.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21383, Nebula.NebulaType.Planetary, "Dryuae Chrea KM-W e1-2390", 4, true, "Dryuae Chrea KM-W e1-2390", (decimal?)-6053.25, (decimal?)128.6875, (decimal?)28729.25, (int)10 )); + AllOfThem.Add(new Nebula( 21384, Nebula.NebulaType.Planetary, "Dryuae Chrea WP-O e6-7864", 4, true, "Dryuae Chrea WP-O e6-7864", (decimal?)-5817.8125, (decimal?)884.28125, (decimal?)29638.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21385, Nebula.NebulaType.Planetary, "Dryuae Chrea WY-A e528", 4, true, "Dryuae Chrea WY-A e528", (decimal?)-5496.78125, (decimal?)922.625, (decimal?)28507.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21386, Nebula.NebulaType.Planetary, "Dryuae Chrea ZP-P e5-982", 4, true, "Dryuae Chrea ZP-P e5-982", (decimal?)-5983.90625, (decimal?)261.375, (decimal?)29465.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21400, Nebula.NebulaType.Planetary, "Dryuae Phyloea LG-Y e3255", 4, true, "Dryuae Phyloea LG-Y e3255", (decimal?)-5344.375, (decimal?)1358.75, (decimal?)28592.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21402, Nebula.NebulaType.Planetary, "Dumbaa AA-A e1078", 4, true, "Dumbaa AA-A e1078", (decimal?)-5172.53125, (decimal?)70.71875, (decimal?)22127.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21403, Nebula.NebulaType.Planetary, "Dumbaa AP-A e856", 4, true, "Dumbaa AP-A e856", (decimal?)-4198.46875, (decimal?)459.125, (decimal?)22047.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21404, Nebula.NebulaType.Planetary, "Dumbaa BQ-P e5-4514", 4, true, "Dumbaa BQ-P e5-4514", (decimal?)-4229.5625, (decimal?)263.65625, (decimal?)23034.75, (int)10 )); + AllOfThem.Add(new Nebula( 21405, Nebula.NebulaType.Planetary, "Dumbaa GL-Y e2405", 4, true, "Dumbaa GL-Y e2405", (decimal?)-4505.03125, (decimal?)154, (decimal?)22171.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21406, Nebula.NebulaType.Planetary, "Dumbaa JC-U e3-8243", 4, true, "Dumbaa JC-U e3-8243", (decimal?)-4313.15625, (decimal?)940.84375, (decimal?)22741.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21407, Nebula.NebulaType.Planetary, "Dumbaa KR-W e1-277", 4, true, "Dumbaa KR-W e1-277", (decimal?)-4477, (decimal?)180.8125, (decimal?)22432.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21408, Nebula.NebulaType.Planetary, "Dumbaa LX-T e3-1780", 4, true, "Dumbaa LX-T e3-1780", (decimal?)-4272.90625, (decimal?)898.625, (decimal?)22628.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21409, Nebula.NebulaType.Planetary, "Dumbaa PN-T e3-9385", 4, true, "Dumbaa PN-T e3-9385", (decimal?)-4350.375, (decimal?)455.3125, (decimal?)22733, (int)10 )); + AllOfThem.Add(new Nebula( 21410, Nebula.NebulaType.Planetary, "Dumbaa QT-R e4-6676", 4, true, "Dumbaa QT-R e4-6676", (decimal?)-4756.6875, (decimal?)612.59375, (decimal?)22804.75, (int)10 )); + AllOfThem.Add(new Nebula( 21411, Nebula.NebulaType.Planetary, "Dumbaa SD-B e4827", 4, true, "Dumbaa SD-B e4827", (decimal?)-4503.59375, (decimal?)976.59375, (decimal?)22095.125, (int)10 )); + AllOfThem.Add(new Nebula( 21412, Nebula.NebulaType.Planetary, "Dumbaa UO-R e4-1431", 4, true, "Dumbaa UO-R e4-1431", (decimal?)-4517.34375, (decimal?)429.0625, (decimal?)22863.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21413, Nebula.NebulaType.Planetary, "Dumbaa UO-R e4-1848", 4, true, "Dumbaa UO-R e4-1848", (decimal?)-4508.78125, (decimal?)429.78125, (decimal?)22817.625, (int)10 )); + AllOfThem.Add(new Nebula( 21414, Nebula.NebulaType.Planetary, "Dumbaa VP-O e6-29", 4, true, "Dumbaa VP-O e6-29", (decimal?)-4698.09375, (decimal?)844.6875, (decimal?)23234.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21415, Nebula.NebulaType.Planetary, "Dumbaa WT-A e6353", 4, true, "Dumbaa WT-A e6353", (decimal?)-4397.3125, (decimal?)702.8125, (decimal?)21986.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21416, Nebula.NebulaType.Planetary, "Dumbaa XJ-R e4-5596", 4, true, "Dumbaa XJ-R e4-5596", (decimal?)-4252.625, (decimal?)196.09375, (decimal?)22780.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21417, Nebula.NebulaType.Planetary, "Dumbaa XK-O e6-3764", 4, true, "Dumbaa XK-O e6-3764", (decimal?)-4545.875, (decimal?)742.90625, (decimal?)23109.5, (int)10 )); + AllOfThem.Add(new Nebula( 21418, Nebula.NebulaType.Planetary, "Dumbaa XY-A e1555", 4, true, "Dumbaa XY-A e1555", (decimal?)-4018.65625, (decimal?)778.34375, (decimal?)22120.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21419, Nebula.NebulaType.Planetary, "Dumbaa ZA-O e6-5555", 4, true, "Dumbaa ZA-O e6-5555", (decimal?)-5014.5, (decimal?)303.4375, (decimal?)23211.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21420, Nebula.NebulaType.Planetary, "Dumbaa ZJ-R e4-6735", 4, true, "Dumbaa ZJ-R e4-6735", (decimal?)-3925.09375, (decimal?)161.8125, (decimal?)22850, (int)10 )); + AllOfThem.Add(new Nebula( 21421, Nebula.NebulaType.Planetary, "Dumbaa ZU-Y e3222", 4, true, "Dumbaa ZU-Y e3222", (decimal?)-4880.90625, (decimal?)552.4375, (decimal?)22218.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21446, Nebula.NebulaType.Planetary, "Dumbio CQ-Y e756", 4, true, "Dumbio CQ-Y e756", (decimal?)-8555.09375, (decimal?)407.84375, (decimal?)22275.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21447, Nebula.NebulaType.Planetary, "Dumbio DF-A e6033", 4, true, "Dumbio DF-A e6033", (decimal?)-8067.71875, (decimal?)144.8125, (decimal?)22006.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21448, Nebula.NebulaType.Planetary, "Dumbio DQ-X e1-3827", 4, true, "Dumbio DQ-X e1-3827", (decimal?)-7815.71875, (decimal?)1058.96875, (decimal?)22383.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21449, Nebula.NebulaType.Planetary, "Dumbio EG-X e1-1641", 4, true, "Dumbio EG-X e1-1641", (decimal?)-8303.5, (decimal?)735.0625, (decimal?)22384.25, (int)10 )); + AllOfThem.Add(new Nebula( 21450, Nebula.NebulaType.Planetary, "Dumbio EG-Y e2900", 4, true, "Dumbio EG-Y e2900", (decimal?)-8978.28125, (decimal?)103.65625, (decimal?)22147.75, (int)10 )); + AllOfThem.Add(new Nebula( 21451, Nebula.NebulaType.Planetary, "Dumbio EW-V e2-3045", 4, true, "Dumbio EW-V e2-3045", (decimal?)-8236.1875, (decimal?)990.96875, (decimal?)22525.375, (int)10 )); + AllOfThem.Add(new Nebula( 21452, Nebula.NebulaType.Planetary, "Dumbio FA-A e6346", 4, true, "Dumbio FA-A e6346", (decimal?)-8221.625, (decimal?)8.15625, (decimal?)22031.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21453, Nebula.NebulaType.Planetary, "Dumbio GM-V e2-2309", 4, true, "Dumbio GM-V e2-2309", (decimal?)-8568.15625, (decimal?)676.46875, (decimal?)22505.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21454, Nebula.NebulaType.Planetary, "Dumbio GW-W e1-10101", 4, true, "Dumbio GW-W e1-10101", (decimal?)-8695.09375, (decimal?)354.375, (decimal?)22387.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21455, Nebula.NebulaType.Planetary, "Dumbio GX-T e3-5994", 4, true, "Dumbio GX-T e3-5994", (decimal?)-8994.5, (decimal?)787.25, (decimal?)22716.75, (int)10 )); + AllOfThem.Add(new Nebula( 21456, Nebula.NebulaType.Planetary, "Dumbio JR-W e1-2898", 4, true, "Dumbio JR-W e1-2898", (decimal?)-8449.5625, (decimal?)202.71875, (decimal?)22442.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21457, Nebula.NebulaType.Planetary, "Dumbio LD-S e4-374", 4, true, "Dumbio LD-S e4-374", (decimal?)-8736.03125, (decimal?)831.6875, (decimal?)22806.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21458, Nebula.NebulaType.Planetary, "Dumbio OO-Q e5-94", 4, true, "Dumbio OO-Q e5-94", (decimal?)-8678.15625, (decimal?)1068.4375, (decimal?)22938.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21459, Nebula.NebulaType.Planetary, "Dumbio UE-Z e2833", 4, true, "Dumbio UE-Z e2833", (decimal?)-8975.875, (decimal?)908, (decimal?)22183.625, (int)10 )); + AllOfThem.Add(new Nebula( 21460, Nebula.NebulaType.Planetary, "Dumbio VO-Z e212", 4, true, "Dumbio VO-Z e212", (decimal?)-8074.5, (decimal?)1252.34375, (decimal?)22252.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21461, Nebula.NebulaType.Planetary, "Dumbio WE-Q e5-5190", 4, true, "Dumbio WE-Q e5-5190", (decimal?)-8031.3125, (decimal?)762.1875, (decimal?)22941.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21462, Nebula.NebulaType.Planetary, "Dumbio XY-A e4925", 4, true, "Dumbio XY-A e4925", (decimal?)-7773.96875, (decimal?)803.125, (decimal?)22083.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21463, Nebula.NebulaType.Planetary, "Dumbio YO-A e308", 4, true, "Dumbio YO-A e308", (decimal?)-8345.6875, (decimal?)461.625, (decimal?)22112.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21464, Nebula.NebulaType.Planetary, "Dumbio YU-P e5-2025", 4, true, "Dumbio YU-P e5-2025", (decimal?)-8257.625, (decimal?)371.6875, (decimal?)22982.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21465, Nebula.NebulaType.Planetary, "Dumbio ZJ-A e4380", 4, true, "Dumbio ZJ-A e4380", (decimal?)-8517.1875, (decimal?)308.8125, (decimal?)22090.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21466, Nebula.NebulaType.Planetary, "Dumboe BP-A e6579", 4, true, "Dumboe BP-A e6579", (decimal?)-9088.75, (decimal?)536.65625, (decimal?)21996.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21467, Nebula.NebulaType.Planetary, "Dumboe DA-A e4602", 4, true, "Dumboe DA-A e4602", (decimal?)-9817.46875, (decimal?)83.15625, (decimal?)22045.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21468, Nebula.NebulaType.Planetary, "Dumboe DB-W e2-2830", 4, true, "Dumboe DB-W e2-2830", (decimal?)-9462.875, (decimal?)1222.5625, (decimal?)22546.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21469, Nebula.NebulaType.Planetary, "Dumboe JB-X e1-7118", 4, true, "Dumboe JB-X e1-7118", (decimal?)-9029.59375, (decimal?)533.5, (decimal?)22349.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21470, Nebula.NebulaType.Planetary, "Dumboe JL-Y e325", 4, true, "Dumboe JL-Y e325", (decimal?)-9086.90625, (decimal?)210.90625, (decimal?)22184.625, (int)10 )); + AllOfThem.Add(new Nebula( 21471, Nebula.NebulaType.Planetary, "Dumboe VZ-P e5-841", 4, true, "Dumboe VZ-P e5-841", (decimal?)-9820.4375, (decimal?)607.4375, (decimal?)23071.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21472, Nebula.NebulaType.Planetary, "Dumboe XE-R e4-1219", 4, true, "Dumboe XE-R e4-1219", (decimal?)-9758.5625, (decimal?)15.125, (decimal?)22832.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21473, Nebula.NebulaType.Planetary, "Dumboe YJ-A e1810", 4, true, "Dumboe YJ-A e1810", (decimal?)-9840.21875, (decimal?)416.40625, (decimal?)22110.5, (int)10 )); + AllOfThem.Add(new Nebula( 21474, Nebula.NebulaType.Planetary, "Dumboe ZO-A e8545", 4, true, "Dumboe ZO-A e8545", (decimal?)-9464.53125, (decimal?)590.125, (decimal?)21986.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21475, Nebula.NebulaType.Planetary, "Dumboea BQ-X e1-1763", 4, true, "Dumboea BQ-X e1-1763", (decimal?)-6880.65625, (decimal?)1072.9375, (decimal?)22411.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21476, Nebula.NebulaType.Planetary, "Dumboea BQ-X e1-3642", 4, true, "Dumboea BQ-X e1-3642", (decimal?)-6868.84375, (decimal?)1063.375, (decimal?)22350.75, (int)10 )); + AllOfThem.Add(new Nebula( 21477, Nebula.NebulaType.Planetary, "Dumboea IX-T e3-371", 4, true, "Dumboea IX-T e3-371", (decimal?)-7390.34375, (decimal?)801.03125, (decimal?)22648.875, (int)10 )); + AllOfThem.Add(new Nebula( 21478, Nebula.NebulaType.Planetary, "Dumboea PS-U e2-3137", 4, true, "Dumboea PS-U e2-3137", (decimal?)-7170.3125, (decimal?)112.84375, (decimal?)22540.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21479, Nebula.NebulaType.Planetary, "Dumboea RZ-O e6-362", 4, true, "Dumboea RZ-O e6-362", (decimal?)-7263.34375, (decimal?)1161.21875, (decimal?)23143.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21480, Nebula.NebulaType.Planetary, "Dumboea SS-U e2-5413", 4, true, "Dumboea SS-U e2-5413", (decimal?)-6756.625, (decimal?)-23.125, (decimal?)22503.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21481, Nebula.NebulaType.Planetary, "Dumboea WP-X e1-4897", 4, true, "Dumboea WP-X e1-4897", (decimal?)-7586.875, (decimal?)1044.90625, (decimal?)22325.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21482, Nebula.NebulaType.Planetary, "Dumboea XF-O e6-715", 4, true, "Dumboea XF-O e6-715", (decimal?)-7434.0625, (decimal?)607.78125, (decimal?)23191.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21483, Nebula.NebulaType.Planetary, "Dumboi BF-A e503", 4, true, "Dumboi BF-A e503", (decimal?)-5923.6875, (decimal?)228.875, (decimal?)22047.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21484, Nebula.NebulaType.Planetary, "Dumboi CV-Y e7309", 4, true, "Dumboi CV-Y e7309", (decimal?)-5669.28125, (decimal?)508.125, (decimal?)22213.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21485, Nebula.NebulaType.Planetary, "Dumboi DR-V e2-8982", 4, true, "Dumboi DR-V e2-8982", (decimal?)-6266.9375, (decimal?)799.28125, (decimal?)22603.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21486, Nebula.NebulaType.Planetary, "Dumboi GR-N e6-2341", 4, true, "Dumboi GR-N e6-2341", (decimal?)-5673.53125, (decimal?)57.125, (decimal?)23192.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21487, Nebula.NebulaType.Planetary, "Dumboi KH-V e2-5105", 4, true, "Dumboi KH-V e2-5105", (decimal?)-5787.8125, (decimal?)594.25, (decimal?)22476.5, (int)10 )); + AllOfThem.Add(new Nebula( 21488, Nebula.NebulaType.Planetary, "Dumboi KW-W e1-6126", 4, true, "Dumboi KW-W e1-6126", (decimal?)-5412.4375, (decimal?)454.28125, (decimal?)22367.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21489, Nebula.NebulaType.Planetary, "Dumboi LC-V e2-2988", 4, true, "Dumboi LC-V e2-2988", (decimal?)-5914.53125, (decimal?)385.90625, (decimal?)22555.125, (int)10 )); + AllOfThem.Add(new Nebula( 21490, Nebula.NebulaType.Planetary, "Dumboi PJ-Q e5-7136", 4, true, "Dumboi PJ-Q e5-7136", (decimal?)-6200.5625, (decimal?)890.90625, (decimal?)23006.875, (int)10 )); + AllOfThem.Add(new Nebula( 21491, Nebula.NebulaType.Planetary, "Dumboi RN-T e3-1632", 4, true, "Dumboi RN-T e3-1632", (decimal?)-5236.28125, (decimal?)602.15625, (decimal?)22631.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21492, Nebula.NebulaType.Planetary, "Dumboi SY-A e4997", 4, true, "Dumboi SY-A e4997", (decimal?)-6130.34375, (decimal?)783.34375, (decimal?)22134.375, (int)10 )); + AllOfThem.Add(new Nebula( 21493, Nebula.NebulaType.Planetary, "Dumboi XP-O e6-9757", 4, true, "Dumboi XP-O e6-9757", (decimal?)-5659.4375, (decimal?)898.75, (decimal?)23221.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21494, Nebula.NebulaType.Planetary, "Dumboi XP-X e1-7577", 4, true, "Dumboi XP-X e1-7577", (decimal?)-6154.65625, (decimal?)994.59375, (decimal?)22450.375, (int)10 )); + AllOfThem.Add(new Nebula( 21495, Nebula.NebulaType.Planetary, "Dumboi YJ-A e339", 4, true, "Dumboi YJ-A e339", (decimal?)-6131.71875, (decimal?)403.15625, (decimal?)21988.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21528, Nebula.NebulaType.Planetary, "Dunee TS-U e2-1054", 4, true, "Dunee TS-U e2-1054", (decimal?)-10307.75, (decimal?)20.03125, (decimal?)22536.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21529, Nebula.NebulaType.Planetary, "Dunee TS-U e2-1234", 4, true, "Dunee TS-U e2-1234", (decimal?)-10353.28125, (decimal?)83.125, (decimal?)22531.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21578, Nebula.NebulaType.Planetary, "Eephaim IS-T e3-4847", 4, true, "Eephaim IS-T e3-4847", (decimal?)-5155.875, (decimal?)-520.09375, (decimal?)17506.625, (int)10 )); + AllOfThem.Add(new Nebula( 21579, Nebula.NebulaType.Planetary, "Eephaim KH-V e2-4569", 4, true, "Eephaim KH-V e2-4569", (decimal?)-4498.25, (decimal?)-737.21875, (decimal?)17350.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21580, Nebula.NebulaType.Planetary, "Eephaim MY-R e4-3831", 4, true, "Eephaim MY-R e4-3831", (decimal?)-5154.65625, (decimal?)-583.9375, (decimal?)17713.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21581, Nebula.NebulaType.Planetary, "Eephaim SJ-Q e5-4363", 4, true, "Eephaim SJ-Q e5-4363", (decimal?)-4459.875, (decimal?)-378.46875, (decimal?)17946.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21582, Nebula.NebulaType.Planetary, "Eephaim UU-P e5-7409", 4, true, "Eephaim UU-P e5-7409", (decimal?)-5107.3125, (decimal?)-984.96875, (decimal?)17949.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21583, Nebula.NebulaType.Planetary, "Eephaim VZ-P e5-4449", 4, true, "Eephaim VZ-P e5-4449", (decimal?)-4647.625, (decimal?)-781.625, (decimal?)17961.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21586, Nebula.NebulaType.Planetary, "Eephaim YZ-Y e2362", 4, true, "Eephaim YZ-Y e2362", (decimal?)-4849.5, (decimal?)-536.09375, (decimal?)17063.25, (int)10 )); + AllOfThem.Add(new Nebula( 21632, Nebula.NebulaType.Planetary, "Egnairbs AW-N e6-1916", 4, true, "Egnairbs AW-N e6-1916", (decimal?)-6413.5, (decimal?)1504.90625, (decimal?)23241.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21633, Nebula.NebulaType.Planetary, "Egnairbs ZU-Y e916", 4, true, "Egnairbs ZU-Y e916", (decimal?)-6226.15625, (decimal?)1748.0625, (decimal?)22268.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21638, Nebula.NebulaType.Planetary, "Eimbaisys IG-Y e845", 4, true, "Eimbaisys IG-Y e845", (decimal?)-4490.125, (decimal?)1369.09375, (decimal?)29843.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21639, Nebula.NebulaType.Planetary, "Eimbaisys VD-T e3-2172", 4, true, "Eimbaisys VD-T e3-2172", (decimal?)-3964.1875, (decimal?)1524.78125, (decimal?)30304.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21668, Nebula.NebulaType.Planetary, "Eoch Blou DR-V e2-10122", 4, true, "Eoch Blou DR-V e2-10122", (decimal?)-8826.59375, (decimal?)-425.84375, (decimal?)27577.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21669, Nebula.NebulaType.Planetary, "Eoch Blou DV-Y e1478", 4, true, "Eoch Blou DV-Y e1478", (decimal?)-8095.46875, (decimal?)-802.8125, (decimal?)27260.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21670, Nebula.NebulaType.Planetary, "Eoch Blou FV-Y e1389", 4, true, "Eoch Blou FV-Y e1389", (decimal?)-7759.1875, (decimal?)-666.5, (decimal?)27403.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21671, Nebula.NebulaType.Planetary, "Eoch Blou GB-X e1-2565", 4, true, "Eoch Blou GB-X e1-2565", (decimal?)-8344.34375, (decimal?)-669.3125, (decimal?)27549.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21672, Nebula.NebulaType.Planetary, "Eoch Blou GC-U e3-6503", 4, true, "Eoch Blou GC-U e3-6503", (decimal?)-8695.0625, (decimal?)-239.21875, (decimal?)27801.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21673, Nebula.NebulaType.Planetary, "Eoch Blou GM-V e2-4853", 4, true, "Eoch Blou GM-V e2-4853", (decimal?)-8562.125, (decimal?)-652.6875, (decimal?)27667.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21674, Nebula.NebulaType.Planetary, "Eoch Blou IM-V e2-6549", 4, true, "Eoch Blou IM-V e2-6549", (decimal?)-8304.0625, (decimal?)-641.1875, (decimal?)27661.75, (int)10 )); + AllOfThem.Add(new Nebula( 21675, Nebula.NebulaType.Planetary, "Eoch Blou JR-V e2-2305", 4, true, "Eoch Blou JR-V e2-2305", (decimal?)-7902.125, (decimal?)-464.65625, (decimal?)27579.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21676, Nebula.NebulaType.Planetary, "Eoch Blou NX-T e3-9800", 4, true, "Eoch Blou NX-T e3-9800", (decimal?)-7893.8125, (decimal?)-398.125, (decimal?)27794.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21677, Nebula.NebulaType.Planetary, "Eoch Blou OD-T e3-159", 4, true, "Eoch Blou OD-T e3-159", (decimal?)-8966.125, (decimal?)-1127.53125, (decimal?)27894.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21678, Nebula.NebulaType.Planetary, "Eoch Blou OI-S e4-2482", 4, true, "Eoch Blou OI-S e4-2482", (decimal?)-7974.34375, (decimal?)-338.0625, (decimal?)27958.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21681, Nebula.NebulaType.Planetary, "Eoch Blou QD-S e4-1828", 4, true, "Eoch Blou QD-S e4-1828", (decimal?)-7971.21875, (decimal?)-375.21875, (decimal?)27942.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21684, Nebula.NebulaType.Planetary, "Eoch Blou VY-A e5970", 4, true, "Eoch Blou VY-A e5970", (decimal?)-8116.40625, (decimal?)-355.0625, (decimal?)27162, (int)10 )); + AllOfThem.Add(new Nebula( 21713, Nebula.NebulaType.Planetary, "Eoch Flyi AL-X e1-6262", 4, true, "Eoch Flyi AL-X e1-6262", (decimal?)-6046.125, (decimal?)-452.53125, (decimal?)17216.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21714, Nebula.NebulaType.Planetary, "Eoch Flyi AV-X e1-3892", 4, true, "Eoch Flyi AV-X e1-3892", (decimal?)-5450.21875, (decimal?)-52.625, (decimal?)17222.875, (int)10 )); + AllOfThem.Add(new Nebula( 21716, Nebula.NebulaType.Planetary, "Eoch Flyi CV-Y e25", 4, true, "Eoch Flyi CV-Y e25", (decimal?)-5822.21875, (decimal?)-785.03125, (decimal?)17133.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21717, Nebula.NebulaType.Planetary, "Eoch Flyi DG-X e1-3132", 4, true, "Eoch Flyi DG-X e1-3132", (decimal?)-5891.15625, (decimal?)-528.53125, (decimal?)17247.125, (int)10 )); + AllOfThem.Add(new Nebula( 21718, Nebula.NebulaType.Planetary, "Eoch Flyi DR-V e2-4912", 4, true, "Eoch Flyi DR-V e2-4912", (decimal?)-6159.96875, (decimal?)-432.625, (decimal?)17477.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21719, Nebula.NebulaType.Planetary, "Eoch Flyi GG-X e1-539", 4, true, "Eoch Flyi GG-X e1-539", (decimal?)-5396.125, (decimal?)-567.96875, (decimal?)17321.75, (int)10 )); + AllOfThem.Add(new Nebula( 21720, Nebula.NebulaType.Planetary, "Eoch Flyi HM-V e2-9686", 4, true, "Eoch Flyi HM-V e2-9686", (decimal?)-5872.15625, (decimal?)-627.8125, (decimal?)17339.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21721, Nebula.NebulaType.Planetary, "Eoch Flyi RD-S e4-6585", 4, true, "Eoch Flyi RD-S e4-6585", (decimal?)-5261.375, (decimal?)-381.65625, (decimal?)17693.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21723, Nebula.NebulaType.Planetary, "Eoch Flyi VE-Q e5-6268", 4, true, "Eoch Flyi VE-Q e5-6268", (decimal?)-5640.46875, (decimal?)-564.59375, (decimal?)17892.625, (int)10 )); + AllOfThem.Add(new Nebula( 21724, Nebula.NebulaType.Planetary, "Eoch Flyi VP-O e6-1928", 4, true, "Eoch Flyi VP-O e6-1928", (decimal?)-5828.96875, (decimal?)-366.0625, (decimal?)18082.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21739, Nebula.NebulaType.Planetary, "Eoch Pra PO-Q e5-2770", 4, true, "Eoch Pra PO-Q e5-2770", (decimal?)-5954.75, (decimal?)-1529.0625, (decimal?)20437.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21740, Nebula.NebulaType.Planetary, "Eoch Pri AG-X e1-4774", 4, true, "Eoch Pri AG-X e1-4774", (decimal?)-6362.28125, (decimal?)-584.71875, (decimal?)19868.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21741, Nebula.NebulaType.Planetary, "Eoch Pri AQ-X e1-1828", 4, true, "Eoch Pri AQ-X e1-1828", (decimal?)-5715.15625, (decimal?)-229.375, (decimal?)19856.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21742, Nebula.NebulaType.Planetary, "Eoch Pri CB-W e2-7940", 4, true, "Eoch Pri CB-W e2-7940", (decimal?)-5688.8125, (decimal?)-116.9375, (decimal?)19918.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21743, Nebula.NebulaType.Planetary, "Eoch Pri FB-W e2-5646", 4, true, "Eoch Pri FB-W e2-5646", (decimal?)-5337.375, (decimal?)-173.8125, (decimal?)19962.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21744, Nebula.NebulaType.Planetary, "Eoch Pri FQ-Y e5188", 4, true, "Eoch Pri FQ-Y e5188", (decimal?)-5627.125, (decimal?)-889.78125, (decimal?)19701.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21745, Nebula.NebulaType.Planetary, "Eoch Pri HB-X e1-258", 4, true, "Eoch Pri HB-X e1-258", (decimal?)-5622.96875, (decimal?)-729.40625, (decimal?)19870.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21746, Nebula.NebulaType.Planetary, "Eoch Pri HQ-Y e5066", 4, true, "Eoch Pri HQ-Y e5066", (decimal?)-5262.25, (decimal?)-971.15625, (decimal?)19609.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21747, Nebula.NebulaType.Planetary, "Eoch Pri KC-V e2-9427", 4, true, "Eoch Pri KC-V e2-9427", (decimal?)-6040.5, (decimal?)-911.25, (decimal?)19971.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21748, Nebula.NebulaType.Planetary, "Eoch Pri MD-S e4-1965", 4, true, "Eoch Pri MD-S e4-1965", (decimal?)-6097.90625, (decimal?)-434.90625, (decimal?)20327.875, (int)10 )); + AllOfThem.Add(new Nebula( 21749, Nebula.NebulaType.Planetary, "Eoch Pri OS-T e3-346", 4, true, "Eoch Pri OS-T e3-346", (decimal?)-5486.84375, (decimal?)-642.59375, (decimal?)20193.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21750, Nebula.NebulaType.Planetary, "Eoch Pri OT-Q e5-3495", 4, true, "Eoch Pri OT-Q e5-3495", (decimal?)-5750.3125, (decimal?)-128.9375, (decimal?)20385.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21751, Nebula.NebulaType.Planetary, "Eoch Pri OT-Q e5-9319", 4, true, "Eoch Pri OT-Q e5-9319", (decimal?)-5697.53125, (decimal?)-26, (decimal?)20423.75, (int)10 )); + AllOfThem.Add(new Nebula( 21752, Nebula.NebulaType.Planetary, "Eoch Pri QO-Q e5-2376", 4, true, "Eoch Pri QO-Q e5-2376", (decimal?)-5709.0625, (decimal?)-234.28125, (decimal?)20473.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21753, Nebula.NebulaType.Planetary, "Eoch pri RT-Q e5-1214", 4, true, "Eoch Pri RT-Q e5-1214", (decimal?)-5335.03125, (decimal?)-124.15625, (decimal?)20382.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21754, Nebula.NebulaType.Planetary, "Eoch Pri TU-O e6-3228", 4, true, "Eoch Pri TU-O e6-3228", (decimal?)-5949.875, (decimal?)-245.09375, (decimal?)20617.875, (int)10 )); + AllOfThem.Add(new Nebula( 21755, Nebula.NebulaType.Planetary, "Eoch Pri VO-A e1155", 4, true, "Eoch Pri VO-A e1155", (decimal?)-6303.46875, (decimal?)-739.84375, (decimal?)19552.875, (int)10 )); + AllOfThem.Add(new Nebula( 21756, Nebula.NebulaType.Planetary, "Eoch Pri WU-P e5-2519", 4, true, "Eoch Pri WU-P e5-2519", (decimal?)-6121.375, (decimal?)-845.125, (decimal?)20409.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21757, Nebula.NebulaType.Planetary, "Eoch Pri WZ-Y e4538", 4, true, "Eoch Pri WZ-Y e4538", (decimal?)-6394.5625, (decimal?)-577.90625, (decimal?)19648.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21758, Nebula.NebulaType.Planetary, "Eoch Pri YJ-A e945", 4, true, "Eoch Pri YJ-A e945", (decimal?)-6086.21875, (decimal?)-897.375, (decimal?)19524.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21759, Nebula.NebulaType.Planetary, "Eoch Pruae GX-T e3-7480", 4, true, "Eoch Pruae GX-T e3-7480", (decimal?)-8919.8125, (decimal?)-428.09375, (decimal?)20085.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21760, Nebula.NebulaType.Planetary, "Eoch Pruae HC-U e3-4418", 4, true, "Eoch Pruae HC-U e3-4418", (decimal?)-8447.65625, (decimal?)-186.84375, (decimal?)20150.75, (int)10 )); + AllOfThem.Add(new Nebula( 21761, Nebula.NebulaType.Planetary, "Eoch Pruae KN-S e4-3497", 4, true, "Eoch Pruae KN-S e4-3497", (decimal?)-8383.15625, (decimal?)-182.5625, (decimal?)20330.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21763, Nebula.NebulaType.Planetary, "Eoch Pruae PI-S e4-9283", 4, true, "Eoch Pruae PI-S e4-9283", (decimal?)-7859.5, (decimal?)-289.34375, (decimal?)20228.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21764, Nebula.NebulaType.Planetary, "Eoch Pruae PT-Q e5-4411", 4, true, "Eoch Pruae PT-Q e5-4411", (decimal?)-8179.75, (decimal?)-27.03125, (decimal?)20463.5, (int)10 )); + AllOfThem.Add(new Nebula( 21765, Nebula.NebulaType.Planetary, "Eoch Pruae SJ-Q e5-201", 4, true, "Eoch Pruae SJ-Q e5-201", (decimal?)-8368.0625, (decimal?)-390.96875, (decimal?)20430.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21766, Nebula.NebulaType.Planetary, "Eoch Pruae VJ-Z e1164", 4, true, "Eoch Pruae VJ-Z e1164", (decimal?)-8435.25, (decimal?)-302.25, (decimal?)19656.125, (int)10 )); + AllOfThem.Add(new Nebula( 21767, Nebula.NebulaType.Planetary, "Eoch Pruae VT-A e7027", 4, true, "Eoch Pruae VT-A e7027", (decimal?)-8528.0625, (decimal?)-628.28125, (decimal?)19514.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21768, Nebula.NebulaType.Planetary, "Eoch Pruae VT-R e4-7860", 4, true, "Eoch Pruae VT-R e4-7860", (decimal?)-7846.15625, (decimal?)-748.09375, (decimal?)20216.75, (int)10 )); + AllOfThem.Add(new Nebula( 21769, Nebula.NebulaType.Planetary, "Eoch Pruae YE-Z e8091", 4, true, "Eoch Pruae YE-Z e8091", (decimal?)-8378.96875, (decimal?)-363.09375, (decimal?)19610.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21842, Nebula.NebulaType.Planetary, "Eok Gree BA-Z e1543", 4, true, "Eok Gree BA-Z e1543", (decimal?)-1817.1875, (decimal?)-627.40625, (decimal?)29839.875, (int)10 )); + AllOfThem.Add(new Nebula( 21843, Nebula.NebulaType.Planetary, "Eok Gree BL-X e1-6828", 4, true, "Eok Gree BL-X e1-6828", (decimal?)-2058.0625, (decimal?)-363.71875, (decimal?)30035.75, (int)10 )); + AllOfThem.Add(new Nebula( 21844, Nebula.NebulaType.Planetary, "Eok Gree EQ-Y e8030", 4, true, "Eok Gree EQ-Y e8030", (decimal?)-1975.4375, (decimal?)-830.5625, (decimal?)29887.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21850, Nebula.NebulaType.Planetary, "Eok Gree QO-Z e6203", 4, true, "Eok Gree QO-Z e6203", (decimal?)-2507.6875, (decimal?)-48.78125, (decimal?)29916.625, (int)10 )); + AllOfThem.Add(new Nebula( 21853, Nebula.NebulaType.Planetary, "Eok Gree TO-Z e6608", 4, true, "Eok Gree TO-Z e6608", (decimal?)-2103.90625, (decimal?)-139.0625, (decimal?)29845.5, (int)10 )); + AllOfThem.Add(new Nebula( 21854, Nebula.NebulaType.Planetary, "Eok Gree UJ-Z e1069", 4, true, "Eok Gree UJ-Z e1069", (decimal?)-2160.03125, (decimal?)-212.34375, (decimal?)29960.375, (int)10 )); + AllOfThem.Add(new Nebula( 21858, Nebula.NebulaType.Planetary, "Eok Gree WT-A e2302", 4, true, "Eok Gree WT-A e2302", (decimal?)-1922.875, (decimal?)-527, (decimal?)29767, (int)10 )); + AllOfThem.Add(new Nebula( 21877, Nebula.NebulaType.Planetary, "Eol Bloae JM-V e2-191", 4, true, "Eol Bloae JM-V e2-191", (decimal?)-9482.1875, (decimal?)-641.9375, (decimal?)27615.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21878, Nebula.NebulaType.Planetary, "Eol Bloae KC-U e3-332", 4, true, "Eol Bloae KC-U e3-332", (decimal?)-9209.09375, (decimal?)-208.71875, (decimal?)27842.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21880, Nebula.NebulaType.Planetary, "Eol Bloae OI-S e4-340", 4, true, "Eol Bloae OI-S e4-340", (decimal?)-9260.84375, (decimal?)-192.6875, (decimal?)28011.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21882, Nebula.NebulaType.Planetary, "Eol Bloae WO-R e4-176", 4, true, "Eol Bloae WO-R e4-176", (decimal?)-9231.09375, (decimal?)-841.59375, (decimal?)28020.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21921, Nebula.NebulaType.Planetary, "Eor Aowsy DG-X e1-7072", 4, true, "Eor Aowsy DG-X e1-7072", (decimal?)-4692.53125, (decimal?)747.53125, (decimal?)17260.125, (int)10 )); + AllOfThem.Add(new Nebula( 21923, Nebula.NebulaType.Planetary, "Eor Aowsy ER-N e6-6828", 4, true, "Eor Aowsy ER-N e6-6828", (decimal?)-4746.375, (decimal?)100.3125, (decimal?)18040.125, (int)10 )); + AllOfThem.Add(new Nebula( 21925, Nebula.NebulaType.Planetary, "Eor Aowsy FW-N e6-11258", 4, true, "Eor Aowsy FW-N e6-11258", (decimal?)-4363.09375, (decimal?)261.6875, (decimal?)18001.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21926, Nebula.NebulaType.Planetary, "Eor Aowsy FW-W e1-8184", 4, true, "Eor Aowsy FW-W e1-8184", (decimal?)-4897.5, (decimal?)386, (decimal?)17264, (int)10 )); + AllOfThem.Add(new Nebula( 21928, Nebula.NebulaType.Planetary, "Eor Aowsy HX-T e3-2997", 4, true, "Eor Aowsy HX-T e3-2997", (decimal?)-4875.375, (decimal?)832.28125, (decimal?)17515.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21929, Nebula.NebulaType.Planetary, "Eor Aowsy IW-W e1-480", 4, true, "Eor Aowsy IW-W e1-480", (decimal?)-4517.75, (decimal?)303.5, (decimal?)17324.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21930, Nebula.NebulaType.Planetary, "Eor Aowsy KX-T e3-6788", 4, true, "Eor Aowsy KX-T e3-6788", (decimal?)-4494.78125, (decimal?)826.375, (decimal?)17544.875, (int)10 )); + AllOfThem.Add(new Nebula( 21931, Nebula.NebulaType.Planetary, "Eor Aowsy MN-T e3-3775", 4, true, "Eor Aowsy MN-T e3-3775", (decimal?)-4845.5, (decimal?)466.65625, (decimal?)17613.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21932, Nebula.NebulaType.Planetary, "Eor Aowsy MX-U e2-2707", 4, true, "Eor Aowsy MX-U e2-2707", (decimal?)-4749.65625, (decimal?)187.15625, (decimal?)17372.625, (int)10 )); + AllOfThem.Add(new Nebula( 21933, Nebula.NebulaType.Planetary, "Eor Aowsy NI-T e3-97", 4, true, "Eor Aowsy NI-T e3-97", (decimal?)-4984.03125, (decimal?)314.53125, (decimal?)17546.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21934, Nebula.NebulaType.Planetary, "Eor Aowsy OJ-Q e5-7541", 4, true, "Eor Aowsy OJ-Q e5-7541", (decimal?)-5155.5, (decimal?)869.40625, (decimal?)17817.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21937, Nebula.NebulaType.Planetary, "Eor Aowsy TJ-R e4-9206", 4, true, "Eor Aowsy TJ-R e4-9206", (decimal?)-4924.90625, (decimal?)274.6875, (decimal?)17751.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21939, Nebula.NebulaType.Planetary, "Eor Aowsy XF-O e6-7239", 4, true, "Eor Aowsy XF-O e6-7239", (decimal?)-4907.21875, (decimal?)522.1875, (decimal?)18042.875, (int)10 )); + AllOfThem.Add(new Nebula( 21940, Nebula.NebulaType.Planetary, "Eor Aowsy YK-X e1-1270", 4, true, "Eor Aowsy YK-X e1-1270", (decimal?)-5086.71875, (decimal?)846.78125, (decimal?)17210.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21941, Nebula.NebulaType.Planetary, "Eor Aub BF-A e850", 4, true, "Eor Aub BF-A e850", (decimal?)-4601.9375, (decimal?)152.34375, (decimal?)19457.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21942, Nebula.NebulaType.Planetary, "Eor Aub BP-A e3380", 4, true, "Eor Aub BP-A e3380", (decimal?)-3956.65625, (decimal?)504.34375, (decimal?)19565.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21943, Nebula.NebulaType.Planetary, "Eor Aub BW-N e6-2543", 4, true, "Eor Aub BW-N e6-2543", (decimal?)-4935.375, (decimal?)193.625, (decimal?)20652.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21945, Nebula.NebulaType.Planetary, "Eor Aub EB-X e1-3267", 4, true, "Eor Aub EB-X e1-3267", (decimal?)-4788.875, (decimal?)484.78125, (decimal?)19782.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21946, Nebula.NebulaType.Planetary, "Eor Aub EC-U e3-7660", 4, true, "Eor Aub EC-U e3-7660", (decimal?)-5142.5, (decimal?)1094.0625, (decimal?)20189.625, (int)10 )); + AllOfThem.Add(new Nebula( 21949, Nebula.NebulaType.Planetary, "Eor Aub HM-V e2-4296", 4, true, "Eor Aub HM-V e2-4296", (decimal?)-4682.15625, (decimal?)737.03125, (decimal?)19973.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21950, Nebula.NebulaType.Planetary, "Eor Aub IS-T e3-1364", 4, true, "Eor Aub IS-T e3-1364", (decimal?)-5102.75, (decimal?)772.8125, (decimal?)20069.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21951, Nebula.NebulaType.Planetary, "Eor Aub JS-T e3-364", 4, true, "Eor Aub JS-T e3-364", (decimal?)-4880.75, (decimal?)620.5, (decimal?)20151.75, (int)10 )); + AllOfThem.Add(new Nebula( 21952, Nebula.NebulaType.Planetary, "Eor Aub PY-R e4-1278", 4, true, "Eor Aub PY-R e4-1278", (decimal?)-4666.90625, (decimal?)758.40625, (decimal?)20241.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21954, Nebula.NebulaType.Planetary, "Eor Aub UE-Z e408", 4, true, "Eor Aub UE-Z e408", (decimal?)-5110.125, (decimal?)889.71875, (decimal?)19664.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21956, Nebula.NebulaType.Planetary, "Eor Aub WJ-Z e471", 4, true, "Eor Aub WJ-Z e471", (decimal?)-4527.21875, (decimal?)1037.84375, (decimal?)19727.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21957, Nebula.NebulaType.Planetary, "Eor Aub XE-Z e2602", 4, true, "Eor Aub XE-Z e2602", (decimal?)-4632.75, (decimal?)878.78125, (decimal?)19635, (int)10 )); + AllOfThem.Add(new Nebula( 21965, Nebula.NebulaType.Planetary, "Eor Briae DQ-X e1-6467", 4, true, "Eor Briae DQ-X e1-6467", (decimal?)-4029.125, (decimal?)976.15625, (decimal?)30072.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21966, Nebula.NebulaType.Planetary, "Eor Briae GR-V e2-926", 4, true, "Eor Briae GR-V e2-926", (decimal?)-4460.84375, (decimal?)783.28125, (decimal?)30277.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21967, Nebula.NebulaType.Planetary, "Eor Briae HX-T e3-8459", 4, true, "Eor Briae HX-T e3-8459", (decimal?)-4871.84375, (decimal?)856.34375, (decimal?)30331.875, (int)10 )); + AllOfThem.Add(new Nebula( 21968, Nebula.NebulaType.Planetary, "Eor Briae QD-B e6897", 4, true, "Eor Briae QD-B e6897", (decimal?)-4771.6875, (decimal?)992.96875, (decimal?)29812.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21969, Nebula.NebulaType.Planetary, "Eor Briae UD-B e3738", 4, true, "Eor Briae UD-B e3738", (decimal?)-4100.0625, (decimal?)953.0625, (decimal?)29711.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21970, Nebula.NebulaType.Planetary, "Eor Briae VE-Z e5907", 4, true, "Eor Briae VE-Z e5907", (decimal?)-4892.96875, (decimal?)908.875, (decimal?)29895.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21971, Nebula.NebulaType.Planetary, "Eor Briae YJ-Z e5992", 4, true, "Eor Briae YJ-Z e5992", (decimal?)-4202.78125, (decimal?)1046.40625, (decimal?)29874.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21981, Nebula.NebulaType.Planetary, "Eor Free DQ-Y e7539", 4, true, "Eor Free DQ-Y e7539", (decimal?)-7248.46875, (decimal?)434.6875, (decimal?)19702, (int)10 )); + AllOfThem.Add(new Nebula( 21982, Nebula.NebulaType.Planetary, "Eor Free GR-W e1-1826", 4, true, "Eor Free GR-W e1-1826", (decimal?)-7599.46875, (decimal?)258.65625, (decimal?)19753.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21983, Nebula.NebulaType.Planetary, "Eor Free GR-W e1-3451", 4, true, "Eor Free GR-W e1-3451", (decimal?)-7645.8125, (decimal?)226.96875, (decimal?)19755.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21984, Nebula.NebulaType.Planetary, "Eor Free HG-X e1-261", 4, true, "Eor Free HG-X e1-261", (decimal?)-6548.15625, (decimal?)620.3125, (decimal?)19872.375, (int)10 )); + AllOfThem.Add(new Nebula( 21985, Nebula.NebulaType.Planetary, "Eor Free IM-W e1-3196", 4, true, "Eor Free IM-W e1-3196", (decimal?)-7736.3125, (decimal?)94.6875, (decimal?)19799.375, (int)10 )); + AllOfThem.Add(new Nebula( 21986, Nebula.NebulaType.Planetary, "Eor Free IR-V e2-5160", 4, true, "Eor Free IR-V e2-5160", (decimal?)-6640.96875, (decimal?)847.90625, (decimal?)19913.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21987, Nebula.NebulaType.Planetary, "Eor Free JM-W e1-4517", 4, true, "Eor Free JM-W e1-4517", (decimal?)-7474.75, (decimal?)14.40625, (decimal?)19805.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21988, Nebula.NebulaType.Planetary, "Eor Free KC-U e3-6015", 4, true, "Eor Free KC-U e3-6015", (decimal?)-6681.96875, (decimal?)1018.90625, (decimal?)20070.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21989, Nebula.NebulaType.Planetary, "Eor Free MX-U e2-6040", 4, true, "Eor Free MX-U e2-6040", (decimal?)-7267.59375, (decimal?)269.25, (decimal?)20005.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21990, Nebula.NebulaType.Planetary, "Eor Free OM-W e1-4593", 4, true, "Eor Free OM-W e1-4593", (decimal?)-6783.375, (decimal?)31.125, (decimal?)19755.875, (int)10 )); + AllOfThem.Add(new Nebula( 21991, Nebula.NebulaType.Planetary, "Eor Free QT-R e4-2904", 4, true, "Eor Free QT-R e4-2904", (decimal?)-7279.34375, (decimal?)494.5, (decimal?)20222.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21992, Nebula.NebulaType.Planetary, "Eor Free RJ-Q e5-5924", 4, true, "Eor Free RJ-Q e5-5924", (decimal?)-7211.59375, (decimal?)843, (decimal?)20487.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21993, Nebula.NebulaType.Planetary, "Eor Free RY-A e4885", 4, true, "Eor Free RY-A e4885", (decimal?)-7552.71875, (decimal?)918.3125, (decimal?)19518.625, (int)10 )); + AllOfThem.Add(new Nebula( 21994, Nebula.NebulaType.Planetary, "Eor Free SP-O e6-197", 4, true, "Eor Free SP-O e6-197", (decimal?)-7670.15625, (decimal?)856.09375, (decimal?)20643.625, (int)10 )); + AllOfThem.Add(new Nebula( 21995, Nebula.NebulaType.Planetary, "Eor Free SP-O e6-5544", 4, true, "Eor Free SP-O e6-5544", (decimal?)-7634.6875, (decimal?)842.65625, (decimal?)20609.25, (int)10 )); + AllOfThem.Add(new Nebula( 21996, Nebula.NebulaType.Planetary, "Eor Free UJ-Q e5-5152", 4, true, "Eor Free UJ-Q e5-5152", (decimal?)-6636.0625, (decimal?)869.375, (decimal?)20480.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21997, Nebula.NebulaType.Planetary, "Eor Free UO-A e931", 4, true, "Eor Free UO-A e931", (decimal?)-7616.71875, (decimal?)492.46875, (decimal?)19551.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21998, Nebula.NebulaType.Planetary, "Eor Free YP-X e1-5517", 4, true, "Eor Free YP-X e1-5517", (decimal?)-7336.71875, (decimal?)954.875, (decimal?)19861.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22019, Nebula.NebulaType.Planetary, "Eord Blooe WE-Q e5-1010", 4, true, "Eord Blooe WE-Q e5-1010", (decimal?)-6782.8125, (decimal?)-1888.34375, (decimal?)28063.25, (int)10 )); + AllOfThem.Add(new Nebula( 22020, Nebula.NebulaType.Planetary, "Eord Blou DG-O e6-1679", 4, true, "Eord Blou DG-O e6-1679", (decimal?)-6521.25, (decimal?)-697.28125, (decimal?)28247.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22021, Nebula.NebulaType.Planetary, "Eord Blou DG-O e6-8005", 4, true, "Eord Blou DG-O e6-8005", (decimal?)-6600.71875, (decimal?)-696.96875, (decimal?)28269.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22022, Nebula.NebulaType.Planetary, "Eord Blou FL-P e5-3267", 4, true, "Eord Blou FL-P e5-3267", (decimal?)-6524.21875, (decimal?)-1147.78125, (decimal?)28160.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22023, Nebula.NebulaType.Planetary, "Eord Blou JW-W e1-6872", 4, true, "Eord Blou JW-W e1-6872", (decimal?)-6852.59375, (decimal?)-984.1875, (decimal?)27486.625, (int)10 )); + AllOfThem.Add(new Nebula( 22024, Nebula.NebulaType.Planetary, "Eord Blou MN-T e3-3875", 4, true, "Eord Blou MN-T e3-3875", (decimal?)-7279, (decimal?)-667.84375, (decimal?)27749.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22025, Nebula.NebulaType.Planetary, "Eord Blou OD-B e1498", 4, true, "Eord Blou OD-B e1498", (decimal?)-7685.1875, (decimal?)-206.5, (decimal?)27151.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22026, Nebula.NebulaType.Planetary, "Eord Blou OY-R e4-7399", 4, true, "Eord Blou OY-R e4-7399", (decimal?)-7302.625, (decimal?)-637.90625, (decimal?)28042.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22027, Nebula.NebulaType.Planetary, "Eord Blou RI-B e530", 4, true, "Eord Blou RI-B e530", (decimal?)-6808.78125, (decimal?)-69.53125, (decimal?)27097.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22028, Nebula.NebulaType.Planetary, "Eord Blou SZ-O e6-1340", 4, true, "Eord Blou SZ-O e6-1340", (decimal?)-7059, (decimal?)-169.28125, (decimal?)28303.875, (int)10 )); + AllOfThem.Add(new Nebula( 22029, Nebula.NebulaType.Planetary, "Eord Blou YU-Y e1963", 4, true, "Eord Blou YU-Y e1963", (decimal?)-7684.3125, (decimal?)-758.53125, (decimal?)27411.75, (int)10 )); + AllOfThem.Add(new Nebula( 22050, Nebula.NebulaType.Planetary, "Eord Flyuae QT-Q e5-3434", 4, true, "Eord Flyuae QT-Q e5-3434", (decimal?)-6712.4375, (decimal?)-79.625, (decimal?)17823.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22051, Nebula.NebulaType.Planetary, "Eord Flyuae QT-Q e5-4716", 4, true, "Eord Flyuae QT-Q e5-4716", (decimal?)-6782.25, (decimal?)-172.3125, (decimal?)17927.125, (int)10 )); + AllOfThem.Add(new Nebula( 22052, Nebula.NebulaType.Planetary, "Eord Flyuae RT-Q e5-10574", 4, true, "Eord Flyuae RT-Q e5-10574", (decimal?)-6600.03125, (decimal?)-31.9375, (decimal?)17838, (int)10 )); + AllOfThem.Add(new Nebula( 22056, Nebula.NebulaType.Planetary, "Eord Gree BF-Z e8551", 4, true, "Eord Gree BF-Z e8551", (decimal?)-6478.15625, (decimal?)-444.9375, (decimal?)29871.125, (int)10 )); + AllOfThem.Add(new Nebula( 22057, Nebula.NebulaType.Planetary, "Eord Gree CL-X e1-6388", 4, true, "Eord Gree CL-X e1-6388", (decimal?)-7033.21875, (decimal?)-440.09375, (decimal?)30125.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22058, Nebula.NebulaType.Planetary, "Eord Gree FH-U e3-3889", 4, true, "Eord Gree FH-U e3-3889", (decimal?)-7112.4375, (decimal?)-146.40625, (decimal?)30374.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22059, Nebula.NebulaType.Planetary, "Eord Gree KX-T e3-272", 4, true, "Eord Gree KX-T e3-272", (decimal?)-6953, (decimal?)-413.5, (decimal?)30358.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22060, Nebula.NebulaType.Planetary, "Eord Gree SO-Z e262", 4, true, "Eord Gree SO-Z e262", (decimal?)-7355.53125, (decimal?)-121.34375, (decimal?)29866.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22061, Nebula.NebulaType.Planetary, "Eord Gree TI-T e3-4524", 4, true, "Eord Gree TI-T e3-4524", (decimal?)-6617.09375, (decimal?)-831.125, (decimal?)30392.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22063, Nebula.NebulaType.Planetary, "Eord Gree XJ-Z e6510", 4, true, "Eord Gree XJ-Z e6510", (decimal?)-6836.0625, (decimal?)-281.21875, (decimal?)29940.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22067, Nebula.NebulaType.Planetary, "Eord Pri CA-Z e7265", 4, true, "Eord Pri CA-Z e7265", (decimal?)-4111.09375, (decimal?)-533.0625, (decimal?)19628.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22069, Nebula.NebulaType.Planetary, "Eord Pri DG-X e1-501", 4, true, "Eord Pri DG-X e1-501", (decimal?)-4638.5625, (decimal?)-636.59375, (decimal?)19792.375, (int)10 )); + AllOfThem.Add(new Nebula( 22070, Nebula.NebulaType.Planetary, "Eord Pri EC-U e3-662", 4, true, "Eord Pri EC-U e3-662", (decimal?)-5177.53125, (decimal?)-294.625, (decimal?)20078.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22071, Nebula.NebulaType.Planetary, "Eord Pri JM-V e2-3215", 4, true, "Eord Pri JM-V e2-3215", (decimal?)-4276.03125, (decimal?)-594.59375, (decimal?)19973.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22073, Nebula.NebulaType.Planetary, "Eord Pri OI-T e3-3080", 4, true, "Eord Pri OI-T e3-3080", (decimal?)-4733.96875, (decimal?)-870.8125, (decimal?)20107.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22074, Nebula.NebulaType.Planetary, "Eord Pri OJ-Q e5-4113", 4, true, "Eord Pri OJ-Q e5-4113", (decimal?)-5027.3125, (decimal?)-421.9375, (decimal?)20484.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22078, Nebula.NebulaType.Planetary, "Eord Pri XJ-Z e393", 4, true, "Eord Pri XJ-Z e393", (decimal?)-4227.8125, (decimal?)-314.0625, (decimal?)19723.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22107, Nebula.NebulaType.Planetary, "Eorl Briae AQ-X e1-1324", 4, true, "Eorl Briae AQ-X e1-1324", (decimal?)-5715.78125, (decimal?)1037.40625, (decimal?)30078.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22108, Nebula.NebulaType.Planetary, "Eorl Briae CQ-Y e8075", 4, true, "Eorl Briae CQ-Y e8075", (decimal?)-6046.375, (decimal?)329.78125, (decimal?)29818.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22109, Nebula.NebulaType.Planetary, "Eorl Briae GR-N e6-4245", 4, true, "Eorl Briae GR-N e6-4245", (decimal?)-5700.53125, (decimal?)39.1875, (decimal?)30791.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22110, Nebula.NebulaType.Planetary, "Eorl Briae LC-U e3-5985", 4, true, "Eorl Briae LC-U e3-5985", (decimal?)-5233.59375, (decimal?)1073.21875, (decimal?)30340.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22111, Nebula.NebulaType.Planetary, "Eorl Briae OS-T e3-8557", 4, true, "Eorl Briae OS-T e3-8557", (decimal?)-5370.34375, (decimal?)717.09375, (decimal?)30414.5, (int)10 )); + AllOfThem.Add(new Nebula( 22112, Nebula.NebulaType.Planetary, "Eorl Briae WT-A e2549", 4, true, "Eorl Briae WT-A e2549", (decimal?)-5698.46875, (decimal?)734.59375, (decimal?)29770.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22113, Nebula.NebulaType.Planetary, "Eorl Briae WY-A e5861", 4, true, "Eorl Briae WY-A e5861", (decimal?)-5430.09375, (decimal?)903.375, (decimal?)29722.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22198, Nebula.NebulaType.Planetary, "Eorm Bre CQ-X e1-7830", 4, true, "Eorm Bre CQ-X e1-7830", (decimal?)-2944.25, (decimal?)983.90625, (decimal?)30100.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22199, Nebula.NebulaType.Planetary, "Eorm Bre DQ-P e5-1263", 4, true, "Eorm Bre DQ-P e5-1263", (decimal?)-2747.0625, (decimal?)176.3125, (decimal?)30744.75, (int)10 )); + AllOfThem.Add(new Nebula( 22200, Nebula.NebulaType.Planetary, "Eorm Bre FV-Y e1754", 4, true, "Eorm Bre FV-Y e1754", (decimal?)-2775.125, (decimal?)541.875, (decimal?)29906.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22201, Nebula.NebulaType.Planetary, "Eorm Bre II-S e4-5158", 4, true, "Eorm Bre II-S e4-5158", (decimal?)-3774.84375, (decimal?)935.1875, (decimal?)30581.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22202, Nebula.NebulaType.Planetary, "Eorm Bre IL-Y e1919", 4, true, "Eorm Bre IL-Y e1919", (decimal?)-2827.5625, (decimal?)226.75, (decimal?)29922.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22204, Nebula.NebulaType.Planetary, "Eorm Bre RD-T e3-6951", 4, true, "Eorm Bre RD-T e3-6951", (decimal?)-3387.9375, (decimal?)243.96875, (decimal?)30448.625, (int)10 )); + AllOfThem.Add(new Nebula( 22205, Nebula.NebulaType.Planetary, "Eorm Bre SD-B e8868", 4, true, "Eorm Bre SD-B e8868", (decimal?)-3139.78125, (decimal?)953.5, (decimal?)29755.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22206, Nebula.NebulaType.Planetary, "Eorm Bre SS-U e2-7585", 4, true, "Eorm Bre SS-U e2-7585", (decimal?)-2866.1875, (decimal?)25.5625, (decimal?)30261.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22207, Nebula.NebulaType.Planetary, "Eorm Bre TZ-P e5-773", 4, true, "Eorm Bre TZ-P e5-773", (decimal?)-3674.78125, (decimal?)480.40625, (decimal?)30726.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22208, Nebula.NebulaType.Planetary, "Eorm Bre UY-S e3-3598", 4, true, "Eorm Bre UY-S e3-3598", (decimal?)-3237.75, (decimal?)115.8125, (decimal?)30318.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22209, Nebula.NebulaType.Planetary, "Eorm Bre VJ-Q e5-352", 4, true, "Eorm Bre VJ-Q e5-352", (decimal?)-2713.96875, (decimal?)815.90625, (decimal?)30772.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22250, Nebula.NebulaType.Planetary, "Eos Bre DF-A e4782", 4, true, "Eos Bre DF-A e4782", (decimal?)-1760.09375, (decimal?)184.96875, (decimal?)29710.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22254, Nebula.NebulaType.Planetary, "Eos Bre NS-U e2-5911", 4, true, "Eos Bre NS-U e2-5911", (decimal?)-2377.90625, (decimal?)26.4375, (decimal?)30160.5, (int)10 )); + AllOfThem.Add(new Nebula( 22258, Nebula.NebulaType.Planetary, "Eos Bre WJ-Z e191", 4, true, "Eos Bre WJ-Z e191", (decimal?)-1930.3125, (decimal?)1021.875, (decimal?)29879.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22381, Nebula.NebulaType.Planetary, "Foijaea UU-X e1-1458", 4, true, "Foijaea UU-X e1-1458", (decimal?)-5080.21875, (decimal?)-1405.96875, (decimal?)32577.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22431, Nebula.NebulaType.Planetary, "Granou HH-U e3-551", 4, true, "Granou HH-U e3-551", (decimal?)-4376.0625, (decimal?)-1309.09375, (decimal?)18872.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22432, Nebula.NebulaType.Planetary, "Granou LM-V e2-73", 4, true, "Granou LM-V e2-73", (decimal?)-3994.21875, (decimal?)-1943.21875, (decimal?)18723.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22468, Nebula.NebulaType.Planetary, "Huemou BB-W e2-3562", 4, true, "Huemou BB-W e2-3562", (decimal?)-3414.75, (decimal?)-1390.59375, (decimal?)26444.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22469, Nebula.NebulaType.Planetary, "Huemou DA-A e16", 4, true, "Huemou DA-A e16", (decimal?)-3334.375, (decimal?)-2506.78125, (decimal?)25925.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22470, Nebula.NebulaType.Planetary, "Huemou FC-U e3-2843", 4, true, "Huemou FC-U e3-2843", (decimal?)-3625.5, (decimal?)-1514.59375, (decimal?)26534.25, (int)10 )); + AllOfThem.Add(new Nebula( 22471, Nebula.NebulaType.Planetary, "Huemou UJ-R e4-202", 4, true, "Huemou UJ-R e4-202", (decimal?)-3457.75, (decimal?)-2421.71875, (decimal?)26652.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22508, Nebula.NebulaType.Planetary, "Hypiae Aub EH-U e3-1835", 4, true, "Hypiae Aub EH-U e3-1835", (decimal?)-6106.65625, (decimal?)1217.5, (decimal?)25303.25, (int)10 )); + AllOfThem.Add(new Nebula( 22509, Nebula.NebulaType.Planetary, "Hypiae Aub FB-X e1-5731", 4, true, "Hypiae Aub FB-X e1-5731", (decimal?)-5976.625, (decimal?)505.75, (decimal?)24934.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22510, Nebula.NebulaType.Planetary, "Hypiae Aub UE-Q e5-4145", 4, true, "Hypiae Aub UE-Q e5-4145", (decimal?)-5789.875, (decimal?)719.65625, (decimal?)25562.375, (int)10 )); + AllOfThem.Add(new Nebula( 22511, Nebula.NebulaType.Planetary, "Hypiae Aub WY-A e3439", 4, true, "Hypiae Aub WY-A e3439", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 22512, Nebula.NebulaType.Planetary, "Hypiae Aub ZP-P e5-2187", 4, true, "Hypiae Aub ZP-P e5-2187", (decimal?)-5856.96875, (decimal?)147.59375, (decimal?)25568.5, (int)10 )); + AllOfThem.Add(new Nebula( 22537, Nebula.NebulaType.Planetary, "Hypiae Free AB-O e6-3042", 4, true, "Hypiae Free AB-O e6-3042", (decimal?)-8560.5, (decimal?)318.53125, (decimal?)25727.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22538, Nebula.NebulaType.Planetary, "Hypiae Free AV-Y e3884", 4, true, "Hypiae Free AV-Y e3884", (decimal?)-8683.34375, (decimal?)508.78125, (decimal?)24819.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22539, Nebula.NebulaType.Planetary, "Hypiae Free DA-Z e6194", 4, true, "Hypiae Free DA-Z e6194", (decimal?)-7746.8125, (decimal?)658.6875, (decimal?)24790.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22540, Nebula.NebulaType.Planetary, "Hypiae Free EC-U e3-2904", 4, true, "Hypiae Free EC-U e3-2904", (decimal?)-8981.46875, (decimal?)1073.84375, (decimal?)25296, (int)10 )); + AllOfThem.Add(new Nebula( 22541, Nebula.NebulaType.Planetary, "Hypiae Free GC-U e3-2224", 4, true, "Hypiae Free GC-U e3-2224", (decimal?)-8646.59375, (decimal?)961.21875, (decimal?)25287.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22542, Nebula.NebulaType.Planetary, "Hypiae Free GG-Y e273", 4, true, "Hypiae Free GG-Y e273", (decimal?)-8600.5625, (decimal?)116.65625, (decimal?)24831.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22543, Nebula.NebulaType.Planetary, "Hypiae Free LN-S e4-1076", 4, true, "Hypiae Free LN-S e4-1076", (decimal?)-8101.96875, (decimal?)1127.65625, (decimal?)25448.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22544, Nebula.NebulaType.Planetary, "Hypiae Free NN-T e3-7012", 4, true, "Hypiae Free NN-T e3-7012", (decimal?)-8422.9375, (decimal?)492.59375, (decimal?)25321.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22545, Nebula.NebulaType.Planetary, "Hypiae Free OI-S e4-726", 4, true, "Hypiae Free OI-S e4-726", (decimal?)-8019.5625, (decimal?)998, (decimal?)25443.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22546, Nebula.NebulaType.Planetary, "Hypiae Free RY-A e1624", 4, true, "Hypiae Free RY-A e1624", (decimal?)-8795.625, (decimal?)835.6875, (decimal?)24590.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22547, Nebula.NebulaType.Planetary, "Hypiae Free SO-Q e5-4316", 4, true, "Hypiae Free SO-Q e5-4316", (decimal?)-7923.28125, (decimal?)970.6875, (decimal?)25568.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22548, Nebula.NebulaType.Planetary, "Hypiae Free SP-O e6-3958", 4, true, "Hypiae Free SP-O e6-3958", (decimal?)-9002.125, (decimal?)829.40625, (decimal?)25742.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22549, Nebula.NebulaType.Planetary, "Hypiae Free VY-S e3-9347", 4, true, "Hypiae Free VY-S e3-9347", (decimal?)-8178.5, (decimal?)99.3125, (decimal?)25258.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22550, Nebula.NebulaType.Planetary, "Hypiae Free XY-A e311", 4, true, "Hypiae Free XY-A e311", (decimal?)-7785.90625, (decimal?)885.09375, (decimal?)24675.875, (int)10 )); + AllOfThem.Add(new Nebula( 22605, Nebula.NebulaType.Planetary, "Hypio Proo BW-V e2-3704", 4, true, "Hypio Proo BW-V e2-3704", (decimal?)-2446.8125, (decimal?)-1546.09375, (decimal?)25104.5, (int)10 )); + AllOfThem.Add(new Nebula( 22607, Nebula.NebulaType.Planetary, "Hypio Proo MI-B e5889", 4, true, "Hypio Proo MI-B e5889", (decimal?)-2506.5, (decimal?)-1434.71875, (decimal?)24640, (int)10 )); + AllOfThem.Add(new Nebula( 22608, Nebula.NebulaType.Planetary, "Hypio Proo PD-B e251", 4, true, "Hypio Proo PD-B e251", (decimal?)-2437.65625, (decimal?)-1537.8125, (decimal?)24565.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22609, Nebula.NebulaType.Planetary, "Hypo Auf TS-U e2-552", 4, true, "Hypo Auf TS-U e2-552", (decimal?)-9108.75, (decimal?)1300.96875, (decimal?)25106.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22627, Nebula.NebulaType.Planetary, "Hypoae Audst FA-A e3011", 4, true, "Hypoae Audst FA-A e3011", (decimal?)-4245.9375, (decimal?)1265.5, (decimal?)24559.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22642, Nebula.NebulaType.Planetary, "Hypoae Chrea VJ-Z e2180", 4, true, "Hypoae Chrea VJ-Z e2180", (decimal?)-4683.40625, (decimal?)994.40625, (decimal?)32466.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22644, Nebula.NebulaType.Planetary, "Hypoae Scraa DW-N e6-180", 4, true, "Hypoae Scraa DW-N e6-180", (decimal?)-7226.84375, (decimal?)1519.65625, (decimal?)23191.375, (int)10 )); + AllOfThem.Add(new Nebula( 22678, Nebula.NebulaType.Planetary, "Hypoe Pruae AF-Z e5057", 4, true, "Hypoe Pruae AF-Z e5057", (decimal?)-2845.96875, (decimal?)-446.84375, (decimal?)24755.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22679, Nebula.NebulaType.Planetary, "Hypoe Pruae CK-A e4320", 4, true, "Hypoe Pruae CK-A e4320", (decimal?)-2895.6875, (decimal?)-917.40625, (decimal?)24656.875, (int)10 )); + AllOfThem.Add(new Nebula( 22680, Nebula.NebulaType.Planetary, "Hypoe Pruae EC-U e3-659", 4, true, "Hypoe Pruae EC-U e3-659", (decimal?)-3877.3125, (decimal?)-310.625, (decimal?)25183.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22681, Nebula.NebulaType.Planetary, "Hypoe Pruae IN-S e4-1747", 4, true, "Hypoe Pruae IN-S e4-1747", (decimal?)-3467.65625, (decimal?)-37.03125, (decimal?)25416.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22682, Nebula.NebulaType.Planetary, "Hypoe Pruae KW-W e1-1934", 4, true, "Hypoe Pruae KW-W e1-1934", (decimal?)-2824.375, (decimal?)-868.46875, (decimal?)24987.75, (int)10 )); + AllOfThem.Add(new Nebula( 22683, Nebula.NebulaType.Planetary, "Hypoe Pruae KW-W e1-5971", 4, true, "Hypoe Pruae KW-W e1-5971", (decimal?)-2941.25, (decimal?)-911, (decimal?)25006.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22684, Nebula.NebulaType.Planetary, "Hypoe Pruae QO-Q e5-5668", 4, true, "Hypoe Pruae QO-Q e5-5668", (decimal?)-3159.65625, (decimal?)-272.28125, (decimal?)25597.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22685, Nebula.NebulaType.Planetary, "Hypoe Pruae RZ-O e6-1709", 4, true, "Hypoe Pruae RZ-O e6-1709", (decimal?)-3295.71875, (decimal?)-86.75, (decimal?)25678.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22686, Nebula.NebulaType.Planetary, "Hypoe Pruae SJ-Z e1415", 4, true, "Hypoe Pruae SJ-Z e1415", (decimal?)-3783.71875, (decimal?)-325, (decimal?)24718.75, (int)10 )); + AllOfThem.Add(new Nebula( 22687, Nebula.NebulaType.Planetary, "Hypoe Pruae UJ-Z e6493", 4, true, "Hypoe Pruae UJ-Z e6493", (decimal?)-3583.34375, (decimal?)-244.40625, (decimal?)24829.5, (int)10 )); + AllOfThem.Add(new Nebula( 22688, Nebula.NebulaType.Planetary, "Hypoe Pruae UJ-Z e6834", 4, true, "Hypoe Pruae UJ-Z e6834", (decimal?)-3515.15625, (decimal?)-261.15625, (decimal?)24756.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22689, Nebula.NebulaType.Planetary, "Hypoe Pruae VJ-Z e1059", 4, true, "Hypoe Pruae VJ-Z e1059", (decimal?)-3273.1875, (decimal?)-325.125, (decimal?)24846.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22690, Nebula.NebulaType.Planetary, "Hypoe Pruae WU-X e1-1270", 4, true, "Hypoe Pruae WU-X e1-1270", (decimal?)-3450.40625, (decimal?)-105.65625, (decimal?)24993.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22698, Nebula.NebulaType.Planetary, "Hypou Aoscs CL-Y e1693", 4, true, "Hypou Aoscs CL-Y e1693", (decimal?)-3817.9375, (decimal?)196.5, (decimal?)22244.875, (int)10 )); + AllOfThem.Add(new Nebula( 22699, Nebula.NebulaType.Planetary, "Hypou Aoscs EC-U e3-2583", 4, true, "Hypou Aoscs EC-U e3-2583", (decimal?)-3800.75, (decimal?)1034.3125, (decimal?)22673.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22703, Nebula.NebulaType.Planetary, "Hypou Aoscs LX-U e2-4229", 4, true, "Hypou Aoscs LX-U e2-4229", (decimal?)-3625.90625, (decimal?)168.625, (decimal?)22557.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22704, Nebula.NebulaType.Planetary, "Hypou Aoscs MI-T e3-3604", 4, true, "Hypou Aoscs MI-T e3-3604", (decimal?)-3778.75, (decimal?)404.9375, (decimal?)22664.375, (int)10 )); + AllOfThem.Add(new Nebula( 22705, Nebula.NebulaType.Planetary, "Hypou Aoscs NS-U e2-6583", 4, true, "Hypou Aoscs NS-U e2-6583", (decimal?)-3648.09375, (decimal?)70.15625, (decimal?)22613.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22706, Nebula.NebulaType.Planetary, "Hypou Aoscs PY-R e4-7124", 4, true, "Hypou Aoscs PY-R e4-7124", (decimal?)-3407.28125, (decimal?)653.15625, (decimal?)22842.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22707, Nebula.NebulaType.Planetary, "Hypou Aoscs PY-R e4-9698", 4, true, "Hypou Aoscs PY-R e4-9698", (decimal?)-3422.75, (decimal?)671.9375, (decimal?)22927.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22711, Nebula.NebulaType.Planetary, "Hypou Aoscs WF-O e6-32", 4, true, "Hypou Aoscs WF-O e6-32", (decimal?)-3823.28125, (decimal?)466.875, (decimal?)23188.5, (int)10 )); + AllOfThem.Add(new Nebula( 22712, Nebula.NebulaType.Planetary, "Hypou Aoscs XE-R e4-2150", 4, true, "Hypou Aoscs XE-R e4-2150", (decimal?)-3355.8125, (decimal?)-9.71875, (decimal?)22841.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22858, Nebula.NebulaType.Planetary, "Iwaitt AV-Y e4778", 4, true, "Iwaitt AV-Y e4778", (decimal?)-4842.875, (decimal?)-707.46875, (decimal?)32435.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22859, Nebula.NebulaType.Planetary, "Iwaitt EB-X e1-6594", 4, true, "Iwaitt EB-X e1-6594", (decimal?)-4827.9375, (decimal?)-801.15625, (decimal?)32614.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22862, Nebula.NebulaType.Planetary, "Iwaitt OI-B e10288", 4, true, "Iwaitt OI-B e10288", (decimal?)-4824.78125, (decimal?)-91.34375, (decimal?)32332.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22865, Nebula.NebulaType.Planetary, "Iwaitt UJ-Z e10062", 4, true, "Iwaitt UJ-Z e10062", (decimal?)-4741.8125, (decimal?)-221.3125, (decimal?)32529.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22866, Nebula.NebulaType.Planetary, "Iwaitt ZA-W e2-232", 4, true, "Iwaitt ZA-W e2-232", (decimal?)-5017.0625, (decimal?)-132.3125, (decimal?)32729.625, (int)10 )); + AllOfThem.Add(new Nebula( 22888, Nebula.NebulaType.Planetary, "Juemeau QD-T e3-12", 4, true, "Juemeau QD-T e3-12", (decimal?)-11248.53125, (decimal?)-1118.6875, (decimal?)26527.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22890, Nebula.NebulaType.Planetary, "Juemee EB-O e6-760", 4, true, "Juemee EB-O e6-760", (decimal?)-9199.65625, (decimal?)-845.1875, (decimal?)27014.375, (int)10 )); + AllOfThem.Add(new Nebula( 22891, Nebula.NebulaType.Planetary, "Juemee FL-X e1-9214", 4, true, "Juemee FL-X e1-9214", (decimal?)-9180.28125, (decimal?)-362.59375, (decimal?)26280, (int)10 )); + AllOfThem.Add(new Nebula( 22892, Nebula.NebulaType.Planetary, "Juemee HQ-Y e3869", 4, true, "Juemee HQ-Y e3869", (decimal?)-9069.28125, (decimal?)-839.25, (decimal?)26086.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22893, Nebula.NebulaType.Planetary, "Juemee IH-U e3-7697", 4, true, "Juemee IH-U e3-7697", (decimal?)-9309.84375, (decimal?)-55.8125, (decimal?)26531.5, (int)10 )); + AllOfThem.Add(new Nebula( 22894, Nebula.NebulaType.Planetary, "Juemee PD-B e83", 4, true, "Juemee PD-B e83", (decimal?)-10077.1875, (decimal?)-260.875, (decimal?)25830.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22897, Nebula.NebulaType.Planetary, "Juemee VY-A e4226", 4, true, "Juemee VY-A e4226", (decimal?)-9457, (decimal?)-368.75, (decimal?)25867.25, (int)10 )); + AllOfThem.Add(new Nebula( 22898, Nebula.NebulaType.Planetary, "Juemee VZ-O e6-4216", 4, true, "Juemee VZ-O e6-4216", (decimal?)-9133.09375, (decimal?)-89.71875, (decimal?)26978, (int)10 )); + AllOfThem.Add(new Nebula( 22919, Nebula.NebulaType.Planetary, "Juenio BG-X e1-4188", 4, true, "Juenio BG-X e1-4188", (decimal?)-7569.5, (decimal?)-617.15625, (decimal?)26162.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22920, Nebula.NebulaType.Planetary, "Juenio BV-P e5-2444", 4, true, "Juenio BV-P e5-2444", (decimal?)-6503.875, (decimal?)-981.3125, (decimal?)26849.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22921, Nebula.NebulaType.Planetary, "Juenio CB-X e1-5523", 4, true, "Juenio CB-X e1-5523", (decimal?)-7742.5, (decimal?)-739.9375, (decimal?)26162.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22922, Nebula.NebulaType.Planetary, "Juenio er-v e2-509", 4, true, "Juenio ER-V e2-509", (decimal?)-7383.8125, (decimal?)-410.09375, (decimal?)26431.375, (int)10 )); + AllOfThem.Add(new Nebula( 22923, Nebula.NebulaType.Planetary, "Juenio JW-W e1-227", 4, true, "Juenio JW-W e1-227", (decimal?)-6911.4375, (decimal?)-894.125, (decimal?)26156.375, (int)10 )); + AllOfThem.Add(new Nebula( 22924, Nebula.NebulaType.Planetary, "Juenio OT-R e4-1077", 4, true, "Juenio OT-R e4-1077", (decimal?)-7613.625, (decimal?)-677.46875, (decimal?)26632.75, (int)10 )); + AllOfThem.Add(new Nebula( 22925, Nebula.NebulaType.Planetary, "Juenio OX-U e2-2786", 4, true, "Juenio OX-U e2-2786", (decimal?)-6992.96875, (decimal?)-1061.6875, (decimal?)26355.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22926, Nebula.NebulaType.Planetary, "Juenio PY-R e4-3589", 4, true, "Juenio PY-R e4-3589", (decimal?)-7232.1875, (decimal?)-525.71875, (decimal?)26653.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22927, Nebula.NebulaType.Planetary, "Juenio RE-Q e5-6353", 4, true, "Juenio RE-Q e5-6353", (decimal?)-7566, (decimal?)-546.40625, (decimal?)26799.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22928, Nebula.NebulaType.Planetary, "Juenio RY-A e4397", 4, true, "Juenio RY-A e4397", (decimal?)-7445.90625, (decimal?)-382.6875, (decimal?)25968, (int)10 )); + AllOfThem.Add(new Nebula( 22929, Nebula.NebulaType.Planetary, "Juenio WE-Q e5-4347", 4, true, "Juenio WE-Q e5-4347", (decimal?)-6748.53125, (decimal?)-647.78125, (decimal?)26886.25, (int)10 )); + AllOfThem.Add(new Nebula( 22930, Nebula.NebulaType.Planetary, "Juenio ZP-X e1-36", 4, true, "Juenio ZP-X e1-36", (decimal?)-7156.9375, (decimal?)-321.78125, (decimal?)26292.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22931, Nebula.NebulaType.Planetary, "Juenoe DR-V e2-9252", 4, true, "Juenoe DR-V e2-9252", (decimal?)-8831.125, (decimal?)-425.59375, (decimal?)26451.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22932, Nebula.NebulaType.Planetary, "Juenoe DW-V e2-1432", 4, true, "Juenoe DW-V e2-1432", (decimal?)-8526.3125, (decimal?)-191.875, (decimal?)26438.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22933, Nebula.NebulaType.Planetary, "Juenoe EM-V e2-4355", 4, true, "Juenoe EM-V e2-4355", (decimal?)-8948.59375, (decimal?)-650.75, (decimal?)26438.5, (int)10 )); + AllOfThem.Add(new Nebula( 22934, Nebula.NebulaType.Planetary, "Juenoe EM-V e2-592", 4, true, "Juenoe EM-V e2-592", (decimal?)-8939.15625, (decimal?)-617.03125, (decimal?)26314.75, (int)10 )); + AllOfThem.Add(new Nebula( 22935, Nebula.NebulaType.Planetary, "Juenoe FW-V e2-1081", 4, true, "Juenoe FW-V e2-1081", (decimal?)-8103.375, (decimal?)-249.8125, (decimal?)26344.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22936, Nebula.NebulaType.Planetary, "Juenoe HB-X e1-6641", 4, true, "Juenoe HB-X e1-6641", (decimal?)-8135.40625, (decimal?)-775.3125, (decimal?)26203.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22937, Nebula.NebulaType.Planetary, "Juenoe HB-X e1-7555", 4, true, "Juenoe HB-X e1-7555", (decimal?)-8177.78125, (decimal?)-817.5, (decimal?)26188.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22938, Nebula.NebulaType.Planetary, "Juenoe KI-S e4-2528", 4, true, "Juenoe KI-S e4-2528", (decimal?)-8642.46875, (decimal?)-303.125, (decimal?)26666.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22939, Nebula.NebulaType.Planetary, "Juenoe LS-T e3-1770", 4, true, "Juenoe LS-T e3-1770", (decimal?)-8448.3125, (decimal?)-619.5625, (decimal?)26492.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22940, Nebula.NebulaType.Planetary, "Juenoe MI-B e1951", 4, true, "Juenoe MI-B e1951", (decimal?)-8927.5625, (decimal?)-30.6875, (decimal?)25883.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22941, Nebula.NebulaType.Planetary, "Juenoe OZ-O e6-10376", 4, true, "Juenoe OZ-O e6-10376", (decimal?)-8962.84375, (decimal?)-109.75, (decimal?)26989.125, (int)10 )); + AllOfThem.Add(new Nebula( 22942, Nebula.NebulaType.Planetary, "Juenoe QN-T e3-325", 4, true, "Juenoe QN-T e3-325", (decimal?)-7995, (decimal?)-764.53125, (decimal?)26541.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22943, Nebula.NebulaType.Planetary, "Juenoe UZ-P e5-2278", 4, true, "Juenoe UZ-P e5-2278", (decimal?)-8639.5625, (decimal?)-804.28125, (decimal?)26895.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22944, Nebula.NebulaType.Planetary, "Juenoe XP-X e1-4153", 4, true, "Juenoe XP-X e1-4153", (decimal?)-8753.4375, (decimal?)-214.59375, (decimal?)26244.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22945, Nebula.NebulaType.Planetary, "Juenoe YK-X e1-47", 4, true, "Juenoe YK-X e1-47", (decimal?)-8896.46875, (decimal?)-407.3125, (decimal?)26293.75, (int)10 )); + AllOfThem.Add(new Nebula( 22946, Nebula.NebulaType.Planetary, "Juenoea BL-P e5-2417", 4, true, "Juenoea BL-P e5-2417", (decimal?)-5844.625, (decimal?)-1153.9375, (decimal?)26854.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22947, Nebula.NebulaType.Planetary, "Juenoea CG-X e1-1103", 4, true, "Juenoea CG-X e1-1103", (decimal?)-6072.46875, (decimal?)-518.03125, (decimal?)26278.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22948, Nebula.NebulaType.Planetary, "Juenoea CL-X e1-362", 4, true, "Juenoea CL-X e1-362", (decimal?)-5698.8125, (decimal?)-500.28125, (decimal?)26180.875, (int)10 )); + AllOfThem.Add(new Nebula( 22949, Nebula.NebulaType.Planetary, "Juenoea EQ-Y e5803", 4, true, "Juenoea EQ-Y e5803", (decimal?)-5793.625, (decimal?)-870.59375, (decimal?)26090.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22950, Nebula.NebulaType.Planetary, "Juenoea HQ-Y e6791", 4, true, "Juenoea HQ-Y e6791", (decimal?)-5341.28125, (decimal?)-851.78125, (decimal?)26065.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22951, Nebula.NebulaType.Planetary, "Juenoea JH-V e2-1177", 4, true, "Juenoea JH-V e2-1177", (decimal?)-5907.375, (decimal?)-815.09375, (decimal?)26315.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22952, Nebula.NebulaType.Planetary, "Juenoea MN-T e3-3218", 4, true, "Juenoea MN-T e3-3218", (decimal?)-6097.75, (decimal?)-799.40625, (decimal?)26499, (int)10 )); + AllOfThem.Add(new Nebula( 22953, Nebula.NebulaType.Planetary, "Juenoea NC-V e2-465", 4, true, "Juenoea NC-V e2-465", (decimal?)-5655.84375, (decimal?)-859.65625, (decimal?)26396.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22954, Nebula.NebulaType.Planetary, "Juenoea NI-T e3-7607", 4, true, "Juenoea NI-T e3-7607", (decimal?)-6170.6875, (decimal?)-832.15625, (decimal?)26611.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22955, Nebula.NebulaType.Planetary, "Juenoea PX-U e2-7434", 4, true, "Juenoea PX-U e2-7434", (decimal?)-5544.625, (decimal?)-1018.71875, (decimal?)26372.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22956, Nebula.NebulaType.Planetary, "Juenoea PZ-O e6-3118", 4, true, "Juenoea PZ-O e6-3118", (decimal?)-6211.3125, (decimal?)-126.09375, (decimal?)26977.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22957, Nebula.NebulaType.Planetary, "Juenoi BK-A e10541", 4, true, "Juenoi BK-A e10541", (decimal?)-4383.4375, (decimal?)-941.28125, (decimal?)25953.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22958, Nebula.NebulaType.Planetary, "Juenoi EB-O e6-2685", 4, true, "Juenoi EB-O e6-2685", (decimal?)-4176.96875, (decimal?)-923.1875, (decimal?)27083.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22959, Nebula.NebulaType.Planetary, "Juenoi EB-O e6-847", 4, true, "Juenoi EB-O e6-847", (decimal?)-4197.21875, (decimal?)-924.90625, (decimal?)27024.125, (int)10 )); + AllOfThem.Add(new Nebula( 22960, Nebula.NebulaType.Planetary, "Juenoi QO-R e4-8081", 4, true, "Juenoi QO-R e4-8081", (decimal?)-5124.03125, (decimal?)-888.375, (decimal?)26733.75, (int)10 )); + AllOfThem.Add(new Nebula( 22961, Nebula.NebulaType.Planetary, "Juenoi SJ-R e4-2225", 4, true, "Juenoi SJ-R e4-2225", (decimal?)-5103.4375, (decimal?)-1034.34375, (decimal?)26675.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22962, Nebula.NebulaType.Planetary, "Juenoi TD-B e7604", 4, true, "Juenoi TD-B e7604", (decimal?)-4242.75, (decimal?)-212.28125, (decimal?)25903.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22963, Nebula.NebulaType.Planetary, "Juenoi TT-R e4-2530", 4, true, "Juenoi TT-R e4-2530", (decimal?)-4320.375, (decimal?)-727.09375, (decimal?)26630.625, (int)10 )); + AllOfThem.Add(new Nebula( 22964, Nebula.NebulaType.Planetary, "Juenoi UT-R e4-509", 4, true, "Juenoi UT-R e4-509", (decimal?)-4164.96875, (decimal?)-772.59375, (decimal?)26753.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22965, Nebula.NebulaType.Planetary, "Juenoi WO-R e4-5646", 4, true, "Juenoi WO-R e4-5646", (decimal?)-4149.53125, (decimal?)-883.40625, (decimal?)26755.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22966, Nebula.NebulaType.Planetary, "Juenoi XT-A e2650", 4, true, "Juenoi XT-A e2650", (decimal?)-4354.0625, (decimal?)-646.15625, (decimal?)25905.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22967, Nebula.NebulaType.Planetary, "Juenoi XY-S e3-2780", 4, true, "Juenoi XY-S e3-2780", (decimal?)-4000.65625, (decimal?)-1271.9375, (decimal?)26588.75, (int)10 )); + AllOfThem.Add(new Nebula( 22970, Nebula.NebulaType.Planetary, "Kyloabs FR-V e2-5920", 4, true, "Kyloabs FR-V e2-5920", (decimal?)-4605.34375, (decimal?)-359.4375, (decimal?)21248.625, (int)10 )); + AllOfThem.Add(new Nebula( 22971, Nebula.NebulaType.Planetary, "Kyloabs FR-V e2-6103", 4, true, "Kyloabs FR-V e2-6103", (decimal?)-4652.59375, (decimal?)-379.5, (decimal?)21177.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22972, Nebula.NebulaType.Planetary, "Kyloabs ND-S e4-9473", 4, true, "Kyloabs ND-S e4-9473", (decimal?)-4661.34375, (decimal?)-450.8125, (decimal?)21526.875, (int)10 )); + AllOfThem.Add(new Nebula( 22973, Nebula.NebulaType.Planetary, "Kyloabs PI-B e838", 4, true, "Kyloabs PI-B e838", (decimal?)-4580.46875, (decimal?)-164.4375, (decimal?)20751.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22975, Nebula.NebulaType.Planetary, "Kyloabs RO-R e4-687", 4, true, "Kyloabs RO-R e4-687", (decimal?)-4996.875, (decimal?)-865.78125, (decimal?)21544.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22976, Nebula.NebulaType.Planetary, "Kyloabs SJ-Q e5-6013", 4, true, "Kyloabs SJ-Q e5-6013", (decimal?)-4393.78125, (decimal?)-358.40625, (decimal?)21704.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22977, Nebula.NebulaType.Planetary, "Kyloabs SJ-Z e7151", 4, true, "Kyloabs SJ-Z e7151", (decimal?)-5163.28125, (decimal?)-285.625, (decimal?)20986.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22978, Nebula.NebulaType.Planetary, "Kyloabs SY-R e4-55", 4, true, "Kyloabs SY-R e4-55", (decimal?)-4144.15625, (decimal?)-634, (decimal?)21576.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22979, Nebula.NebulaType.Planetary, "Kyloabs XK-O e6-305", 4, true, "Kyloabs XK-O e6-305", (decimal?)-4608.5625, (decimal?)-534.90625, (decimal?)21973.875, (int)10 )); + AllOfThem.Add(new Nebula( 22980, Nebula.NebulaType.Planetary, "Kyloabs YA-W e2-4595", 4, true, "Kyloabs YA-W e2-4595", (decimal?)-5063.34375, (decimal?)-123.71875, (decimal?)21176.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22981, Nebula.NebulaType.Planetary, "Kyloabs ZU-X e1-5668", 4, true, "Kyloabs ZU-X e1-5668", (decimal?)-4262.53125, (decimal?)-96.96875, (decimal?)21145.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22982, Nebula.NebulaType.Planetary, "Kyloabs ZU-X e1-5988", 4, true, "Kyloabs ZU-X e1-5988", (decimal?)-4338.03125, (decimal?)-74.46875, (decimal?)21126.625, (int)10 )); + AllOfThem.Add(new Nebula( 22986, Nebula.NebulaType.Planetary, "Kyloall AG-X e1-9146", 4, true, "Kyloall AG-X e1-9146", (decimal?)-8876.53125, (decimal?)-612.71875, (decimal?)21144.125, (int)10 )); + AllOfThem.Add(new Nebula( 22987, Nebula.NebulaType.Planetary, "Kyloall AV-X e1-919", 4, true, "Kyloall AV-X e1-919", (decimal?)-7949.0625, (decimal?)-32.46875, (decimal?)21065.875, (int)10 )); + AllOfThem.Add(new Nebula( 22988, Nebula.NebulaType.Planetary, "Kyloall BQ-X e1-6754", 4, true, "Kyloall BQ-X e1-6754", (decimal?)-8139.71875, (decimal?)-195.40625, (decimal?)21140.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22989, Nebula.NebulaType.Planetary, "Kyloall CK-A e7540", 4, true, "Kyloall CK-A e7540", (decimal?)-8021.34375, (decimal?)-918.3125, (decimal?)20808.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22990, Nebula.NebulaType.Planetary, "Kyloall EC-U e3-2260", 4, true, "Kyloall EC-U e3-2260", (decimal?)-8914.8125, (decimal?)-250.6875, (decimal?)21348.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22991, Nebula.NebulaType.Planetary, "Kyloall EM-V e2-8204", 4, true, "Kyloall EM-V e2-8204", (decimal?)-8943.125, (decimal?)-521.1875, (decimal?)21281.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22992, Nebula.NebulaType.Planetary, "Kyloall FB-O e6-5815", 4, true, "Kyloall FB-O e6-5815", (decimal?)-7745.53125, (decimal?)-982.75, (decimal?)21932.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22993, Nebula.NebulaType.Planetary, "Kyloall ND-S e4-2478", 4, true, "Kyloall ND-S e4-2478", (decimal?)-8395.0625, (decimal?)-362, (decimal?)21548.25, (int)10 )); + AllOfThem.Add(new Nebula( 22994, Nebula.NebulaType.Planetary, "Kyloall NX-T e3-2034", 4, true, "Kyloall NX-T e3-2034", (decimal?)-7842.875, (decimal?)-350.65625, (decimal?)21432.875, (int)10 )); + AllOfThem.Add(new Nebula( 22995, Nebula.NebulaType.Planetary, "Kyloall NY-R e4-4077", 4, true, "Kyloall NY-R e4-4077", (decimal?)-8821.6875, (decimal?)-658.875, (decimal?)21530.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22996, Nebula.NebulaType.Planetary, "Kyloall OT-R e4-5122", 4, true, "Kyloall OT-R e4-5122", (decimal?)-8989, (decimal?)-806.78125, (decimal?)21503.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22997, Nebula.NebulaType.Planetary, "Kyloall QE-Q e5-8177", 4, true, "Kyloall QE-Q e5-8177", (decimal?)-8869.96875, (decimal?)-543.375, (decimal?)21726.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22998, Nebula.NebulaType.Planetary, "Kyloall SD-B e273", 4, true, "Kyloall SD-B e273", (decimal?)-8371.09375, (decimal?)-343.21875, (decimal?)20726.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22999, Nebula.NebulaType.Planetary, "Kyloall UJ-Z e4878", 4, true, "Kyloall UJ-Z e4878", (decimal?)-8626.0625, (decimal?)-195.96875, (decimal?)20908.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23000, Nebula.NebulaType.Planetary, "Kyloall WJ-Z e2386", 4, true, "Kyloall WJ-Z e2386", (decimal?)-8238.9375, (decimal?)-335.28125, (decimal?)20964.875, (int)10 )); + AllOfThem.Add(new Nebula( 23001, Nebula.NebulaType.Planetary, "Kyloall XK-O e6-6677", 4, true, "Kyloall XK-O e6-6677", (decimal?)-8537.03125, (decimal?)-562.40625, (decimal?)21838.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23002, Nebula.NebulaType.Planetary, "Kyloall XT-A e1590", 4, true, "Kyloall XT-A e1590", (decimal?)-8188.1875, (decimal?)-633.125, (decimal?)20853.375, (int)10 )); + AllOfThem.Add(new Nebula( 23003, Nebula.NebulaType.Planetary, "Kyloall XZ-Y e6161", 4, true, "Kyloall XZ-Y e6161", (decimal?)-8731.65625, (decimal?)-564.15625, (decimal?)20897.5, (int)10 )); + AllOfThem.Add(new Nebula( 23004, Nebula.NebulaType.Planetary, "Kyloall YP-X e1-6013", 4, true, "Kyloall YP-X e1-6013", (decimal?)-8573.03125, (decimal?)-198.71875, (decimal?)21135.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23005, Nebula.NebulaType.Planetary, "Kyloall YP-X e1-764", 4, true, "Kyloall YP-X e1-764", (decimal?)-8594.21875, (decimal?)-245.9375, (decimal?)21147.875, (int)10 )); + AllOfThem.Add(new Nebula( 23006, Nebula.NebulaType.Planetary, "Kyloaln BV-X e1-5535", 4, true, "Kyloaln BV-X e1-5535", (decimal?)-5300.125, (decimal?)-178.75, (decimal?)21071.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23007, Nebula.NebulaType.Planetary, "Kyloaln FH-U e3-7801", 4, true, "Kyloaln FH-U e3-7801", (decimal?)-5912.84375, (decimal?)-67.34375, (decimal?)21493.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23008, Nebula.NebulaType.Planetary, "Kyloaln GR-W e1-5394", 4, true, "Kyloaln GR-W e1-5394", (decimal?)-6422.15625, (decimal?)-1067.375, (decimal?)21016.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23009, Nebula.NebulaType.Planetary, "Kyloaln KI-S e4-1477", 4, true, "Kyloaln KI-S e4-1477", (decimal?)-6067.625, (decimal?)-317.25, (decimal?)21552.875, (int)10 )); + AllOfThem.Add(new Nebula( 23010, Nebula.NebulaType.Planetary, "Kyloaln OI-B e5752", 4, true, "Kyloaln OI-B e5752", (decimal?)-5989.21875, (decimal?)-68.84375, (decimal?)20801.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23011, Nebula.NebulaType.Planetary, "Kyloaln PD-S e4-3648", 4, true, "Kyloaln PD-S e4-3648", (decimal?)-5544.40625, (decimal?)-445.03125, (decimal?)21632.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23012, Nebula.NebulaType.Planetary, "Kyloaln PI-B e2924", 4, true, "Kyloaln PI-B e2924", (decimal?)-5834.34375, (decimal?)-42.71875, (decimal?)20813.875, (int)10 )); + AllOfThem.Add(new Nebula( 23013, Nebula.NebulaType.Planetary, "Kyloaln PS-T e3-5576", 4, true, "Kyloaln PS-T e3-5576", (decimal?)-5205.40625, (decimal?)-631.5625, (decimal?)21378.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23014, Nebula.NebulaType.Planetary, "Kyloaln QO-Q e5-3731", 4, true, "Kyloaln QO-Q e5-3731", (decimal?)-5689.125, (decimal?)-239.71875, (decimal?)21759.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23015, Nebula.NebulaType.Planetary, "Kyloaln UD-B e8132", 4, true, "Kyloaln UD-B e8132", (decimal?)-5472.53125, (decimal?)-279.21875, (decimal?)20705.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23016, Nebula.NebulaType.Planetary, "Kyloaln XP-O e6-8459", 4, true, "Kyloaln XP-O e6-8459", (decimal?)-5518.4375, (decimal?)-475.28125, (decimal?)21927.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23017, Nebula.NebulaType.Planetary, "Kyloaln XP-O e6-8630", 4, true, "Kyloaln XP-O e6-8630", (decimal?)-5638.5625, (decimal?)-413.375, (decimal?)21842.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23018, Nebula.NebulaType.Planetary, "Kyloaln YA-O e6-4178", 4, true, "Kyloaln YA-O e6-4178", (decimal?)-6358.21875, (decimal?)-869.78125, (decimal?)21941.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23019, Nebula.NebulaType.Planetary, "Kyloaln ZK-O e6-9955", 4, true, "Kyloaln ZK-O e6-9955", (decimal?)-5656.75, (decimal?)-581.875, (decimal?)21816.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23034, Nebula.NebulaType.Planetary, "Kyloarph AA-Z e3525", 4, true, "Kyloarph AA-Z e3525", (decimal?)-7051.875, (decimal?)-561.6875, (decimal?)20889.5, (int)10 )); + AllOfThem.Add(new Nebula( 23035, Nebula.NebulaType.Planetary, "Kyloarph DR-V e2-55", 4, true, "Kyloarph DR-V e2-55", (decimal?)-7473.4375, (decimal?)-489.40625, (decimal?)21188.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23036, Nebula.NebulaType.Planetary, "Kyloarph DV-Y e4134", 4, true, "Kyloarph DV-Y e4134", (decimal?)-6938.125, (decimal?)-730.34375, (decimal?)20886.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23037, Nebula.NebulaType.Planetary, "Kyloarph FW-V e2-3112", 4, true, "Kyloarph FW-V e2-3112", (decimal?)-6796.71875, (decimal?)-235.03125, (decimal?)21274.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23038, Nebula.NebulaType.Planetary, "Kyloarph FW-V e2-3162", 4, true, "Kyloarph FW-V e2-3162", (decimal?)-6843.78125, (decimal?)-319.375, (decimal?)21252.375, (int)10 )); + AllOfThem.Add(new Nebula( 23039, Nebula.NebulaType.Planetary, "Kyloarph FW-V e2-458", 4, true, "Kyloarph FW-V e2-458", (decimal?)-6796.84375, (decimal?)-326.53125, (decimal?)21318.375, (int)10 )); + AllOfThem.Add(new Nebula( 23040, Nebula.NebulaType.Planetary, "Kyloarph HW-W e1-1736", 4, true, "Kyloarph HW-W e1-1736", (decimal?)-7219.09375, (decimal?)-922, (decimal?)21059.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23041, Nebula.NebulaType.Planetary, "Kyloarph LN-T e3-9653", 4, true, "Kyloarph LN-T e3-9653", (decimal?)-7554.84375, (decimal?)-732.8125, (decimal?)21389.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23042, Nebula.NebulaType.Planetary, "Kyloarph NC-V e2-1719", 4, true, "Kyloarph NC-V e2-1719", (decimal?)-6840.0625, (decimal?)-975.15625, (decimal?)21310.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23043, Nebula.NebulaType.Planetary, "Kyloarph XU-O e6-2323", 4, true, "Kyloarph XU-O e6-2323", (decimal?)-6575.375, (decimal?)-227.28125, (decimal?)21962.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23044, Nebula.NebulaType.Planetary, "Kyloarph YU-X e1-4566", 4, true, "Kyloarph YU-X e1-4566", (decimal?)-6991.90625, (decimal?)-87.9375, (decimal?)21061.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23045, Nebula.NebulaType.Planetary, "Kyloarph ZU-Y e7836", 4, true, "Kyloarph ZU-Y e7836", (decimal?)-7532.25, (decimal?)-743.59375, (decimal?)20964.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23134, Nebula.NebulaType.Planetary, "Leamiae BQ-Y e2380", 4, true, "Leamiae BQ-Y e2380", (decimal?)-3626.09375, (decimal?)-982.40625, (decimal?)19612.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23164, Nebula.NebulaType.Planetary, "Leamue CG-X e1-6970", 4, true, "Leamue CG-X e1-6970", (decimal?)-7379.34375, (decimal?)-638.59375, (decimal?)19796.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23165, Nebula.NebulaType.Planetary, "Leamue KX-T e3-1387", 4, true, "Leamue KX-T e3-1387", (decimal?)-6997.375, (decimal?)-356.8125, (decimal?)20167.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23166, Nebula.NebulaType.Planetary, "Leamue OI-B e3803", 4, true, "Leamue OI-B e3803", (decimal?)-7300.9375, (decimal?)-98.15625, (decimal?)19536.875, (int)10 )); + AllOfThem.Add(new Nebula( 23167, Nebula.NebulaType.Planetary, "Leamue OY-R e4-6061", 4, true, "Leamue OY-R e4-6061", (decimal?)-7364.46875, (decimal?)-621.03125, (decimal?)20277.375, (int)10 )); + AllOfThem.Add(new Nebula( 23168, Nebula.NebulaType.Planetary, "Leamue SE-Q e5-9083", 4, true, "Leamue SE-Q e5-9083", (decimal?)-7372.71875, (decimal?)-544.25, (decimal?)20513.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23169, Nebula.NebulaType.Planetary, "Leamue XO-A e41", 4, true, "Leamue XO-A e41", (decimal?)-7235.71875, (decimal?)-706.125, (decimal?)19502.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23170, Nebula.NebulaType.Planetary, "Leamue XU-P e5-998", 4, true, "Leamue XU-P e5-998", (decimal?)-7171.78125, (decimal?)-936.5625, (decimal?)20390.375, (int)10 )); + AllOfThem.Add(new Nebula( 23171, Nebula.NebulaType.Planetary, "Leamue YU-P e5-6554", 4, true, "Leamue YU-P e5-6554", (decimal?)-7062.25, (decimal?)-951.5625, (decimal?)20534.125, (int)10 )); + AllOfThem.Add(new Nebula( 23216, Nebula.NebulaType.Planetary, "Lyaisio ER-N e6-6459", 4, true, "Lyaisio ER-N e6-6459", (decimal?)-6008.84375, (decimal?)69.90625, (decimal?)32076.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23217, Nebula.NebulaType.Planetary, "Lyaisio IM-V e2-7042", 4, true, "Lyaisio IM-V e2-7042", (decimal?)-5740.3125, (decimal?)752.875, (decimal?)31500.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23218, Nebula.NebulaType.Planetary, "Lyaisio LM-W e1-865", 4, true, "Lyaisio LM-W e1-865", (decimal?)-5976.8125, (decimal?)54, (decimal?)31376.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23219, Nebula.NebulaType.Planetary, "Lyaisio MX-U e2-531", 4, true, "Lyaisio MX-U e2-531", (decimal?)-5996.84375, (decimal?)229.25, (decimal?)31551.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23220, Nebula.NebulaType.Planetary, "Lyaisio NH-V e2-4353", 4, true, "Lyaisio NH-V e2-4353", (decimal?)-5333.625, (decimal?)459.5, (decimal?)31511.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23221, Nebula.NebulaType.Planetary, "Lyaisio NR-W e1-4445", 4, true, "Lyaisio NR-W e1-4445", (decimal?)-5315.75, (decimal?)236.15625, (decimal?)31266.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23222, Nebula.NebulaType.Planetary, "Lyaisio NX-T e3-5562", 4, true, "Lyaisio NX-T e3-5562", (decimal?)-5198.15625, (decimal?)876.59375, (decimal?)31594.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23223, Nebula.NebulaType.Planetary, "Lyaisio UO-R e4-7450", 4, true, "Lyaisio UO-R e4-7450", (decimal?)-5741.25, (decimal?)425.625, (decimal?)31811.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23224, Nebula.NebulaType.Planetary, "Lyaisio XT-A e4526", 4, true, "Lyaisio XT-A e4526", (decimal?)-5505.09375, (decimal?)640.875, (decimal?)31002.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23225, Nebula.NebulaType.Planetary, "Lyaisio YT-A e6520", 4, true, "Lyaisio YT-A e6520", (decimal?)-5485.34375, (decimal?)642.96875, (decimal?)30936.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23226, Nebula.NebulaType.Planetary, "Lyaisio ZZ-P e5-7991", 4, true, "Lyaisio ZZ-P e5-7991", (decimal?)-5317.5, (decimal?)612.15625, (decimal?)32035.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23232, Nebula.NebulaType.Planetary, "Lyaisoi KM-W e1-5606", 4, true, "Lyaisoi KM-W e1-5606", (decimal?)-3440.8125, (decimal?)107.84375, (decimal?)31380.5, (int)10 )); + AllOfThem.Add(new Nebula( 23234, Nebula.NebulaType.Planetary, "Lyaisoi OS-U e2-2924", 4, true, "Lyaisoi OS-U e2-2924", (decimal?)-3569.09375, (decimal?)5.84375, (decimal?)31450.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23296, Nebula.NebulaType.Planetary, "Mylaifa KN-T e3-7366", 4, true, "Mylaifa KN-T e3-7366", (decimal?)-3798.03125, (decimal?)-689.3125, (decimal?)18888.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23299, Nebula.NebulaType.Planetary, "Mylaifa LN-T e3-9611", 4, true, "Mylaifa LN-T e3-9611", (decimal?)-3723.25, (decimal?)-750.46875, (decimal?)18912.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23381, Nebula.NebulaType.Planetary, "Myumbai MI-B e1862", 4, true, "Myumbai MI-B e1862", (decimal?)-6397.15625, (decimal?)-1464.65625, (decimal?)22039.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23382, Nebula.NebulaType.Planetary, "Myumbai NI-S e4-1977", 4, true, "Myumbai NI-S e4-1977", (decimal?)-5582.875, (decimal?)-1486.4375, (decimal?)22793.875, (int)10 )); + AllOfThem.Add(new Nebula( 23383, Nebula.NebulaType.Planetary, "Myumbai TZ-O e6-2375", 4, true, "Myumbai TZ-O e6-2375", (decimal?)-5637, (decimal?)-1433.78125, (decimal?)23096.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23385, Nebula.NebulaType.Planetary, "Myumbe CH-U e3-2609", 4, true, "Myumbe CH-U e3-2609", (decimal?)-5101.8125, (decimal?)-1310.53125, (decimal?)22757.75, (int)10 )); + AllOfThem.Add(new Nebula( 23386, Nebula.NebulaType.Planetary, "Myumbe DL-X e1-2363", 4, true, "Myumbe DL-X e1-2363", (decimal?)-4280.15625, (decimal?)-1726.09375, (decimal?)22441.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23387, Nebula.NebulaType.Planetary, "Myumbe IC-V e2-338", 4, true, "Myumbe IC-V e2-338", (decimal?)-5059.78125, (decimal?)-2121.53125, (decimal?)22529.25, (int)10 )); + AllOfThem.Add(new Nebula( 23388, Nebula.NebulaType.Planetary, "Myumbe PI-S e4-176", 4, true, "Myumbe PI-S e4-176", (decimal?)-3948.34375, (decimal?)-1520.5, (decimal?)22801.625, (int)10 )); + AllOfThem.Add(new Nebula( 23451, Nebula.NebulaType.Planetary, "Oephairb FG-X e1-3254", 4, true, "Oephairb FG-X e1-3254", (decimal?)-5579.46875, (decimal?)721.53125, (decimal?)17186.375, (int)10 )); + AllOfThem.Add(new Nebula( 23452, Nebula.NebulaType.Planetary, "Oephairb JB-X e1-4013", 4, true, "Oephairb JB-X e1-4013", (decimal?)-5255.125, (decimal?)479.4375, (decimal?)17179.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23453, Nebula.NebulaType.Planetary, "Oephairb JC-V e2-8077", 4, true, "Oephairb JC-V e2-8077", (decimal?)-6178.9375, (decimal?)384.90625, (decimal?)17400.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23454, Nebula.NebulaType.Planetary, "Oephairb JM-V e2-811", 4, true, "Oephairb JM-V e2-811", (decimal?)-5571.65625, (decimal?)653.1875, (decimal?)17454.375, (int)10 )); + AllOfThem.Add(new Nebula( 23455, Nebula.NebulaType.Planetary, "Oephairb LX-T e3-1825", 4, true, "Oephairb LX-T e3-1825", (decimal?)-5596.4375, (decimal?)850.71875, (decimal?)17600.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23456, Nebula.NebulaType.Planetary, "Oephairb MI-T e3-8329", 4, true, "Oephairb MI-T e3-8329", (decimal?)-6350.15625, (decimal?)419.9375, (decimal?)17546.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23457, Nebula.NebulaType.Planetary, "Oephairb NI-S e4-4466", 4, true, "Oephairb NI-S e4-4466", (decimal?)-5548.625, (decimal?)1080.25, (decimal?)17805.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23458, Nebula.NebulaType.Planetary, "Oephairb PI-T e3-3432", 4, true, "Oephairb PI-T e3-3432", (decimal?)-5893.90625, (decimal?)433.5, (decimal?)17641.625, (int)10 )); + AllOfThem.Add(new Nebula( 23459, Nebula.NebulaType.Planetary, "Oephairb PT-R e4-1513", 4, true, "Oephairb PT-R e4-1513", (decimal?)-6160.75, (decimal?)568.375, (decimal?)17655.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23460, Nebula.NebulaType.Planetary, "Oephairb QE-Q e5-6850", 4, true, "Oephairb QE-Q e5-6850", (decimal?)-6395.28125, (decimal?)740.53125, (decimal?)17963.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23461, Nebula.NebulaType.Planetary, "Oephairb RY-R e4-7531", 4, true, "Oephairb RY-R e4-7531", (decimal?)-5631.8125, (decimal?)748.3125, (decimal?)17714, (int)10 )); + AllOfThem.Add(new Nebula( 23462, Nebula.NebulaType.Planetary, "Oephairb RZ-O e6-927", 4, true, "Oephairb RZ-O e6-927", (decimal?)-5882.96875, (decimal?)1136.375, (decimal?)18131.375, (int)10 )); + AllOfThem.Add(new Nebula( 23463, Nebula.NebulaType.Planetary, "Oephairb SO-Q e5-2422", 4, true, "Oephairb SO-Q e5-2422", (decimal?)-5401.65625, (decimal?)1030.71875, (decimal?)17850.75, (int)10 )); + AllOfThem.Add(new Nebula( 23464, Nebula.NebulaType.Planetary, "Oephairb SY-R e4-1517", 4, true, "Oephairb SY-R e4-1517", (decimal?)-5411.375, (decimal?)688.03125, (decimal?)17700.875, (int)10 )); + AllOfThem.Add(new Nebula( 23465, Nebula.NebulaType.Planetary, "Oephairb UZ-P e5-8956", 4, true, "Oephairb UZ-P e5-8956", (decimal?)-6098.84375, (decimal?)517.0625, (decimal?)17945.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23476, Nebula.NebulaType.Planetary, "Ogaicy AQ-X e1-15", 4, true, "Ogaicy AQ-X e1-15", (decimal?)-8300.1875, (decimal?)997.8125, (decimal?)19839.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23477, Nebula.NebulaType.Planetary, "Ogaicy AW-N e6-4805", 4, true, "Ogaicy AW-N e6-4805", (decimal?)-8944.1875, (decimal?)209.96875, (decimal?)20650.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23478, Nebula.NebulaType.Planetary, "Ogaicy CA-A e6938", 4, true, "Ogaicy CA-A e6938", (decimal?)-8609.1875, (decimal?)47.53125, (decimal?)19556.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23479, Nebula.NebulaType.Planetary, "Ogaicy EA-A e4057", 4, true, "Ogaicy EA-A e4057", (decimal?)-8325.1875, (decimal?)-12.3125, (decimal?)19465.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23480, Nebula.NebulaType.Planetary, "Ogaicy EQ-Y e2238", 4, true, "Ogaicy EQ-Y e2238", (decimal?)-8275.28125, (decimal?)325.8125, (decimal?)19689.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23481, Nebula.NebulaType.Planetary, "Ogaicy FQ-Y e3466", 4, true, "Ogaicy FQ-Y e3466", (decimal?)-8105.84375, (decimal?)382.3125, (decimal?)19681.75, (int)10 )); + AllOfThem.Add(new Nebula( 23482, Nebula.NebulaType.Planetary, "Ogaicy GA-A e4637", 4, true, "Ogaicy GA-A e4637", (decimal?)-7924.8125, (decimal?)92.3125, (decimal?)19453.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23483, Nebula.NebulaType.Planetary, "Ogaicy HR-N e6-5469", 4, true, "Ogaicy HR-N e6-5469", (decimal?)-8122.53125, (decimal?)42.5625, (decimal?)20606.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23484, Nebula.NebulaType.Planetary, "Ogaicy IR-V e2-6250", 4, true, "Ogaicy IR-V e2-6250", (decimal?)-7953.53125, (decimal?)847.75, (decimal?)20017.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23485, Nebula.NebulaType.Planetary, "Ogaicy LC-U e3-1779", 4, true, "Ogaicy LC-U e3-1779", (decimal?)-7896.4375, (decimal?)1084.75, (decimal?)20177.125, (int)10 )); + AllOfThem.Add(new Nebula( 23486, Nebula.NebulaType.Planetary, "Ogaicy NN-T e3-3762", 4, true, "Ogaicy NN-T e3-3762", (decimal?)-8398.0625, (decimal?)458.875, (decimal?)20181.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23487, Nebula.NebulaType.Planetary, "Ogaicy OS-T e3-6218", 4, true, "Ogaicy OS-T e3-6218", (decimal?)-8028.59375, (decimal?)729.34375, (decimal?)20145.5, (int)10 )); + AllOfThem.Add(new Nebula( 23489, Nebula.NebulaType.Planetary, "Ogaicy RO-Q e5-2645", 4, true, "Ogaicy RO-Q e5-2645", (decimal?)-8078.28125, (decimal?)978.5, (decimal?)20401.875, (int)10 )); + AllOfThem.Add(new Nebula( 23490, Nebula.NebulaType.Planetary, "Ogaicy ST-R e4-7143", 4, true, "Ogaicy ST-R e4-7143", (decimal?)-8326.21875, (decimal?)464.03125, (decimal?)20324.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23491, Nebula.NebulaType.Planetary, "Ogaicy TT-R e4-1619", 4, true, "Ogaicy TT-R e4-1619", (decimal?)-8107.90625, (decimal?)611.875, (decimal?)20235.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23492, Nebula.NebulaType.Planetary, "Ogaicy UO-R e4-6343", 4, true, "Ogaicy UO-R e4-6343", (decimal?)-8304.625, (decimal?)298.96875, (decimal?)20336.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23493, Nebula.NebulaType.Planetary, "Ogaicy VK-O e6-1642", 4, true, "Ogaicy VK-O e6-1642", (decimal?)-8845.875, (decimal?)688.4375, (decimal?)20630.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23494, Nebula.NebulaType.Planetary, "Ogaicy XT-A e486", 4, true, "Ogaicy XT-A e486", (decimal?)-8101.375, (decimal?)702.53125, (decimal?)19504.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23495, Nebula.NebulaType.Planetary, "Ogaicy XT-A e5789", 4, true, "Ogaicy XT-A e5789", (decimal?)-8093.5625, (decimal?)733.28125, (decimal?)19564.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23496, Nebula.NebulaType.Planetary, "Ogaicy ZT-A e6242", 4, true, "Ogaicy ZT-A e6242", (decimal?)-7825.8125, (decimal?)700.1875, (decimal?)19439.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23518, Nebula.NebulaType.Planetary, "Ogairt AA-Z e1659", 4, true, "Ogairt AA-Z e1659", (decimal?)-5722.28125, (decimal?)734.34375, (decimal?)19676.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23519, Nebula.NebulaType.Planetary, "Ogairt BP-A e4980", 4, true, "Ogairt BP-A e4980", (decimal?)-5203.96875, (decimal?)462.65625, (decimal?)19435.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23520, Nebula.NebulaType.Planetary, "Ogairt BP-A e6035", 4, true, "Ogairt BP-A e6035", (decimal?)-5262.34375, (decimal?)577.40625, (decimal?)19529.25, (int)10 )); + AllOfThem.Add(new Nebula( 23521, Nebula.NebulaType.Planetary, "Ogairt EW-N e6-5162", 4, true, "Ogairt EW-N e6-5162", (decimal?)-5798.21875, (decimal?)292.1875, (decimal?)20570.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23522, Nebula.NebulaType.Planetary, "Ogairt FA-A e4322", 4, true, "Ogairt FA-A e4322", (decimal?)-5594.21875, (decimal?)88.25, (decimal?)19483.25, (int)10 )); + AllOfThem.Add(new Nebula( 23523, Nebula.NebulaType.Planetary, "Ogairt GC-U e3-4927", 4, true, "Ogairt GC-U e3-4927", (decimal?)-6100.375, (decimal?)964.78125, (decimal?)20190.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23524, Nebula.NebulaType.Planetary, "Ogairt GN-S e4-4114", 4, true, "Ogairt GN-S e4-4114", (decimal?)-6448.9375, (decimal?)1182.90625, (decimal?)20253.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23525, Nebula.NebulaType.Planetary, "Ogairt HW-V e2-607", 4, true, "Ogairt HW-V e2-607", (decimal?)-5230.96875, (decimal?)999, (decimal?)19938.625, (int)10 )); + AllOfThem.Add(new Nebula( 23526, Nebula.NebulaType.Planetary, "Ogairt JR-W e1-3820", 4, true, "Ogairt JR-W e1-3820", (decimal?)-5845.6875, (decimal?)263.09375, (decimal?)19746.375, (int)10 )); + AllOfThem.Add(new Nebula( 23527, Nebula.NebulaType.Planetary, "Ogairt NO-Q e5-173", 4, true, "Ogairt NO-Q e5-173", (decimal?)-6165.15625, (decimal?)1085.8125, (decimal?)20395.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23528, Nebula.NebulaType.Planetary, "Ogairt PI-B e3849", 4, true, "Ogairt PI-B e3849", (decimal?)-5918.4375, (decimal?)1147.78125, (decimal?)19508.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23529, Nebula.NebulaType.Planetary, "Ogairt SS-U e2-9892", 4, true, "Ogairt SS-U e2-9892", (decimal?)-5497.0625, (decimal?)25.4375, (decimal?)19947.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23530, Nebula.NebulaType.Planetary, "Ogairt TO-Q e5-3807", 4, true, "Ogairt TO-Q e5-3807", (decimal?)-5258.09375, (decimal?)1069.96875, (decimal?)20421.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23531, Nebula.NebulaType.Planetary, "Ogairt VY-A e2572", 4, true, "Ogairt VY-A e2572", (decimal?)-5545.875, (decimal?)907.25, (decimal?)19473.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23532, Nebula.NebulaType.Planetary, "Ogairt VY-A e8078", 4, true, "Ogairt VY-A e8078", (decimal?)-5580.5, (decimal?)777.6875, (decimal?)19435.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23577, Nebula.NebulaType.Planetary, "Ooscs Auf TO-Q e5-70", 4, true, "Ooscs Auf TO-Q e5-70", (decimal?)-9073.125, (decimal?)2370.9375, (decimal?)20469.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23583, Nebula.NebulaType.Planetary, "Ooscs Chreou SO-Q e5-2044", 4, true, "Ooscs Chreou SO-Q e5-2044", (decimal?)-9285.09375, (decimal?)1083.15625, (decimal?)28091.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23584, Nebula.NebulaType.Planetary, "Ooscs Chreou VE-Q e5-173", 4, true, "Ooscs Chreou VE-Q e5-173", (decimal?)-9352.40625, (decimal?)678.3125, (decimal?)28069.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23600, Nebula.NebulaType.Planetary, "Pha Aob AF-Z e6564", 4, true, "Pha Aob AF-Z e6564", (decimal?)-9246.3125, (decimal?)856.53125, (decimal?)23498.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23601, Nebula.NebulaType.Planetary, "Pha Aob CB-O e6-7650", 4, true, "Pha Aob CB-O e6-7650", (decimal?)-9519.9375, (decimal?)389.1875, (decimal?)24497.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23602, Nebula.NebulaType.Planetary, "Pha Aob DW-N e6-8149", 4, true, "Pha Aob DW-N e6-8149", (decimal?)-9785.375, (decimal?)268.0625, (decimal?)24522.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23603, Nebula.NebulaType.Planetary, "Pha Aob FB-O e6-1741", 4, true, "Pha Aob FB-O e6-1741", (decimal?)-9129.75, (decimal?)441.9375, (decimal?)24400.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23604, Nebula.NebulaType.Planetary, "Pha Aob IM-V e2-6634", 4, true, "Pha Aob IM-V e2-6634", (decimal?)-9615, (decimal?)732.8125, (decimal?)23756.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23605, Nebula.NebulaType.Planetary, "Pha Aob MM-W e1-3878", 4, true, "Pha Aob MM-W e1-3878", (decimal?)-9554.4375, (decimal?)55.46875, (decimal?)23710.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23606, Nebula.NebulaType.Planetary, "Pha Aob UE-R e4-936", 4, true, "Pha Aob UE-R e4-936", (decimal?)-10303.65625, (decimal?)79.40625, (decimal?)24110.375, (int)10 )); + AllOfThem.Add(new Nebula( 23607, Nebula.NebulaType.Planetary, "Pha Aob VK-O e6-1292", 4, true, "Pha Aob VK-O e6-1292", (decimal?)-10015.25, (decimal?)658.6875, (decimal?)24497.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23608, Nebula.NebulaType.Planetary, "Pha Aob WY-A e456", 4, true, "Pha Aob WY-A e456", (decimal?)-9232.03125, (decimal?)859.5, (decimal?)23276.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23609, Nebula.NebulaType.Planetary, "Pha Aob XE-Q e5-6958", 4, true, "Pha Aob XE-Q e5-6958", (decimal?)-9121.78125, (decimal?)747.15625, (decimal?)24258.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23610, Nebula.NebulaType.Planetary, "Pha Aob YU-P e5-7181", 4, true, "Pha Aob YU-P e5-7181", (decimal?)-9513.78125, (decimal?)396.4375, (decimal?)24302.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23611, Nebula.NebulaType.Planetary, "Pha Aob ZZ-P e5-1473", 4, true, "Pha Aob ZZ-P e5-1473", (decimal?)-9117.75, (decimal?)476.40625, (decimal?)24328.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23625, Nebula.NebulaType.Planetary, "Phaa Aub AQ-X e1-1317", 4, true, "Phaa Aub AQ-X e1-1317", (decimal?)-4388.65625, (decimal?)1073.125, (decimal?)26289.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23626, Nebula.NebulaType.Planetary, "Phaa Aub AQ-Y e3079", 4, true, "Phaa Aub AQ-Y e3079", (decimal?)-5104.0625, (decimal?)313.09375, (decimal?)26056.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23627, Nebula.NebulaType.Planetary, "Phaa Aub CB-W e2-6217", 4, true, "Phaa Aub CB-W e2-6217", (decimal?)-4473.625, (decimal?)1247.625, (decimal?)26351.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23628, Nebula.NebulaType.Planetary, "Phaa Aub II-S e4-4138", 4, true, "Phaa Aub II-S e4-4138", (decimal?)-5115.6875, (decimal?)978.4375, (decimal?)26655.25, (int)10 )); + AllOfThem.Add(new Nebula( 23629, Nebula.NebulaType.Planetary, "Phaa Aub NI-S e4-5665", 4, true, "Phaa Aub NI-S e4-5665", (decimal?)-4295.78125, (decimal?)1031.59375, (decimal?)26736.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23630, Nebula.NebulaType.Planetary, "Phaa Aub RO-Q e5-50", 4, true, "Phaa Aub RO-Q e5-50", (decimal?)-4252.25, (decimal?)1084.625, (decimal?)26877.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23659, Nebula.NebulaType.Planetary, "Phaa Free BV-Y e3659", 4, true, "Phaa Free BV-Y e3659", (decimal?)-7262.5625, (decimal?)599.59375, (decimal?)26118, (int)10 )); + AllOfThem.Add(new Nebula( 23660, Nebula.NebulaType.Planetary, "Phaa Free BW-V e2-1965", 4, true, "Phaa Free BW-V e2-1965", (decimal?)-7513.09375, (decimal?)1023.96875, (decimal?)26391.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23661, Nebula.NebulaType.Planetary, "Phaa Free DR-V e2-1642", 4, true, "Phaa Free DR-V e2-1642", (decimal?)-7540.5625, (decimal?)925.84375, (decimal?)26363.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23662, Nebula.NebulaType.Planetary, "Phaa Free HG-X e1-6612", 4, true, "Phaa Free HG-X e1-6612", (decimal?)-6598.03125, (decimal?)621.84375, (decimal?)26197.25, (int)10 )); + AllOfThem.Add(new Nebula( 23663, Nebula.NebulaType.Planetary, "Phaa Free IM-W e1-800", 4, true, "Phaa Free IM-W e1-800", (decimal?)-7597.25, (decimal?)-14.15625, (decimal?)26227.625, (int)10 )); + AllOfThem.Add(new Nebula( 23664, Nebula.NebulaType.Planetary, "Phaa Free JB-X e1-10286", 4, true, "Phaa Free JB-X e1-10286", (decimal?)-6488.09375, (decimal?)568.5, (decimal?)26137.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23665, Nebula.NebulaType.Planetary, "Phaa Free JC-V e2-792", 4, true, "Phaa Free JC-V e2-792", (decimal?)-7506.1875, (decimal?)450.84375, (decimal?)26377.5, (int)10 )); + AllOfThem.Add(new Nebula( 23666, Nebula.NebulaType.Planetary, "Phaa Free LH-V e2-7736", 4, true, "Phaa Free LH-V e2-7736", (decimal?)-6846.8125, (decimal?)457.59375, (decimal?)26428.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23667, Nebula.NebulaType.Planetary, "Phaa Free VZ-O e6-2904", 4, true, "Phaa Free VZ-O e6-2904", (decimal?)-6624.1875, (decimal?)1166.125, (decimal?)27048.125, (int)10 )); + AllOfThem.Add(new Nebula( 23668, Nebula.NebulaType.Planetary, "Phaa Free WJ-Z e5382", 4, true, "Phaa Free WJ-Z e5382", (decimal?)-7003.5625, (decimal?)1084.34375, (decimal?)26052.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23669, Nebula.NebulaType.Planetary, "Phaa Free XJ-R e4-333", 4, true, "Phaa Free XJ-R e4-333", (decimal?)-6788.21875, (decimal?)196.03125, (decimal?)26709.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23679, Nebula.NebulaType.Planetary, "Phimbaae AL-X e1-502", 4, true, "Phimbaae AL-X e1-502", (decimal?)-7415.71875, (decimal?)856.75, (decimal?)27457.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23680, Nebula.NebulaType.Planetary, "Phimbaae CG-X e1-7388", 4, true, "Phimbaae CG-X e1-7388", (decimal?)-7318.625, (decimal?)666.5625, (decimal?)27554.5, (int)10 )); + AllOfThem.Add(new Nebula( 23681, Nebula.NebulaType.Planetary, "Phimbaae CQ-X e1-6477", 4, true, "Phimbaae CQ-X e1-6477", (decimal?)-6670.3125, (decimal?)1075.4375, (decimal?)27464.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23682, Nebula.NebulaType.Planetary, "Phimbaae FR-V e2-7823", 4, true, "Phimbaae FR-V e2-7823", (decimal?)-7213.25, (decimal?)842.1875, (decimal?)27621.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23683, Nebula.NebulaType.Planetary, "Phimbaae HR-V e2-3940", 4, true, "Phimbaae HR-V e2-3940", (decimal?)-6866.375, (decimal?)825.5, (decimal?)27715.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23684, Nebula.NebulaType.Planetary, "Phimbaae HR-V e2-6108", 4, true, "Phimbaae HR-V e2-6108", (decimal?)-6811.15625, (decimal?)807.53125, (decimal?)27591.375, (int)10 )); + AllOfThem.Add(new Nebula( 23685, Nebula.NebulaType.Planetary, "Phimbaae HW-V e2-188", 4, true, "Phimbaae HW-V e2-188", (decimal?)-6618.25, (decimal?)1012.8125, (decimal?)27647.125, (int)10 )); + AllOfThem.Add(new Nebula( 23686, Nebula.NebulaType.Planetary, "Phimbaae JM-V e2-6932", 4, true, "Phimbaae JM-V e2-6932", (decimal?)-6873.78125, (decimal?)673.96875, (decimal?)27723.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23687, Nebula.NebulaType.Planetary, "Phimbaae ND-S e4-7270", 4, true, "Phimbaae ND-S e4-7270", (decimal?)-7238.28125, (decimal?)898.03125, (decimal?)27926.125, (int)10 )); + AllOfThem.Add(new Nebula( 23688, Nebula.NebulaType.Planetary, "Phimbaae PI-T e3-543", 4, true, "Phimbaae PI-T e3-543", (decimal?)-7128.09375, (decimal?)328.34375, (decimal?)27786.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23689, Nebula.NebulaType.Planetary, "Phimbaae QJ-Q e5-2157", 4, true, "Phimbaae QJ-Q e5-2157", (decimal?)-7287.53125, (decimal?)894.5625, (decimal?)28104.875, (int)10 )); + AllOfThem.Add(new Nebula( 23690, Nebula.NebulaType.Planetary, "Phimbaae QY-A e8390", 4, true, "Phimbaae QY-A e8390", (decimal?)-7659.65625, (decimal?)802.625, (decimal?)27202.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23691, Nebula.NebulaType.Planetary, "Phimbaae TD-B e6397", 4, true, "Phimbaae TD-B e6397", (decimal?)-6785.34375, (decimal?)1068.53125, (decimal?)27248.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23692, Nebula.NebulaType.Planetary, "Phimbaae TT-R e4-4019", 4, true, "Phimbaae TT-R e4-4019", (decimal?)-6891.90625, (decimal?)584.90625, (decimal?)27992.375, (int)10 )); + AllOfThem.Add(new Nebula( 23693, Nebula.NebulaType.Planetary, "Phimbaae UO-A e1654", 4, true, "Phimbaae UO-A e1654", (decimal?)-7664.09375, (decimal?)504.125, (decimal?)27233.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23694, Nebula.NebulaType.Planetary, "Phimbaae VU-P e5-7791", 4, true, "Phimbaae VU-P e5-7791", (decimal?)-7485.3125, (decimal?)337.40625, (decimal?)28177.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23695, Nebula.NebulaType.Planetary, "Phimbaae WP-O e6-2666", 4, true, "Phimbaae WP-O e6-2666", (decimal?)-6952.03125, (decimal?)878.5625, (decimal?)28356.5, (int)10 )); + AllOfThem.Add(new Nebula( 23696, Nebula.NebulaType.Planetary, "Phimbaae XE-Q e5-942", 4, true, "Phimbaae XE-Q e5-942", (decimal?)-6624.9375, (decimal?)770.78125, (decimal?)28112.5, (int)10 )); + AllOfThem.Add(new Nebula( 23697, Nebula.NebulaType.Planetary, "Phimbaae XU-O e6-14", 4, true, "Phimbaae XU-O e6-14", (decimal?)-6556.40625, (decimal?)999.6875, (decimal?)28258.875, (int)10 )); + AllOfThem.Add(new Nebula( 23698, Nebula.NebulaType.Planetary, "Phimbeau BL-O e6-5428", 4, true, "Phimbeau BL-O e6-5428", (decimal?)-5233.96875, (decimal?)766.78125, (decimal?)28235.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23699, Nebula.NebulaType.Planetary, "Phimbeau FB-O e6-880", 4, true, "Phimbeau FB-O e6-880", (decimal?)-5204.8125, (decimal?)452.9375, (decimal?)28280.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23700, Nebula.NebulaType.Planetary, "Phimbeau FC-U e3-1183", 4, true, "Phimbeau FC-U e3-1183", (decimal?)-6202.59375, (decimal?)1055, (decimal?)27736.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23701, Nebula.NebulaType.Planetary, "Phimbeau IC-V e2-1734", 4, true, "Phimbeau IC-V e2-1734", (decimal?)-6386.15625, (decimal?)333.40625, (decimal?)27672.125, (int)10 )); + AllOfThem.Add(new Nebula( 23702, Nebula.NebulaType.Planetary, "Phimbeau MI-S e4-741", 4, true, "Phimbeau MI-S e4-741", (decimal?)-5805.125, (decimal?)1021.34375, (decimal?)27964.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23703, Nebula.NebulaType.Planetary, "Phimbeau MS-U e2-6473", 4, true, "Phimbeau MS-U e2-6473", (decimal?)-6340.78125, (decimal?)-14.78125, (decimal?)27656.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23704, Nebula.NebulaType.Planetary, "Phimbeau OS-T e3-4368", 4, true, "Phimbeau OS-T e3-4368", (decimal?)-5401.625, (decimal?)702.5625, (decimal?)27788.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23705, Nebula.NebulaType.Planetary, "Phimbeau TY-S e3-5310", 4, true, "Phimbeau TY-S e3-5310", (decimal?)-5964.21875, (decimal?)15.03125, (decimal?)27877.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23706, Nebula.NebulaType.Planetary, "Phimbeau UE-Q e5-3110", 4, true, "Phimbeau UE-Q e5-3110", (decimal?)-5675.1875, (decimal?)716.4375, (decimal?)28166.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23707, Nebula.NebulaType.Planetary, "Phimbeau ZA-O e6-324", 4, true, "Phimbeau ZA-O e6-324", (decimal?)-6242.6875, (decimal?)366.4375, (decimal?)28267.5, (int)10 )); + AllOfThem.Add(new Nebula( 23708, Nebula.NebulaType.Planetary, "Phimbee BW-N e6-2951", 4, true, "Phimbee BW-N e6-2951", (decimal?)-4931.6875, (decimal?)189.8125, (decimal?)28351.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23709, Nebula.NebulaType.Planetary, "Phimbee DW-V e2-6918", 4, true, "Phimbee DW-V e2-6918", (decimal?)-4549.75, (decimal?)936.46875, (decimal?)27595.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23710, Nebula.NebulaType.Planetary, "Phimbee HR-N e6-4454", 4, true, "Phimbee HR-N e6-4454", (decimal?)-4332.4375, (decimal?)35.8125, (decimal?)28373.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23711, Nebula.NebulaType.Planetary, "Phimbee JC-U e3-3448", 4, true, "Phimbee JC-U e3-3448", (decimal?)-4349.5, (decimal?)1047.65625, (decimal?)27823.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23712, Nebula.NebulaType.Planetary, "Phimbee LS-T e3-1976", 4, true, "Phimbee LS-T e3-1976", (decimal?)-4606.875, (decimal?)705.28125, (decimal?)27790.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23713, Nebula.NebulaType.Planetary, "Phimbee NO-Q e5-1093", 4, true, "Phimbee NO-Q e5-1093", (decimal?)-4892.34375, (decimal?)1004.40625, (decimal?)28086.125, (int)10 )); + AllOfThem.Add(new Nebula( 23714, Nebula.NebulaType.Planetary, "Phimbee PJ-Q e5-10421", 4, true, "Phimbee PJ-Q e5-10421", (decimal?)-4895.59375, (decimal?)782.65625, (decimal?)28080.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23715, Nebula.NebulaType.Planetary, "Phimbee RX-U e2-6642", 4, true, "Phimbee RX-U e2-6642", (decimal?)-4044.125, (decimal?)141.4375, (decimal?)27623, (int)10 )); + AllOfThem.Add(new Nebula( 23716, Nebula.NebulaType.Planetary, "Phimbee TD-B e2456", 4, true, "Phimbee TD-B e2456", (decimal?)-4365.5, (decimal?)985.9375, (decimal?)27129.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23717, Nebula.NebulaType.Planetary, "Phimbee TD-B e7869", 4, true, "Phimbee TD-B e7869", (decimal?)-4362.0625, (decimal?)1011.875, (decimal?)27106.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23718, Nebula.NebulaType.Planetary, "Phimbee VE-Q e5-4290", 4, true, "Phimbee VE-Q e5-4290", (decimal?)-4300.59375, (decimal?)752.625, (decimal?)28094.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23719, Nebula.NebulaType.Planetary, "Phimbee WZ-Y e3669", 4, true, "Phimbee WZ-Y e3669", (decimal?)-5166.9375, (decimal?)639.375, (decimal?)27261.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23720, Nebula.NebulaType.Planetary, "Phimbee XZ-Y e8060", 4, true, "Phimbee XZ-Y e8060", (decimal?)-4938.6875, (decimal?)680.5, (decimal?)27361.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23722, Nebula.NebulaType.Planetary, "Phimboa CK-A e1600", 4, true, "Phimboa CK-A e1600", (decimal?)-7978.125, (decimal?)428.59375, (decimal?)27205.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23723, Nebula.NebulaType.Planetary, "Phimboa DQ-X e1-6217", 4, true, "Phimboa DQ-X e1-6217", (decimal?)-7891.6875, (decimal?)1008.0625, (decimal?)27433.125, (int)10 )); + AllOfThem.Add(new Nebula( 23724, Nebula.NebulaType.Planetary, "Phimboa EL-Y e1016", 4, true, "Phimboa EL-Y e1016", (decimal?)-8563.28125, (decimal?)199.25, (decimal?)27323.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23725, Nebula.NebulaType.Planetary, "Phimboa FG-Y e177", 4, true, "Phimboa FG-Y e177", (decimal?)-8723.3125, (decimal?)-0.90625, (decimal?)27347.125, (int)10 )); + AllOfThem.Add(new Nebula( 23726, Nebula.NebulaType.Planetary, "Phimboa FL-Y e6889", 4, true, "Phimboa FL-Y e6889", (decimal?)-8484.125, (decimal?)293.625, (decimal?)27297.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23728, Nebula.NebulaType.Planetary, "Phimboa OC-V e2-8698", 4, true, "Phimboa OC-V e2-8698", (decimal?)-7997.28125, (decimal?)388.4375, (decimal?)27624.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23729, Nebula.NebulaType.Planetary, "Phimboa QD-T e3-6473", 4, true, "Phimboa QD-T e3-6473", (decimal?)-8606, (decimal?)228.9375, (decimal?)27825.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23730, Nebula.NebulaType.Planetary, "Phimboa RD-S e4-4925", 4, true, "Phimboa RD-S e4-4925", (decimal?)-7782.6875, (decimal?)806.9375, (decimal?)27910.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23732, Nebula.NebulaType.Planetary, "Phimboa TJ-Z e147", 4, true, "Phimboa TJ-Z e147", (decimal?)-8803.75, (decimal?)1014, (decimal?)27414.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23733, Nebula.NebulaType.Planetary, "Phimboa VJ-R e4-8135", 4, true, "Phimboa VJ-R e4-8135", (decimal?)-8428.53125, (decimal?)272.59375, (decimal?)27908.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23734, Nebula.NebulaType.Planetary, "Phimboa WY-S e3-2514", 4, true, "Phimboa WY-S e3-2514", (decimal?)-7916.6875, (decimal?)100.65625, (decimal?)27753.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23735, Nebula.NebulaType.Planetary, "Phimboa ZE-A e3770", 4, true, "Phimboa ZE-A e3770", (decimal?)-8839.96875, (decimal?)240.25, (decimal?)27214.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23763, Nebula.NebulaType.Planetary, "Phipoe GR-W e1-4051", 4, true, "Phipoe GR-W e1-4051", (decimal?)-3795.0625, (decimal?)154.21875, (decimal?)27521.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23764, Nebula.NebulaType.Planetary, "Phipoe II-S e4-5719", 4, true, "Phipoe II-S e4-5719", (decimal?)-3793.96875, (decimal?)1071.5625, (decimal?)28020.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23766, Nebula.NebulaType.Planetary, "Phipoe JI-S e4-1891", 4, true, "Phipoe JI-S e4-1891", (decimal?)-3662.65625, (decimal?)993.125, (decimal?)28028.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23767, Nebula.NebulaType.Planetary, "Phipoe KD-S e4-1540", 4, true, "Phipoe KD-S e4-1540", (decimal?)-3771.78125, (decimal?)834.65625, (decimal?)27987.5, (int)10 )); + AllOfThem.Add(new Nebula( 23768, Nebula.NebulaType.Planetary, "Phipoe MO-Q e5-6777", 4, true, "Phipoe MO-Q e5-6777", (decimal?)-3815.71875, (decimal?)1061.96875, (decimal?)28074.625, (int)10 )); + AllOfThem.Add(new Nebula( 23770, Nebula.NebulaType.Planetary, "Phipoe OS-U e2-7205", 4, true, "Phipoe OS-U e2-7205", (decimal?)-3467.03125, (decimal?)105.90625, (decimal?)27725.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23771, Nebula.NebulaType.Planetary, "Phipoe OY-R e4-6253", 4, true, "Phipoe OY-R e4-6253", (decimal?)-3458.59375, (decimal?)629.78125, (decimal?)27930.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23772, Nebula.NebulaType.Planetary, "Phipoe RT-R e4-2635", 4, true, "Phipoe RT-R e4-2635", (decimal?)-3291.1875, (decimal?)505.1875, (decimal?)28005, (int)10 )); + AllOfThem.Add(new Nebula( 23773, Nebula.NebulaType.Planetary, "Phipoe TP-O e6-4545", 4, true, "Phipoe TP-O e6-4545", (decimal?)-3680.625, (decimal?)840.84375, (decimal?)28293.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23774, Nebula.NebulaType.Planetary, "Phipoe UU-O e6-9164", 4, true, "Phipoe UU-O e6-9164", (decimal?)-3108.90625, (decimal?)1051.84375, (decimal?)28368.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23775, Nebula.NebulaType.Planetary, "Phipoe VY-A e442", 4, true, "Phipoe VY-A e442", (decimal?)-2954.875, (decimal?)808.65625, (decimal?)27140.5, (int)10 )); + AllOfThem.Add(new Nebula( 23777, Nebula.NebulaType.Planetary, "Phipoe YJ-Z e9075", 4, true, "Phipoe YJ-Z e9075", (decimal?)-2933.5, (decimal?)1027.875, (decimal?)27283.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23825, Nebula.NebulaType.Planetary, "Phoi Aowsy FG-Y e855", 4, true, "Phoi Aowsy FG-Y e855", (decimal?)-6241.59375, (decimal?)35.46875, (decimal?)23469.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23826, Nebula.NebulaType.Planetary, "Phoi Aowsy RX-U e2-11500", 4, true, "Phoi Aowsy RX-U e2-11500", (decimal?)-5309.125, (decimal?)176.1875, (decimal?)23880.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23827, Nebula.NebulaType.Planetary, "Phoi Aowsy TJ-Q e5-7793", 4, true, "Phoi Aowsy TJ-Q e5-7793", (decimal?)-5571.03125, (decimal?)901.75, (decimal?)24317.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23828, Nebula.NebulaType.Planetary, "Phoi Aowsy VJ-R e4-3062", 4, true, "Phoi Aowsy VJ-R e4-3062", (decimal?)-5951.40625, (decimal?)149.0625, (decimal?)24186.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23829, Nebula.NebulaType.Planetary, "Phoi Aowsy YK-X e1-6286", 4, true, "Phoi Aowsy YK-X e1-6286", (decimal?)-6342, (decimal?)913.4375, (decimal?)23622.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23830, Nebula.NebulaType.Planetary, "Phoi Aowsy YP-O e6-10048", 4, true, "Phoi Aowsy YP-O e6-10048", (decimal?)-5447, (decimal?)904.40625, (decimal?)24470.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23831, Nebula.NebulaType.Planetary, "Phoi Aub AF-Z e1505", 4, true, "Phoi Aub AF-Z e1505", (decimal?)-5367.34375, (decimal?)925.59375, (decimal?)26088.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23832, Nebula.NebulaType.Planetary, "Phoi Aub AF-Z e5682", 4, true, "Phoi Aub AF-Z e5682", (decimal?)-5435.125, (decimal?)886.84375, (decimal?)26118.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23833, Nebula.NebulaType.Planetary, "Phoi Aub EB-O e6-654", 4, true, "Phoi Aub EB-O e6-654", (decimal?)-5489.40625, (decimal?)386.21875, (decimal?)26953.875, (int)10 )); + AllOfThem.Add(new Nebula( 23834, Nebula.NebulaType.Planetary, "Phoi Aub FL-X e1-7846", 4, true, "Phoi Aub FL-X e1-7846", (decimal?)-5327.6875, (decimal?)844.75, (decimal?)26170.5, (int)10 )); + AllOfThem.Add(new Nebula( 23835, Nebula.NebulaType.Planetary, "Phoi Aub FL-X e1-8399", 4, true, "Phoi Aub FL-X e1-8399", (decimal?)-5297.125, (decimal?)929.03125, (decimal?)26151.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23836, Nebula.NebulaType.Planetary, "Phoi Aub FL-X e1-9744", 4, true, "Phoi Aub FL-X e1-9744", (decimal?)-5341.40625, (decimal?)887.96875, (decimal?)26196.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23837, Nebula.NebulaType.Planetary, "Phoi Aub GB-X e1-8330", 4, true, "Phoi Aub GB-X e1-8330", (decimal?)-5759.6875, (decimal?)590.03125, (decimal?)26258.625, (int)10 )); + AllOfThem.Add(new Nebula( 23838, Nebula.NebulaType.Planetary, "Phoi Aub GC-U e3-4087", 4, true, "Phoi Aub GC-U e3-4087", (decimal?)-6124.25, (decimal?)994.84375, (decimal?)26520.125, (int)10 )); + AllOfThem.Add(new Nebula( 23839, Nebula.NebulaType.Planetary, "Phoi Aub GG-X e1-4272", 4, true, "Phoi Aub GG-X e1-4272", (decimal?)-5480.09375, (decimal?)656.6875, (decimal?)26148.625, (int)10 )); + AllOfThem.Add(new Nebula( 23840, Nebula.NebulaType.Planetary, "Phoi Aub GH-V e2-10020", 4, true, "Phoi Aub GH-V e2-10020", (decimal?)-6422.9375, (decimal?)510.09375, (decimal?)26401.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23841, Nebula.NebulaType.Planetary, "Phoi Aub IH-V e2-3004", 4, true, "Phoi Aub IH-V e2-3004", (decimal?)-5993.0625, (decimal?)466.71875, (decimal?)26387.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23842, Nebula.NebulaType.Planetary, "Phoi Aub IM-V e2-784", 4, true, "Phoi Aub IM-V e2-784", (decimal?)-5665.84375, (decimal?)641.71875, (decimal?)26345.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23843, Nebula.NebulaType.Planetary, "Phoi Aub LG-Y e1718", 4, true, "Phoi Aub LG-Y e1718", (decimal?)-5286.75, (decimal?)39.96875, (decimal?)26009.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23844, Nebula.NebulaType.Planetary, "Phoi Aub NS-U e2-3175", 4, true, "Phoi Aub NS-U e2-3175", (decimal?)-6253.375, (decimal?)22.53125, (decimal?)26445.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23845, Nebula.NebulaType.Planetary, "Phoi Aub OD-S e4-4994", 4, true, "Phoi Aub OD-S e4-4994", (decimal?)-5818.03125, (decimal?)906.96875, (decimal?)26745.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23846, Nebula.NebulaType.Planetary, "Phoi Aub PD-S e4-8026", 4, true, "Phoi Aub PD-S e4-8026", (decimal?)-5641.875, (decimal?)785.21875, (decimal?)26744.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23847, Nebula.NebulaType.Planetary, "Phoi Aub QT-Q e5-2380", 4, true, "Phoi Aub QT-Q e5-2380", (decimal?)-5429.78125, (decimal?)1153.25, (decimal?)26874.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23848, Nebula.NebulaType.Planetary, "Phoi Aub QU-O e6-3508", 4, true, "Phoi Aub QU-O e6-3508", (decimal?)-6417.71875, (decimal?)1092.96875, (decimal?)27034.25, (int)10 )); + AllOfThem.Add(new Nebula( 23849, Nebula.NebulaType.Planetary, "Phoi Aub RS-U e2-3660", 4, true, "Phoi Aub RS-U e2-3660", (decimal?)-5556.96875, (decimal?)122.34375, (decimal?)26367.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23850, Nebula.NebulaType.Planetary, "Phoi Aub RS-U e2-5185", 4, true, "Phoi Aub RS-U e2-5185", (decimal?)-5539.75, (decimal?)122, (decimal?)26408.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23851, Nebula.NebulaType.Planetary, "Phoi Aub ST-R e4-6634", 4, true, "Phoi Aub ST-R e4-6634", (decimal?)-5788.28125, (decimal?)515.65625, (decimal?)26671.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23852, Nebula.NebulaType.Planetary, "Phoi Aub TY-R e4-7473", 4, true, "Phoi Aub TY-R e4-7473", (decimal?)-5243.03125, (decimal?)734.21875, (decimal?)26738.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23853, Nebula.NebulaType.Planetary, "Phoi Aub WE-Q e5-3733", 4, true, "Phoi Aub WE-Q e5-3733", (decimal?)-5372.84375, (decimal?)635.125, (decimal?)26836.25, (int)10 )); + AllOfThem.Add(new Nebula( 23854, Nebula.NebulaType.Planetary, "Phoi Aub WJ-Z e1267", 4, true, "Phoi Aub WJ-Z e1267", (decimal?)-5811.09375, (decimal?)1093.25, (decimal?)25988.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23855, Nebula.NebulaType.Planetary, "Phoi Aub XF-O e6-4768", 4, true, "Phoi Aub XF-O e6-4768", (decimal?)-6175.125, (decimal?)573.75, (decimal?)27084.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23856, Nebula.NebulaType.Planetary, "Phoi Aub XP-X e1-393", 4, true, "Phoi Aub XP-X e1-393", (decimal?)-6279.625, (decimal?)1084.03125, (decimal?)26146.375, (int)10 )); + AllOfThem.Add(new Nebula( 23899, Nebula.NebulaType.Planetary, "Phoo Aob EB-O e6-365", 4, true, "Phoo Aob EB-O e6-365", (decimal?)-10493.84375, (decimal?)409.40625, (decimal?)24492.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23902, Nebula.NebulaType.Planetary, "Phoo Aob NM-W e1-1366", 4, true, "Phoo Aob NM-W e1-1366", (decimal?)-10783, (decimal?)101.65625, (decimal?)23697.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23903, Nebula.NebulaType.Planetary, "Phoo Aob TD-T e3-7642", 4, true, "Phoo Aob TD-T e3-7642", (decimal?)-10752.125, (decimal?)205.28125, (decimal?)24003.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23907, Nebula.NebulaType.Planetary, "Phoo Freau HA-A e587", 4, true, "Phoo Freau HA-A e587", (decimal?)-10338.3125, (decimal?)60.5, (decimal?)25831.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23953, Nebula.NebulaType.Planetary, "Phrae Flyooe WO-Z e21", 4, true, "Phrae Flyooe WO-Z e21", (decimal?)-10560.9375, (decimal?)-1435.6875, (decimal?)23515.75, (int)10 )); + AllOfThem.Add(new Nebula( 23956, Nebula.NebulaType.Planetary, "Phrae Flyou VD-B e749", 4, true, "Phrae Flyou VD-B e749", (decimal?)-10413.3125, (decimal?)-273.875, (decimal?)23391.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23962, Nebula.NebulaType.Planetary, "Phrio Flya KC-U e3-292", 4, true, "Phrio Flya KC-U e3-292", (decimal?)-5436.3125, (decimal?)-1596.03125, (decimal?)24046.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24004, Nebula.NebulaType.Planetary, "Phroea Flya XJ-Z e3657", 4, true, "Phroea Flya XJ-Z e3657", (decimal?)-4238.84375, (decimal?)-1539.65625, (decimal?)23491.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24006, Nebula.NebulaType.Planetary, "Phroea Flyuae AG-X e1-5191", 4, true, "Phroea Flyuae AG-X e1-5191", (decimal?)-7727.4375, (decimal?)-653.0625, (decimal?)23704.875, (int)10 )); + AllOfThem.Add(new Nebula( 24007, Nebula.NebulaType.Planetary, "Phroea Flyuae DB-X E1-499", 4, true, "Phroea Flyuae DB-X e1-499", (decimal?)-7523.25, (decimal?)-739.28125, (decimal?)23663.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24008, Nebula.NebulaType.Planetary, "Phroea Flyuae DG-X e1-68", 4, true, "Phroea Flyuae DG-X e1-68", (decimal?)-7136.96875, (decimal?)-662.625, (decimal?)23696.125, (int)10 )); + AllOfThem.Add(new Nebula( 24009, Nebula.NebulaType.Planetary, "Phroea Flyuae HR-W e1-4170", 4, true, "Phroea Flyuae HR-W e1-4170", (decimal?)-7457.96875, (decimal?)-1028.53125, (decimal?)23627.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24010, Nebula.NebulaType.Planetary, "Phroea Flyuae KC-V e2-4775", 4, true, "Phroea Flyuae KC-V e2-4775", (decimal?)-7423.6875, (decimal?)-862.8125, (decimal?)23782.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24011, Nebula.NebulaType.Planetary, "Phroea Flyuae KS-T e3-4933", 4, true, "Phroea Flyuae KS-T e3-4933", (decimal?)-7318.21875, (decimal?)-547.59375, (decimal?)24041.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24012, Nebula.NebulaType.Planetary, "Phroea Flyuae MC-V E2-2837", 4, true, "Phroea Flyuae MC-V e2-2837", (decimal?)-7007.9375, (decimal?)-830.65625, (decimal?)23766.375, (int)10 )); + AllOfThem.Add(new Nebula( 24013, Nebula.NebulaType.Planetary, "Phroea Flyuae MS-T e3-3201", 4, true, "Phroea Flyuae MS-T e3-3201", (decimal?)-7067.09375, (decimal?)-612.8125, (decimal?)23920.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24014, Nebula.NebulaType.Planetary, "Phroea Flyuae PI-B e1340", 4, true, "Phroea Flyuae PI-B e1340", (decimal?)-7157.4375, (decimal?)-132.625, (decimal?)23319.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24015, Nebula.NebulaType.Planetary, "Phroea Flyuae PY-R e4-6500", 4, true, "Phroea Flyuae PY-R e4-6500", (decimal?)-7144.65625, (decimal?)-529.5, (decimal?)24119.375, (int)10 )); + AllOfThem.Add(new Nebula( 24016, Nebula.NebulaType.Planetary, "Phroea Flyuae RI-T E3-9059", 4, true, "Phroea Flyuae RI-T e3-9059", (decimal?)-6899.46875, (decimal?)-858.40625, (decimal?)23957.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24017, Nebula.NebulaType.Planetary, "Phroea Flyuae SE-Q e5-758", 4, true, "Phroea Flyuae SE-Q e5-758", (decimal?)-7324.4375, (decimal?)-558.5625, (decimal?)24338.875, (int)10 )); + AllOfThem.Add(new Nebula( 24018, Nebula.NebulaType.Planetary, "Phroea Flyuae SZ-P e5-8345", 4, true, "Phroea Flyuae SZ-P e5-8345", (decimal?)-7715.5625, (decimal?)-667.96875, (decimal?)24306.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24019, Nebula.NebulaType.Planetary, "Phroea Flyuae TZ-P e5-2538", 4, true, "Phroea Flyuae TZ-P e5-2538", (decimal?)-7429.40625, (decimal?)-823.8125, (decimal?)24355.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24020, Nebula.NebulaType.Planetary, "Phroea Flyuae XZ-P E5-4957", 4, true, "Phroea Flyuae XZ-P e5-4957", (decimal?)-6839.71875, (decimal?)-785.78125, (decimal?)24306.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24107, Nebula.NebulaType.Planetary, "Phroi Flyuae AL-P e5-1913", 4, true, "Phroi Flyuae AL-P e5-1913", (decimal?)-3505.9375, (decimal?)-1279, (decimal?)24326.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24108, Nebula.NebulaType.Planetary, "Phroi Flyuae FB-X e1-6132", 4, true, "Phroi Flyuae FB-X e1-6132", (decimal?)-3351.8125, (decimal?)-748.78125, (decimal?)23600.875, (int)10 )); + AllOfThem.Add(new Nebula( 24109, Nebula.NebulaType.Planetary, "Phroi Flyuae GH-U e3-7636", 4, true, "Phroi Flyuae GH-U e3-7636", (decimal?)-3128.9375, (decimal?)-31.78125, (decimal?)24050.25, (int)10 )); + AllOfThem.Add(new Nebula( 24112, Nebula.NebulaType.Planetary, "Phroi Flyuae QT-R e4-102", 4, true, "Phroi Flyuae QT-R e4-102", (decimal?)-3455.84375, (decimal?)-682.21875, (decimal?)24128.375, (int)10 )); + AllOfThem.Add(new Nebula( 24113, Nebula.NebulaType.Planetary, "Phroi Flyuae SY-S e3-9619", 4, true, "Phroi Flyuae SY-S e3-9619", (decimal?)-3466.75, (decimal?)-1196.375, (decimal?)24007.5, (int)10 )); + AllOfThem.Add(new Nebula( 24114, Nebula.NebulaType.Planetary, "Phroi Flyuae UT-A e794", 4, true, "Phroi Flyuae UT-A e794", (decimal?)-3496.8125, (decimal?)-647.40625, (decimal?)23353.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24115, Nebula.NebulaType.Planetary, "Phroi Flyuae VU-X e1-4467", 4, true, "Phroi Flyuae VU-X e1-4467", (decimal?)-3665.125, (decimal?)-182.5625, (decimal?)23597.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24130, Nebula.NebulaType.Planetary, "Phroi Pruae AV-Y e5319", 4, true, "Phroi Pruae AV-Y e5319", (decimal?)-3550.5625, (decimal?)-756.9375, (decimal?)26019.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24131, Nebula.NebulaType.Planetary, "Phroi Pruae BB-O e6-4362", 4, true, "Phroi Pruae BB-O e6-4362", (decimal?)-3397.625, (decimal?)-947.375, (decimal?)26975.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24132, Nebula.NebulaType.Planetary, "Phroi Pruae BK-A e5516", 4, true, "Phroi Pruae BK-A e5516", (decimal?)-3086.40625, (decimal?)-881.15625, (decimal?)25824.625, (int)10 )); + AllOfThem.Add(new Nebula( 24133, Nebula.NebulaType.Planetary, "Phroi Pruae BL-X e1-5380", 4, true, "Phroi Pruae BL-X e1-5380", (decimal?)-3404.9375, (decimal?)-373.78125, (decimal?)26241.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24134, Nebula.NebulaType.Planetary, "Phroi Pruae FB-X e1-3741", 4, true, "Phroi Pruae FB-X e1-3741", (decimal?)-3412.21875, (decimal?)-782.9375, (decimal?)26159.625, (int)10 )); + AllOfThem.Add(new Nebula( 24135, Nebula.NebulaType.Planetary, "Phroi Pruae FG-X e1-10047", 4, true, "Phroi Pruae FG-X e1-10047", (decimal?)-3047.6875, (decimal?)-572.40625, (decimal?)26261.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24137, Nebula.NebulaType.Planetary, "Phroi Pruae LD-S e4-3503", 4, true, "Phroi Pruae LD-S e4-3503", (decimal?)-3629.59375, (decimal?)-411.28125, (decimal?)26642.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24138, Nebula.NebulaType.Planetary, "Phroi Pruae MC-V e2-2159", 4, true, "Phroi Pruae MC-V e2-2159", (decimal?)-3217.59375, (decimal?)-910.4375, (decimal?)26413.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24139, Nebula.NebulaType.Planetary, "Phroi Pruae QO-R e4-330", 4, true, "Phroi Pruae QO-R e4-330", (decimal?)-3756.15625, (decimal?)-861.625, (decimal?)26633.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24140, Nebula.NebulaType.Planetary, "Phroi Pruae QO-R e4-7084", 4, true, "Phroi Pruae QO-R e4-7084", (decimal?)-3824.25, (decimal?)-830.25, (decimal?)26741.25, (int)10 )); + AllOfThem.Add(new Nebula( 24141, Nebula.NebulaType.Planetary, "Phroi Pruae VU-P e5-389", 4, true, "Phroi Pruae VU-P e5-389", (decimal?)-3688.5, (decimal?)-837.375, (decimal?)26926.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24142, Nebula.NebulaType.Planetary, "Phroi Pruae VZ-P e5-1158", 4, true, "Phroi Pruae VZ-P e5-1158", (decimal?)-3372.4375, (decimal?)-681.5, (decimal?)26839.375, (int)10 )); + AllOfThem.Add(new Nebula( 24143, Nebula.NebulaType.Planetary, "Phroi Pruae YA-W e2-2192", 4, true, "Phroi Pruae YA-W e2-2192", (decimal?)-3844.4375, (decimal?)-141.1875, (decimal?)26388.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24214, Nebula.NebulaType.Planetary, "Plimbeau ZE-R e4-2732", 4, true, "Plimbeau ZE-R e4-2732", (decimal?)-2980.28125, (decimal?)1321.34375, (decimal?)28033.5, (int)10 )); + AllOfThem.Add(new Nebula( 24304, Nebula.NebulaType.Planetary, "Rhuedgau LM-V e2-334", 4, true, "Rhuedgau LM-V e2-334", (decimal?)-3933.90625, (decimal?)1986.09375, (decimal?)31490.25, (int)10 )); + AllOfThem.Add(new Nebula( 24316, Nebula.NebulaType.Planetary, "Scaulao BW-V e2-5203", 4, true, "Scaulao BW-V e2-5203", (decimal?)-3652.0625, (decimal?)-236.8125, (decimal?)28868.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24317, Nebula.NebulaType.Planetary, "Scaulao DB-W e2-1597", 4, true, "Scaulao DB-W e2-1597", (decimal?)-3009.59375, (decimal?)-86.71875, (decimal?)28863.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24318, Nebula.NebulaType.Planetary, "Scaulao FL-P e5-2716", 4, true, "Scaulao FL-P e5-2716", (decimal?)-2718.1875, (decimal?)-1223.15625, (decimal?)29364.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24319, Nebula.NebulaType.Planetary, "Scaulao JW-W e1-6891", 4, true, "Scaulao JW-W e1-6891", (decimal?)-3015.78125, (decimal?)-837.28125, (decimal?)28849.5, (int)10 )); + AllOfThem.Add(new Nebula( 24320, Nebula.NebulaType.Planetary, "Scaulao TJ-Z e4040", 4, true, "Scaulao TJ-Z e4040", (decimal?)-3682, (decimal?)-200.0625, (decimal?)28591.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24321, Nebula.NebulaType.Planetary, "Scaulao XJ-Z e1603", 4, true, "Scaulao XJ-Z e1603", (decimal?)-2967.15625, (decimal?)-200.90625, (decimal?)28658.75, (int)10 )); + AllOfThem.Add(new Nebula( 24322, Nebula.NebulaType.Planetary, "Scaulao XO-R e4-9658", 4, true, "Scaulao XO-R e4-9658", (decimal?)-2703.3125, (decimal?)-826.46875, (decimal?)29281.25, (int)10 )); + AllOfThem.Add(new Nebula( 24323, Nebula.NebulaType.Planetary, "Scaulao YJ-Z e7574", 4, true, "Scaulao YJ-Z e7574", (decimal?)-2933.65625, (decimal?)-290.78125, (decimal?)28674.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24324, Nebula.NebulaType.Planetary, "Scaulao ZU-P e5-10473", 4, true, "Scaulao ZU-P e5-10473", (decimal?)-3038.125, (decimal?)-950.09375, (decimal?)29386.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24325, Nebula.NebulaType.Planetary, "Scaulao ZU-X e1-4572", 4, true, "Scaulao ZU-X e1-4572", (decimal?)-3034.53125, (decimal?)-135.375, (decimal?)28774.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24326, Nebula.NebulaType.Planetary, "Scaulao ZU-Y e5184", 4, true, "Scaulao ZU-Y e5184", (decimal?)-3739.6875, (decimal?)-791.34375, (decimal?)28629.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24350, Nebula.NebulaType.Planetary, "Scaulou ER-V e2-7582", 4, true, "Scaulou ER-V e2-7582", (decimal?)-7364.15625, (decimal?)-475.28125, (decimal?)28996.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24351, Nebula.NebulaType.Planetary, "Scaulou HM-V e2-690", 4, true, "Scaulou HM-V e2-690", (decimal?)-7178.0625, (decimal?)-520, (decimal?)28881.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24352, Nebula.NebulaType.Planetary, "Scaulou KC-V e2-5830", 4, true, "Scaulou KC-V e2-5830", (decimal?)-7327.96875, (decimal?)-940.34375, (decimal?)28983.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24353, Nebula.NebulaType.Planetary, "Scaulou KH-V E2-3226", 4, true, "Scaulou KH-V e2-3226", (decimal?)-6969.59375, (decimal?)-744.34375, (decimal?)28946.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24354, Nebula.NebulaType.Planetary, "Scaulou KN-T e3-3197", 4, true, "Scaulou KN-T e3-3197", (decimal?)-7627.875, (decimal?)-710.03125, (decimal?)29047.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24355, Nebula.NebulaType.Planetary, "Scaulou MN-T e3-1868", 4, true, "Scaulou MN-T e3-1868", (decimal?)-7269.96875, (decimal?)-817.09375, (decimal?)29169.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24356, Nebula.NebulaType.Planetary, "Scaulou NT-Q e5-3335", 4, true, "Scaulou NT-Q e5-3335", (decimal?)-7185.53125, (decimal?)-74.15625, (decimal?)29362.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24357, Nebula.NebulaType.Planetary, "Scaulou PD-S e4-4987", 4, true, "Scaulou PD-S e4-4987", (decimal?)-6892.90625, (decimal?)-345.5, (decimal?)29195.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24358, Nebula.NebulaType.Planetary, "Scaulou QZ-O E6-3084", 4, true, "Scaulou QZ-O e6-3084", (decimal?)-7400.40625, (decimal?)-146.9375, (decimal?)29643.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24359, Nebula.NebulaType.Planetary, "Scaulou TI-T e3-7305", 4, true, "Scaulou TI-T e3-7305", (decimal?)-6618.03125, (decimal?)-905.34375, (decimal?)29043.25, (int)10 )); + AllOfThem.Add(new Nebula( 24389, Nebula.NebulaType.Planetary, "Scheau Bluae LM-V e2-385", 4, true, "Scheau Bluae LM-V e2-385", (decimal?)-5260.03125, (decimal?)-617.5625, (decimal?)32741.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24400, Nebula.NebulaType.Planetary, "Scheau Flyi BQ-P e5-3507", 4, true, "Scheau Flyi BQ-P e5-3507", (decimal?)-5583.375, (decimal?)-1121.125, (decimal?)23017.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24401, Nebula.NebulaType.Planetary, "Scheau Flyi GH-U e3-3617", 4, true, "Scheau Flyi GH-U e3-3617", (decimal?)-5783.40625, (decimal?)-141.53125, (decimal?)22683.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24402, Nebula.NebulaType.Planetary, "Scheau Flyi LH-V e2-2481", 4, true, "Scheau Flyi LH-V e2-2481", (decimal?)-5558.75, (decimal?)-794.1875, (decimal?)22559.625, (int)10 )); + AllOfThem.Add(new Nebula( 24403, Nebula.NebulaType.Planetary, "Scheau Flyi LM-V e2-4158", 4, true, "Scheau Flyi LM-V e2-4158", (decimal?)-5224.15625, (decimal?)-664, (decimal?)22543.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24404, Nebula.NebulaType.Planetary, "Scheau Flyi MT-Q e5-2653", 4, true, "Scheau Flyi MT-Q e5-2653", (decimal?)-6117.9375, (decimal?)-30.625, (decimal?)23088.375, (int)10 )); + AllOfThem.Add(new Nebula( 24405, Nebula.NebulaType.Planetary, "Scheau Flyi ND-S e4-3360", 4, true, "Scheau Flyi ND-S e4-3360", (decimal?)-5957.6875, (decimal?)-456.84375, (decimal?)22922.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24406, Nebula.NebulaType.Planetary, "Scheau Flyi NT-Q e5-5066", 4, true, "Scheau Flyi NT-Q e5-5066", (decimal?)-5930.21875, (decimal?)-133.09375, (decimal?)22937.25, (int)10 )); + AllOfThem.Add(new Nebula( 24407, Nebula.NebulaType.Planetary, "Scheau Flyi RO-Q e5-7328", 4, true, "Scheau Flyi RO-Q e5-7328", (decimal?)-5541.09375, (decimal?)-230.46875, (decimal?)22975.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24408, Nebula.NebulaType.Planetary, "Scheau Flyi RZ-O e6-3057", 4, true, "Scheau Flyi RZ-O e6-3057", (decimal?)-5972, (decimal?)-58.9375, (decimal?)23115.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24409, Nebula.NebulaType.Planetary, "Scheau Flyi SZ-P e5-1203", 4, true, "Scheau Flyi SZ-P e5-1203", (decimal?)-6395.125, (decimal?)-775.8125, (decimal?)23046.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24410, Nebula.NebulaType.Planetary, "Scheau Flyi VJ-Q e5-197", 4, true, "Scheau Flyi VJ-Q e5-197", (decimal?)-5190.625, (decimal?)-386.40625, (decimal?)22959.25, (int)10 )); + AllOfThem.Add(new Nebula( 24411, Nebula.NebulaType.Planetary, "Scheau Flyi VZ-O e6-4004", 4, true, "Scheau Flyi VZ-O e6-4004", (decimal?)-5207.34375, (decimal?)-117.53125, (decimal?)23243.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24412, Nebula.NebulaType.Planetary, "Scheau Flyi ZZ-Y e4813", 4, true, "Scheau Flyi ZZ-Y e4813", (decimal?)-5918.5625, (decimal?)-633.09375, (decimal?)22205.5, (int)10 )); + AllOfThem.Add(new Nebula( 24451, Nebula.NebulaType.Planetary, "Scheau Pri EQ-Y e9613", 4, true, "Scheau Pri EQ-Y e9613", (decimal?)-5738.21875, (decimal?)-851.28125, (decimal?)24729.25, (int)10 )); + AllOfThem.Add(new Nebula( 24452, Nebula.NebulaType.Planetary, "Scheau Pri FW-N e6-43", 4, true, "Scheau Pri FW-N e6-43", (decimal?)-5647.15625, (decimal?)-989.03125, (decimal?)25719.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24453, Nebula.NebulaType.Planetary, "Scheau Pri IC-V e2-9060", 4, true, "Scheau Pri IC-V e2-9060", (decimal?)-6318.6875, (decimal?)-866.90625, (decimal?)25140.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24454, Nebula.NebulaType.Planetary, "Scheau Pri MS-T e3-3578", 4, true, "Scheau Pri MS-T e3-3578", (decimal?)-5685.84375, (decimal?)-541.375, (decimal?)25242.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24455, Nebula.NebulaType.Planetary, "Scheau Pri UT-A e246", 4, true, "Scheau Pri UT-A e246", (decimal?)-6044.0625, (decimal?)-624.59375, (decimal?)24580.875, (int)10 )); + AllOfThem.Add(new Nebula( 24456, Nebula.NebulaType.Planetary, "Scheau Pri ZA-O e6-3456", 4, true, "Scheau Pri ZA-O e6-3456", (decimal?)-6167.875, (decimal?)-964.53125, (decimal?)25679.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24457, Nebula.NebulaType.Planetary, "Scheau Proo OZ-O e6-1350", 4, true, "Scheau Proo OZ-O e6-1350", (decimal?)-8902.59375, (decimal?)-1375.6875, (decimal?)25795.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24487, Nebula.NebulaType.Planetary, "Schee Flyi CQ-X e1-1674", 4, true, "Schee Flyi CQ-X e1-1674", (decimal?)-4178.59375, (decimal?)-263.90625, (decimal?)22390.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24488, Nebula.NebulaType.Planetary, "Schee Flyi EV-Y e3180", 4, true, "Schee Flyi EV-Y e3180", (decimal?)-4216.125, (decimal?)-746.90625, (decimal?)22291.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24489, Nebula.NebulaType.Planetary, "Schee Flyi HC-U e3-5666", 4, true, "Schee Flyi HC-U e3-5666", (decimal?)-4579.1875, (decimal?)-305.4375, (decimal?)22620.625, (int)10 )); + AllOfThem.Add(new Nebula( 24490, Nebula.NebulaType.Planetary, "Schee Flyi OD-B e991", 4, true, "Schee Flyi OD-B e991", (decimal?)-5047.3125, (decimal?)-299.59375, (decimal?)22078.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24491, Nebula.NebulaType.Planetary, "Schee Flyi OZ-O e6-151", 4, true, "Schee Flyi OZ-O e6-151", (decimal?)-5078.71875, (decimal?)-168.59375, (decimal?)23191, (int)10 )); + AllOfThem.Add(new Nebula( 24492, Nebula.NebulaType.Planetary, "Schee Flyi QT-R e4-9243", 4, true, "Schee Flyi QT-R e4-9243", (decimal?)-4757.40625, (decimal?)-737.4375, (decimal?)22829.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24493, Nebula.NebulaType.Planetary, "Schee Flyi SS-U e2-779", 4, true, "Schee Flyi SS-U e2-779", (decimal?)-4183.34375, (decimal?)-1242.59375, (decimal?)22544.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24494, Nebula.NebulaType.Planetary, "Schee Flyi ST-R e4-1665", 4, true, "Schee Flyi ST-R e4-1665", (decimal?)-4399.34375, (decimal?)-701.28125, (decimal?)22883.875, (int)10 )); + AllOfThem.Add(new Nebula( 24495, Nebula.NebulaType.Planetary, "Schee Flyi VJ-Z e5007", 4, true, "Schee Flyi VJ-Z e5007", (decimal?)-4548.96875, (decimal?)-328.96875, (decimal?)22155.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24496, Nebula.NebulaType.Planetary, "Schee Flyuae BG-X e1-3861", 4, true, "Schee Flyuae BG-X e1-3861", (decimal?)-7429.0625, (decimal?)-518, (decimal?)22443.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24497, Nebula.NebulaType.Planetary, "Schee Flyuae CV-Y e2428", 4, true, "Schee Flyuae CV-Y e2428", (decimal?)-7065.46875, (decimal?)-680.0625, (decimal?)22265.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24498, Nebula.NebulaType.Planetary, "Schee Flyuae DF-A e6898", 4, true, "Schee Flyuae DF-A e6898", (decimal?)-6868.9375, (decimal?)-1076.90625, (decimal?)22126.75, (int)10 )); + AllOfThem.Add(new Nebula( 24499, Nebula.NebulaType.Planetary, "Schee Flyuae EH-U e3-2746", 4, true, "Schee Flyuae EH-U e3-2746", (decimal?)-7415.59375, (decimal?)-135.75, (decimal?)22771.625, (int)10 )); + AllOfThem.Add(new Nebula( 24500, Nebula.NebulaType.Planetary, "Schee Flyuae FW-V e2-3801", 4, true, "Schee Flyuae FW-V e2-3801", (decimal?)-6834.90625, (decimal?)-311.75, (decimal?)22586.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24501, Nebula.NebulaType.Planetary, "Schee Flyuae JW-W e1-7141", 4, true, "Schee Flyuae JW-W e1-7141", (decimal?)-6858.78125, (decimal?)-922.5625, (decimal?)22355.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24502, Nebula.NebulaType.Planetary, "Schee Flyuae KW-W e1-10059", 4, true, "Schee Flyuae KW-W e1-10059", (decimal?)-6685.90625, (decimal?)-830.5, (decimal?)22450.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24503, Nebula.NebulaType.Planetary, "Schee Flyuae UO-A e5581", 4, true, "Schee Flyuae UO-A e5581", (decimal?)-7742.6875, (decimal?)-811.28125, (decimal?)22053.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24504, Nebula.NebulaType.Planetary, "Schee Flyuae VK-O e6-8372", 4, true, "Schee Flyuae VK-O e6-8372", (decimal?)-7493.875, (decimal?)-547.875, (decimal?)23140.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24505, Nebula.NebulaType.Planetary, "Schee Flyuae WZ-P e5-7263", 4, true, "Schee Flyuae WZ-P e5-7263", (decimal?)-6949.25, (decimal?)-777.21875, (decimal?)23083.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24506, Nebula.NebulaType.Planetary, "Schee Flyuae XJ-R e4-6080", 4, true, "Schee Flyuae XJ-R e4-6080", (decimal?)-6802.375, (decimal?)-1092.96875, (decimal?)22835.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24507, Nebula.NebulaType.Planetary, "Schee Flyuae XO-R e4-7104", 4, true, "Schee Flyuae XO-R e4-7104", (decimal?)-6561.71875, (decimal?)-946.25, (decimal?)22890.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24531, Nebula.NebulaType.Planetary, "Schee Pri BF-R e4-1577", 4, true, "Schee Pri BF-R e4-1577", (decimal?)-3934.15625, (decimal?)-1299.90625, (decimal?)25488.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24532, Nebula.NebulaType.Planetary, "Schee Pri HR-V e2-3613", 4, true, "Schee Pri HR-V e2-3613", (decimal?)-4359.625, (decimal?)-385.65625, (decimal?)25083.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24533, Nebula.NebulaType.Planetary, "Schee Pri KM-V e2-7834", 4, true, "Schee Pri KM-V e2-7834", (decimal?)-4165.8125, (decimal?)-520.5, (decimal?)25033.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24534, Nebula.NebulaType.Planetary, "Schee Pri KW-W e1-772", 4, true, "Schee Pri KW-W e1-772", (decimal?)-4176.875, (decimal?)-837.75, (decimal?)24920.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24535, Nebula.NebulaType.Planetary, "Schee Pri NT-Q e5-1532", 4, true, "Schee Pri NT-Q e5-1532", (decimal?)-4635.34375, (decimal?)-128.3125, (decimal?)25559.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24536, Nebula.NebulaType.Planetary, "Schee Pri OS-T e3-2193", 4, true, "Schee Pri OS-T e3-2193", (decimal?)-4131.9375, (decimal?)-559.0625, (decimal?)25313.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24537, Nebula.NebulaType.Planetary, "Schee Pri PD-S e4-12613", 4, true, "Schee Pri PD-S e4-12613", (decimal?)-4382.21875, (decimal?)-373.0625, (decimal?)25389.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24538, Nebula.NebulaType.Planetary, "Schee Pri PD-S e4-4399", 4, true, "Schee Pri PD-S e4-4399", (decimal?)-4254.4375, (decimal?)-422.78125, (decimal?)25341, (int)10 )); + AllOfThem.Add(new Nebula( 24539, Nebula.NebulaType.Planetary, "Schee Pri TJ-Q e5-7162", 4, true, "Schee Pri TJ-Q e5-7162", (decimal?)-4365.125, (decimal?)-488.5625, (decimal?)25610.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24540, Nebula.NebulaType.Planetary, "Schee Pri YT-A e1376", 4, true, "Schee Pri YT-A e1376", (decimal?)-4159.4375, (decimal?)-584.125, (decimal?)24599.875, (int)10 )); + AllOfThem.Add(new Nebula( 24541, Nebula.NebulaType.Planetary, "Schieneae HN-S e4-2596", 4, true, "Schieneae HN-S e4-2596", (decimal?)-6248.5, (decimal?)-1317.375, (decimal?)21646.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24542, Nebula.NebulaType.Planetary, "Schieneae ZU-X e1-1210", 4, true, "Schieneae ZU-X e1-1210", (decimal?)-5658.0625, (decimal?)-1383.625, (decimal?)21081.875, (int)10 )); + AllOfThem.Add(new Nebula( 24571, Nebula.NebulaType.Planetary, "Screake AV-P e5-2711", 4, true, "Screake AV-P e5-2711", (decimal?)-9334.28125, (decimal?)371.90625, (decimal?)21707.25, (int)10 )); + AllOfThem.Add(new Nebula( 24572, Nebula.NebulaType.Planetary, "Screake BV-P e5-237", 4, true, "Screake BV-P e5-237", (decimal?)-9081.96875, (decimal?)321.125, (decimal?)21759.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24573, Nebula.NebulaType.Planetary, "Screake BV-P e5-415", 4, true, "Screake BV-P e5-415", (decimal?)-9081.71875, (decimal?)423.40625, (decimal?)21676.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24574, Nebula.NebulaType.Planetary, "Screake HA-A e2091", 4, true, "Screake HA-A e2091", (decimal?)-9110.5, (decimal?)58.53125, (decimal?)20787.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24575, Nebula.NebulaType.Planetary, "Screake JB-X e1-2161", 4, true, "Screake JB-X e1-2161", (decimal?)-9184.53125, (decimal?)508.8125, (decimal?)21109.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24577, Nebula.NebulaType.Planetary, "Screake KG-Y e611", 4, true, "Screake KG-Y e611", (decimal?)-9218.6875, (decimal?)67.4375, (decimal?)20889.625, (int)10 )); + AllOfThem.Add(new Nebula( 24578, Nebula.NebulaType.Planetary, "Screake LM-V e2-3116", 4, true, "Screake LM-V e2-3116", (decimal?)-9085.3125, (decimal?)729.46875, (decimal?)21314.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24579, Nebula.NebulaType.Planetary, "Screake PX-U e2-3464", 4, true, "Screake PX-U e2-3464", (decimal?)-9457.875, (decimal?)167.25, (decimal?)21308.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24580, Nebula.NebulaType.Planetary, "Screake PY-R e4-4094", 4, true, "Screake PY-R e4-4094", (decimal?)-9689.1875, (decimal?)626.75, (decimal?)21539.25, (int)10 )); + AllOfThem.Add(new Nebula( 24581, Nebula.NebulaType.Planetary, "Screake UD-T e3-525", 4, true, "Screake UD-T e3-525", (decimal?)-9283.4375, (decimal?)165.21875, (decimal?)21425.75, (int)10 )); + AllOfThem.Add(new Nebula( 24582, Nebula.NebulaType.Planetary, "Screake YP-P e5-5164", 4, true, "Screake YP-P e5-5164", (decimal?)-9962.46875, (decimal?)231.3125, (decimal?)21752.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24600, Nebula.NebulaType.Planetary, "Screakiae BL-X e1-2677", 4, true, "Screakiae BL-X e1-2677", (decimal?)-8439, (decimal?)803.15625, (decimal?)21112.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24601, Nebula.NebulaType.Planetary, "Screakiae BQ-Y e5778", 4, true, "Screakiae BQ-Y e5778", (decimal?)-8826.4375, (decimal?)310.59375, (decimal?)20873.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24602, Nebula.NebulaType.Planetary, "Screakiae CK-A e5062", 4, true, "Screakiae CK-A e5062", (decimal?)-7931.6875, (decimal?)454.40625, (decimal?)20760.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24603, Nebula.NebulaType.Planetary, "Screakiae DW-N e6-9447", 4, true, "Screakiae DW-N e6-9447", (decimal?)-8476.65625, (decimal?)209.9375, (decimal?)21821.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24604, Nebula.NebulaType.Planetary, "Screakiae IL-Y e7202", 4, true, "Screakiae IL-Y e7202", (decimal?)-7931.0625, (decimal?)175.15625, (decimal?)20964.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24605, Nebula.NebulaType.Planetary, "Screakiae JW-W e1-628", 4, true, "Screakiae JW-W e1-628", (decimal?)-8098.1875, (decimal?)398.8125, (decimal?)21082.5, (int)10 )); + AllOfThem.Add(new Nebula( 24606, Nebula.NebulaType.Planetary, "Screakiae MY-R e4-3499", 4, true, "Screakiae MY-R e4-3499", (decimal?)-8916.1875, (decimal?)657.28125, (decimal?)21560.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24607, Nebula.NebulaType.Planetary, "Screakiae PJ-Q e5-5014", 4, true, "Screakiae PJ-Q e5-5014", (decimal?)-8815.21875, (decimal?)917.71875, (decimal?)21741.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24608, Nebula.NebulaType.Planetary, "Screakiae RN-T e3-1477", 4, true, "Screakiae RN-T e3-1477", (decimal?)-7896.09375, (decimal?)548.28125, (decimal?)21361.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24609, Nebula.NebulaType.Planetary, "Screakiae SJ-Z e997", 4, true, "Screakiae SJ-Z e997", (decimal?)-8866.125, (decimal?)1059.09375, (decimal?)20985.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24610, Nebula.NebulaType.Planetary, "Screakiae ZP-P e5-6049", 4, true, "Screakiae ZP-P e5-6049", (decimal?)-8431.125, (decimal?)190.3125, (decimal?)21700.75, (int)10 )); + AllOfThem.Add(new Nebula( 24611, Nebula.NebulaType.Planetary, "Screakou CW-N e6-1359", 4, true, "Screakou CW-N e6-1359", (decimal?)-6051.5625, (decimal?)241.65625, (decimal?)21940.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24612, Nebula.NebulaType.Planetary, "Screakou CW-N e6-7648", 4, true, "Screakou CW-N e6-7648", (decimal?)-6098.96875, (decimal?)248.625, (decimal?)21922.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24613, Nebula.NebulaType.Planetary, "Screakou DL-X e1-5148", 4, true, "Screakou DL-X e1-5148", (decimal?)-5659.53125, (decimal?)824.53125, (decimal?)21108.75, (int)10 )); + AllOfThem.Add(new Nebula( 24614, Nebula.NebulaType.Planetary, "Screakou EW-N e6-5997", 4, true, "Screakou EW-N e6-5997", (decimal?)-5743.78125, (decimal?)234.25, (decimal?)21914.25, (int)10 )); + AllOfThem.Add(new Nebula( 24615, Nebula.NebulaType.Planetary, "Screakou FL-X e1-6271", 4, true, "Screakou FL-X e1-6271", (decimal?)-5235.78125, (decimal?)927.0625, (decimal?)21031.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24616, Nebula.NebulaType.Planetary, "Screakou IW-W e1-6946", 4, true, "Screakou IW-W e1-6946", (decimal?)-5708.96875, (decimal?)363.03125, (decimal?)21152.25, (int)10 )); + AllOfThem.Add(new Nebula( 24617, Nebula.NebulaType.Planetary, "Screakou LD-S e4-7658", 4, true, "Screakou LD-S e4-7658", (decimal?)-6231.9375, (decimal?)892.9375, (decimal?)21530.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24618, Nebula.NebulaType.Planetary, "Screakou RE-Q e5-43", 4, true, "Screakou RE-Q e5-43", (decimal?)-6216.5625, (decimal?)663.0625, (decimal?)21733.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24619, Nebula.NebulaType.Planetary, "Screakou UU-O e6-5566", 4, true, "Screakou UU-O e6-5566", (decimal?)-5820.125, (decimal?)1012.78125, (decimal?)21894.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24620, Nebula.NebulaType.Planetary, "Screakou YA-W e2-3522", 4, true, "Screakou YA-W e2-3522", (decimal?)-6327.5625, (decimal?)1115.59375, (decimal?)21282.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24695, Nebula.NebulaType.Planetary, "Skombuia ZT-A e467", 4, true, "Skombuia ZT-A e467", (decimal?)-3950.25, (decimal?)2048.84375, (decimal?)28386.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24748, Nebula.NebulaType.Planetary, "Spoihee PT-Q e5-1449", 4, true, "Spoihee PT-Q e5-1449", (decimal?)-6912.28125, (decimal?)-1348.21875, (decimal?)20458.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24769, Nebula.NebulaType.Planetary, "Stranaea SS-U e2-1070", 4, true, "Stranaea SS-U e2-1070", (decimal?)-4066.5, (decimal?)1319.5625, (decimal?)18659.25, (int)10 )); + AllOfThem.Add(new Nebula( 24773, Nebula.NebulaType.Planetary, "Stranu BQ-Y e1091", 4, true, "Stranu BQ-Y e1091", (decimal?)-6165.5, (decimal?)1677.71875, (decimal?)18325.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24799, Nebula.NebulaType.Planetary, "Stuemao AF-Z e4463", 4, true, "Stuemao AF-Z e4463", (decimal?)-2923.875, (decimal?)906.65625, (decimal?)26024.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24800, Nebula.NebulaType.Planetary, "Stuemao BW-N e6-2803", 4, true, "Stuemao BW-N e6-2803", (decimal?)-3690.28125, (decimal?)207.15625, (decimal?)27047.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24801, Nebula.NebulaType.Planetary, "Stuemao CK-A e2317", 4, true, "Stuemao CK-A e2317", (decimal?)-2910.0625, (decimal?)410.34375, (decimal?)25818.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24802, Nebula.NebulaType.Planetary, "Stuemao DL-P e5-4901", 4, true, "Stuemao DL-P e5-4901", (decimal?)-3010.625, (decimal?)52.625, (decimal?)26804, (int)10 )); + AllOfThem.Add(new Nebula( 24803, Nebula.NebulaType.Planetary, "Stuemao ec-u e3-1376", 4, true, "Stuemao EC-U e3-1376", (decimal?)-3813.5625, (decimal?)964.25, (decimal?)26467.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24804, Nebula.NebulaType.Planetary, "Stuemao FA-A e2945", 4, true, "Stuemao FA-A e2945", (decimal?)-2975.8125, (decimal?)105.6875, (decimal?)25859.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24805, Nebula.NebulaType.Planetary, "Stuemao GQ-Y e1872", 4, true, "Stuemao GQ-Y e1872", (decimal?)-2865.4375, (decimal?)345.4375, (decimal?)26093.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24806, Nebula.NebulaType.Planetary, "Stuemao HM-V e2-3083", 4, true, "Stuemao HM-V e2-3083", (decimal?)-3270.34375, (decimal?)623.0625, (decimal?)26450.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24808, Nebula.NebulaType.Planetary, "Stuemao PY-R e4-1431", 4, true, "Stuemao PY-R e4-1431", (decimal?)-3369.6875, (decimal?)669.90625, (decimal?)26676.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24809, Nebula.NebulaType.Planetary, "Stuemao RI-B e3948", 4, true, "Stuemao RI-B e3948", (decimal?)-3020, (decimal?)1123.09375, (decimal?)25821.125, (int)10 )); + AllOfThem.Add(new Nebula( 24810, Nebula.NebulaType.Planetary, "Stuemao to-r e4-6681", 4, true, "Stuemao TO-R e4-6681", (decimal?)-3295.0625, (decimal?)405.59375, (decimal?)26706.875, (int)10 )); + AllOfThem.Add(new Nebula( 24811, Nebula.NebulaType.Planetary, "Stuemao TT-R e4-9329", 4, true, "Stuemao TT-R e4-9329", (decimal?)-3031.9375, (decimal?)458.3125, (decimal?)26626.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24812, Nebula.NebulaType.Planetary, "Stuemao WJ-R e4-9640", 4, true, "Stuemao WJ-R e4-9640", (decimal?)-3144.15625, (decimal?)172.96875, (decimal?)26619.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24813, Nebula.NebulaType.Planetary, "Stuemao WY-A e4183", 4, true, "Stuemao WY-A e4183", (decimal?)-2937.84375, (decimal?)776.78125, (decimal?)25831.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24814, Nebula.NebulaType.Planetary, "Stuemao XF-O e6-2525", 4, true, "Stuemao XF-O e6-2525", (decimal?)-3697.65625, (decimal?)547.8125, (decimal?)27060.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24816, Nebula.NebulaType.Planetary, "Stuemao XP-P e5-7291", 4, true, "Stuemao XP-P e5-7291", (decimal?)-3710.8125, (decimal?)274.28125, (decimal?)26837.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24817, Nebula.NebulaType.Planetary, "Stuemao YP-P e5-8517", 4, true, "Stuemao YP-P e5-8517", (decimal?)-3574.53125, (decimal?)214.4375, (decimal?)26794.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24853, Nebula.NebulaType.Planetary, "Stuemiae CL-X e1-2564", 4, true, "Stuemiae CL-X e1-2564", (decimal?)-9526.46875, (decimal?)925.40625, (decimal?)26230.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24854, Nebula.NebulaType.Planetary, "Stuemiae gg-x e1-2030", 4, true, "Stuemiae GG-X e1-2030", (decimal?)-9224.625, (decimal?)630.0625, (decimal?)26194.75, (int)10 )); + AllOfThem.Add(new Nebula( 24855, Nebula.NebulaType.Planetary, "Stuemiae GG-X e1-7994", 4, true, "Stuemiae GG-X e1-7994", (decimal?)-9247.71875, (decimal?)677.59375, (decimal?)26286.125, (int)10 )); + AllOfThem.Add(new Nebula( 24856, Nebula.NebulaType.Planetary, "Stuemiae HH-U e3-69", 4, true, "Stuemiae HH-U e3-69", (decimal?)-9471.625, (decimal?)1229.90625, (decimal?)26589.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24858, Nebula.NebulaType.Planetary, "Stuemiae LR-W e1-1069", 4, true, "Stuemiae LR-W e1-1069", (decimal?)-9498.59375, (decimal?)275.375, (decimal?)26252.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24859, Nebula.NebulaType.Planetary, "Stuemiae RN-T e3-1387", 4, true, "Stuemiae RN-T e3-1387", (decimal?)-9054.25, (decimal?)574.8125, (decimal?)26526.5, (int)10 )); + AllOfThem.Add(new Nebula( 24860, Nebula.NebulaType.Planetary, "Stuemiae RX-U e2-8343", 4, true, "Stuemiae RX-U e2-8343", (decimal?)-9063.9375, (decimal?)285.125, (decimal?)26307.375, (int)10 )); + AllOfThem.Add(new Nebula( 24861, Nebula.NebulaType.Planetary, "Stuemiae WT-A e3243", 4, true, "Stuemiae WT-A e3243", (decimal?)-9599.5625, (decimal?)745.375, (decimal?)25846.5, (int)10 )); + AllOfThem.Add(new Nebula( 24879, Nebula.NebulaType.Planetary, "Stuemoae ab-o e6-6699", 4, true, "Stuemoae AB-O e6-6699", (decimal?)-8682.71875, (decimal?)369.34375, (decimal?)26940.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24880, Nebula.NebulaType.Planetary, "Stuemoae bf-z e7620", 4, true, "Stuemoae BF-Z e7620", (decimal?)-7810.84375, (decimal?)912.09375, (decimal?)26010.625, (int)10 )); + AllOfThem.Add(new Nebula( 24881, Nebula.NebulaType.Planetary, "Stuemoae CA-Z e1179", 4, true, "Stuemoae CA-Z e1179", (decimal?)-7936.15625, (decimal?)749.59375, (decimal?)26128.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24882, Nebula.NebulaType.Planetary, "Stuemoae CV-Y e1972", 4, true, "Stuemoae CV-Y e1972", (decimal?)-8268.90625, (decimal?)468.59375, (decimal?)26009.625, (int)10 )); + AllOfThem.Add(new Nebula( 24883, Nebula.NebulaType.Planetary, "Stuemoae dl-x e1-183", 4, true, "Stuemoae DL-X e1-183", (decimal?)-8183.09375, (decimal?)810.21875, (decimal?)26231, (int)10 )); + AllOfThem.Add(new Nebula( 24884, Nebula.NebulaType.Planetary, "Stuemoae dl-x e1-6933", 4, true, "Stuemoae DL-X e1-6933", (decimal?)-8139.40625, (decimal?)871.25, (decimal?)26159.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24885, Nebula.NebulaType.Planetary, "Stuemoae FV-Y e9321", 4, true, "Stuemoae FV-Y e9321", (decimal?)-7900.75, (decimal?)471.6875, (decimal?)26018.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24886, Nebula.NebulaType.Planetary, "Stuemoae IM-V e2-1606", 4, true, "Stuemoae IM-V e2-1606", (decimal?)-8324.9375, (decimal?)710.71875, (decimal?)26375.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24887, Nebula.NebulaType.Planetary, "Stuemoae IM-V e2-7004", 4, true, "Stuemoae IM-V e2-7004", (decimal?)-8358.1875, (decimal?)693.875, (decimal?)26314.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24888, Nebula.NebulaType.Planetary, "Stuemoae lx-u e2-354", 4, true, "Stuemoae LX-U e2-354", (decimal?)-8839.375, (decimal?)199.9375, (decimal?)26412.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24889, Nebula.NebulaType.Planetary, "Stuemoae MN-T e3-2140", 4, true, "Stuemoae MN-T e3-2140", (decimal?)-8569.125, (decimal?)544.125, (decimal?)26474.375, (int)10 )); + AllOfThem.Add(new Nebula( 24890, Nebula.NebulaType.Planetary, "Stuemoae pm-w e1-303", 4, true, "Stuemoae PM-W e1-303", (decimal?)-7819, (decimal?)12.4375, (decimal?)26158.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24891, Nebula.NebulaType.Planetary, "Stuemoae XO-A e7227", 4, true, "Stuemoae XO-A e7227", (decimal?)-8448.8125, (decimal?)583.34375, (decimal?)25931.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24892, Nebula.NebulaType.Planetary, "Stuemoae xp-p e5-3546", 4, true, "Stuemoae XP-P e5-3546", (decimal?)-8775.65625, (decimal?)232.375, (decimal?)26818.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24893, Nebula.NebulaType.Planetary, "Stuemoae xp-p e5-9460", 4, true, "Stuemoae XP-P e5-9460", (decimal?)-8783.75, (decimal?)286.53125, (decimal?)26843.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24894, Nebula.NebulaType.Planetary, "Stuemoae YP-O e6-4200", 4, true, "Stuemoae YP-O e6-4200", (decimal?)-8054.46875, (decimal?)825.375, (decimal?)27018.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24895, Nebula.NebulaType.Planetary, "Stuemoae ZU-P e5-2000", 4, true, "Stuemoae ZU-P e5-2000", (decimal?)-8175.8125, (decimal?)374.125, (decimal?)26910.25, (int)10 )); + AllOfThem.Add(new Nebula( 24900, Nebula.NebulaType.Planetary, "Systimbao GH-U e3-2006", 4, true, "Systimbao GH-U e3-2006", (decimal?)-5732.59375, (decimal?)-174.34375, (decimal?)27861.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24901, Nebula.NebulaType.Planetary, "Systimbao KH-V e2-2560", 4, true, "Systimbao KH-V e2-2560", (decimal?)-5711.96875, (decimal?)-814.28125, (decimal?)27631.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24902, Nebula.NebulaType.Planetary, "Systimbao OS-U e2-4455", 4, true, "Systimbao OS-U e2-4455", (decimal?)-6006.4375, (decimal?)-1298.0625, (decimal?)27681.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24903, Nebula.NebulaType.Planetary, "Systimbao TJ-Z E2793", 4, true, "Systimbao TJ-Z e2793", (decimal?)-6213.46875, (decimal?)-321.8125, (decimal?)27294.25, (int)10 )); + AllOfThem.Add(new Nebula( 24904, Nebula.NebulaType.Planetary, "Systimbau CG-O e6-8439", 4, true, "Systimbau CG-O e6-8439", (decimal?)-4199, (decimal?)-794.3125, (decimal?)28235.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24905, Nebula.NebulaType.Planetary, "Systimbau DB-X e1-7246", 4, true, "Systimbau DB-X e1-7246", (decimal?)-4977.65625, (decimal?)-669.96875, (decimal?)27434.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24906, Nebula.NebulaType.Planetary, "Systimbau DL-X e1-3170", 4, true, "Systimbau DL-X e1-3170", (decimal?)-4296.28125, (decimal?)-436.34375, (decimal?)27478.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24907, Nebula.NebulaType.Planetary, "Systimbau EC-U e3-3001", 4, true, "Systimbau EC-U e3-3001", (decimal?)-5058.90625, (decimal?)-340.59375, (decimal?)27774, (int)10 )); + AllOfThem.Add(new Nebula( 24908, Nebula.NebulaType.Planetary, "Systimbau JR-N e6-5997", 4, true, "Systimbau JR-N e6-5997", (decimal?)-3906.375, (decimal?)-1147.59375, (decimal?)28232.5, (int)10 )); + AllOfThem.Add(new Nebula( 24909, Nebula.NebulaType.Planetary, "Systimbau MO-Q e5-689", 4, true, "Systimbau MO-Q e5-689", (decimal?)-5184.59375, (decimal?)-240.40625, (decimal?)28194.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24910, Nebula.NebulaType.Planetary, "Systimbau OI-S e4-275", 4, true, "Systimbau OI-S e4-275", (decimal?)-4202.5625, (decimal?)-197.90625, (decimal?)28048.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24911, Nebula.NebulaType.Planetary, "Systimbau PI-B e2983", 4, true, "Systimbau PI-B e2983", (decimal?)-4585.3125, (decimal?)-123.125, (decimal?)27164.125, (int)10 )); + AllOfThem.Add(new Nebula( 24912, Nebula.NebulaType.Planetary, "Systimbau QO-Q e5-1584", 4, true, "Systimbau QO-Q e5-1584", (decimal?)-4484.40625, (decimal?)-267.4375, (decimal?)28060.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24913, Nebula.NebulaType.Planetary, "Systimbau QO-Q e5-5517", 4, true, "Systimbau QO-Q e5-5517", (decimal?)-4481.40625, (decimal?)-316.15625, (decimal?)28206.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24914, Nebula.NebulaType.Planetary, "Systimbau RD-B e3593", 4, true, "Systimbau RD-B e3593", (decimal?)-4681.21875, (decimal?)-273.09375, (decimal?)27160.25, (int)10 )); + AllOfThem.Add(new Nebula( 24915, Nebula.NebulaType.Planetary, "Systimbau SU-O e6-3053", 4, true, "Systimbau SU-O e6-3053", (decimal?)-4752.625, (decimal?)-342.1875, (decimal?)28287.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24916, Nebula.NebulaType.Planetary, "Systimbau UZ-O e6-370", 4, true, "Systimbau UZ-O e6-370", (decimal?)-4088.65625, (decimal?)-91.46875, (decimal?)28362.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24917, Nebula.NebulaType.Planetary, "Systimbau XJ-Z e1174", 4, true, "Systimbau XJ-Z e1174", (decimal?)-4310.9375, (decimal?)-226, (decimal?)27346.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24918, Nebula.NebulaType.Planetary, "Systimbau XO-A e6611", 4, true, "Systimbau XO-A e6611", (decimal?)-4631.1875, (decimal?)-793.53125, (decimal?)27200.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24919, Nebula.NebulaType.Planetary, "Systimbau XO-A e7257", 4, true, "Systimbau XO-A e7257", (decimal?)-4553.03125, (decimal?)-777.28125, (decimal?)27110.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24920, Nebula.NebulaType.Planetary, "Systimbau XU-P e5-4093", 4, true, "Systimbau XU-P e5-4093", (decimal?)-4660.125, (decimal?)-958.8125, (decimal?)28179.125, (int)10 )); + AllOfThem.Add(new Nebula( 24950, Nebula.NebulaType.Planetary, "Systimbo BL-X e1-6656", 4, true, "Systimbo BL-X e1-6656", (decimal?)-3365.71875, (decimal?)-482.125, (decimal?)27541.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24951, Nebula.NebulaType.Planetary, "Systimbo CW-V e2-5506", 4, true, "Systimbo CW-V e2-5506", (decimal?)-3530.21875, (decimal?)-197.625, (decimal?)27595.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24953, Nebula.NebulaType.Planetary, "Systimbo JM-W e1-4178", 4, true, "Systimbo JM-W e1-4178", (decimal?)-3713.09375, (decimal?)-1235.3125, (decimal?)27444.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24954, Nebula.NebulaType.Planetary, "Systimbo LX-T e3-6592", 4, true, "Systimbo LX-T e3-6592", (decimal?)-3089.8125, (decimal?)-455.71875, (decimal?)27855.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24955, Nebula.NebulaType.Planetary, "Systimbo sy-r e4-3029", 4, true, "Systimbo SY-R e4-3029", (decimal?)-2865.375, (decimal?)-537.5, (decimal?)28027, (int)10 )); + AllOfThem.Add(new Nebula( 24956, Nebula.NebulaType.Planetary, "Systimbo ZA-O e6-1528", 4, true, "Systimbo ZA-O e6-1528", (decimal?)-3598.90625, (decimal?)-950.125, (decimal?)28257.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24957, Nebula.NebulaType.Planetary, "Systimbo ZK-P e5-3165", 4, true, "Systimbo ZK-P e5-3165", (decimal?)-3671.3125, (decimal?)-1154.53125, (decimal?)28083.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24977, Nebula.NebulaType.Planetary, "Tepo XP-X e1-3474", 4, true, "Tepo XP-X e1-3474", (decimal?)-3742.1875, (decimal?)-1543.46875, (decimal?)23614.625, (int)10 )); + AllOfThem.Add(new Nebula( 25008, Nebula.NebulaType.Planetary, "Theemeia FW-W e1-2150", 4, true, "Theemeia FW-W e1-2150", (decimal?)-4915.59375, (decimal?)1629.90625, (decimal?)23656.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25009, Nebula.NebulaType.Planetary, "Theemeia lx-u e2-3292", 4, true, "Theemeia LX-U e2-3292", (decimal?)-4947.03125, (decimal?)1565.59375, (decimal?)23791.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25012, Nebula.NebulaType.Planetary, "Throets DL-P e5-1940", 4, true, "Throets DL-P e5-1940", (decimal?)-8095.90625, (decimal?)1333.90625, (decimal?)20453.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25025, Nebula.NebulaType.Planetary, "Umbairrs BK-A e9375", 4, true, "Umbairrs BK-A e9375", (decimal?)-3021.84375, (decimal?)-897.78125, (decimal?)29701.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25026, Nebula.NebulaType.Planetary, "Umbairrs GW-W E1-1646", 4, true, "Umbairrs GW-W e1-1646", (decimal?)-3544.96875, (decimal?)-884.15625, (decimal?)30129.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25027, Nebula.NebulaType.Planetary, "Umbairrs OI-T e3-4145", 4, true, "Umbairrs OI-T e3-4145", (decimal?)-3446.8125, (decimal?)-931.5625, (decimal?)30427.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25028, Nebula.NebulaType.Planetary, "Umbairrs PD-S E4-860", 4, true, "Umbairrs PD-S e4-860", (decimal?)-3040.28125, (decimal?)-495.6875, (decimal?)30546.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25029, Nebula.NebulaType.Planetary, "Umbairrs RY-A e6113", 4, true, "Umbairrs RY-A e6113", (decimal?)-3681, (decimal?)-450.40625, (decimal?)29700.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25030, Nebula.NebulaType.Planetary, "Umbairrs TY-R e4-2234", 4, true, "Umbairrs TY-R e4-2234", (decimal?)-2736.03125, (decimal?)-650.5625, (decimal?)30499.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25031, Nebula.NebulaType.Planetary, "Umbairrs VZ-P E5-1293", 4, true, "Umbairrs VZ-P e5-1293", (decimal?)-3394.625, (decimal?)-760.96875, (decimal?)30627.40625, (int)10 )); + AllOfThem.Add(new Nebula( 25032, Nebula.NebulaType.Planetary, "Umbairrs WT-A e2994", 4, true, "Umbairrs WT-A e2994", (decimal?)-3251.6875, (decimal?)-630.5625, (decimal?)29754.375, (int)10 )); + AllOfThem.Add(new Nebula( 25033, Nebula.NebulaType.Planetary, "Umbaiss AL-O e6-2003", 4, true, "Umbaiss AL-O e6-2003", (decimal?)-5415.96875, (decimal?)-565.65625, (decimal?)30844.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25034, Nebula.NebulaType.Planetary, "Umbaiss AL-X e1-8308", 4, true, "Umbaiss AL-X e1-8308", (decimal?)-6135.65625, (decimal?)-475.75, (decimal?)30071.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25035, Nebula.NebulaType.Planetary, "Umbaiss DG-O e6-2509", 4, true, "Umbaiss DG-O e6-2509", (decimal?)-5224.0625, (decimal?)-672.40625, (decimal?)30841.125, (int)10 )); + AllOfThem.Add(new Nebula( 25036, Nebula.NebulaType.Planetary, "Umbaiss PT-Q e5-2905", 4, true, "Umbaiss PT-Q e5-2905", (decimal?)-5637.28125, (decimal?)-26.15625, (decimal?)30633.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25037, Nebula.NebulaType.Planetary, "Umbaiss TU-O e6-4871", 4, true, "Umbaiss TU-O e6-4871", (decimal?)-5946.21875, (decimal?)-316, (decimal?)30814.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25038, Nebula.NebulaType.Planetary, "Umbaiss VT-R e4-7252", 4, true, "Umbaiss VT-R e4-7252", (decimal?)-5215.25, (decimal?)-705.09375, (decimal?)30481.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25039, Nebula.NebulaType.Planetary, "Umbaiss XK-O e6-5520", 4, true, "Umbaiss XK-O e6-5520", (decimal?)-5852.1875, (decimal?)-637.65625, (decimal?)30817.875, (int)10 )); + AllOfThem.Add(new Nebula( 25040, Nebula.NebulaType.Planetary, "Umbaiss XP-O e6-1307", 4, true, "Umbaiss XP-O e6-1307", (decimal?)-5579.0625, (decimal?)-469.15625, (decimal?)30797.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25041, Nebula.NebulaType.Planetary, "Umbaiss YK-X e1-9006", 4, true, "Umbaiss YK-X e1-9006", (decimal?)-6326.59375, (decimal?)-427.3125, (decimal?)29986.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25042, Nebula.NebulaType.Planetary, "Umbaiss ze-r e4-2339", 4, true, "Umbaiss ZE-R e4-2339", (decimal?)-5529.25, (decimal?)-1178.84375, (decimal?)30610.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25043, Nebula.NebulaType.Planetary, "Umbaist AB-O e6-9594", 4, true, "Umbaist AB-O e6-9594", (decimal?)-4737.3125, (decimal?)-912.0625, (decimal?)30777.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25044, Nebula.NebulaType.Planetary, "Umbaist AV-P e5-4660", 4, true, "Umbaist AV-P e5-4660", (decimal?)-4166.625, (decimal?)-881.71875, (decimal?)30671.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25045, Nebula.NebulaType.Planetary, "Umbaist AV-P e5-9313", 4, true, "Umbaist AV-P e5-9313", (decimal?)-4080.84375, (decimal?)-939.6875, (decimal?)30686.875, (int)10 )); + AllOfThem.Add(new Nebula( 25046, Nebula.NebulaType.Planetary, "Umbaist BW-N e6-6579", 4, true, "Umbaist BW-N e6-6579", (decimal?)-4895.6875, (decimal?)-1107.78125, (decimal?)30796.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25047, Nebula.NebulaType.Planetary, "Umbaist IM-V e2-1259", 4, true, "Umbaist IM-V e2-1259", (decimal?)-4449.90625, (decimal?)-626.1875, (decimal?)30148.125, (int)10 )); + AllOfThem.Add(new Nebula( 25048, Nebula.NebulaType.Planetary, "Umbaist IR-W e1-875", 4, true, "Umbaist IR-W e1-875", (decimal?)-4731.40625, (decimal?)-1127.09375, (decimal?)30082.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25049, Nebula.NebulaType.Planetary, "Umbaist PT-Q e5-1105", 4, true, "Umbaist PT-Q e5-1105", (decimal?)-4276.15625, (decimal?)-168.03125, (decimal?)30692.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25050, Nebula.NebulaType.Planetary, "Umbaist QD-B e4333", 4, true, "Umbaist QD-B e4333", (decimal?)-4753.5, (decimal?)-291.875, (decimal?)29751.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25051, Nebula.NebulaType.Planetary, "Umbaist QI-T e3-8259", 4, true, "Umbaist QI-T e3-8259", (decimal?)-4487.46875, (decimal?)-842.0625, (decimal?)30364.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25052, Nebula.NebulaType.Planetary, "Umbaist ST-A e6645", 4, true, "Umbaist ST-A e6645", (decimal?)-5058.40625, (decimal?)-623.5, (decimal?)29722.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25053, Nebula.NebulaType.Planetary, "Umbaist SZ-P e5-3937", 4, true, "Umbaist SZ-P e5-3937", (decimal?)-5137.65625, (decimal?)-824.5625, (decimal?)30695.375, (int)10 )); + AllOfThem.Add(new Nebula( 25054, Nebula.NebulaType.Planetary, "Umbaist TZ-P e5-1758", 4, true, "Umbaist TZ-P e5-1758", (decimal?)-4956.3125, (decimal?)-764.09375, (decimal?)30622.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25055, Nebula.NebulaType.Planetary, "Umbaist ZU-P e5-5947", 4, true, "Umbaist ZU-P e5-5947", (decimal?)-4272.65625, (decimal?)-869.8125, (decimal?)30769.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25056, Nebula.NebulaType.Planetary, "Umbaist ZU-P e5-8899", 4, true, "Umbaist ZU-P e5-8899", (decimal?)-4242.6875, (decimal?)-866.6875, (decimal?)30745.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25104, Nebula.NebulaType.Planetary, "Wepaa BQ-X e1-3388", 4, true, "Wepaa BQ-X e1-3388", (decimal?)-9477, (decimal?)-273.21875, (decimal?)23716.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25105, Nebula.NebulaType.Planetary, "Wepaa DH-U e3-586", 4, true, "Wepaa DH-U e3-586", (decimal?)-9987.0625, (decimal?)-89.46875, (decimal?)23910.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25106, Nebula.NebulaType.Planetary, "Wepaa ER-V e2-1279", 4, true, "Wepaa ER-V e2-1279", (decimal?)-9978.03125, (decimal?)-382.40625, (decimal?)23853.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25107, Nebula.NebulaType.Planetary, "Wepaa FH-U e3-395", 4, true, "Wepaa FH-U e3-395", (decimal?)-9781.21875, (decimal?)-37.96875, (decimal?)24002.25, (int)10 )); + AllOfThem.Add(new Nebula( 25108, Nebula.NebulaType.Planetary, "Wepaa GQ-Y e46", 4, true, "Wepaa GQ-Y e46", (decimal?)-9221.1875, (decimal?)-831.65625, (decimal?)23472.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25109, Nebula.NebulaType.Planetary, "Wepaa km-v e2-7132", 4, true, "Wepaa KM-V e2-7132", (decimal?)-9264.5625, (decimal?)-519.625, (decimal?)23868.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25110, Nebula.NebulaType.Planetary, "Wepaa KX-T e3-5416", 4, true, "Wepaa KX-T e3-5416", (decimal?)-9544.875, (decimal?)-403.40625, (decimal?)24004.71875, (int)10 )); + AllOfThem.Add(new Nebula( 25111, Nebula.NebulaType.Planetary, "Wepaa MH-V e2-5352", 4, true, "Wepaa MH-V e2-5352", (decimal?)-9291.21875, (decimal?)-694.1875, (decimal?)23849.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25112, Nebula.NebulaType.Planetary, "Wepaa ST-R e4-2384", 4, true, "Wepaa ST-R e4-2384", (decimal?)-9611.8125, (decimal?)-780.21875, (decimal?)24136.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25113, Nebula.NebulaType.Planetary, "Wepaa sy-r e4-882", 4, true, "Wepaa SY-R e4-882", (decimal?)-9225.5625, (decimal?)-555.15625, (decimal?)24100.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25114, Nebula.NebulaType.Planetary, "Wepaa tt-a e92", 4, true, "Wepaa TT-A e92", (decimal?)-10105.875, (decimal?)-615.28125, (decimal?)23264.875, (int)10 )); + AllOfThem.Add(new Nebula( 25115, Nebula.NebulaType.Planetary, "Wepaa VU-O e6-4049", 4, true, "Wepaa VU-O e6-4049", (decimal?)-9495.46875, (decimal?)-316.875, (decimal?)24491.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25116, Nebula.NebulaType.Planetary, "Wepaa XJ-A e1881", 4, true, "Wepaa XJ-A e1881", (decimal?)-10133.4375, (decimal?)-975.6875, (decimal?)23265.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25117, Nebula.NebulaType.Planetary, "Wepaa XO-R e4-6219", 4, true, "Wepaa XO-R e4-6219", (decimal?)-9120.6875, (decimal?)-972.21875, (decimal?)24121.125, (int)10 )); + AllOfThem.Add(new Nebula( 25118, Nebula.NebulaType.Planetary, "Wepaa ZA-O e6-591", 4, true, "Wepaa ZA-O e6-591", (decimal?)-10059.25, (decimal?)-949.125, (decimal?)24523.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25119, Nebula.NebulaType.Planetary, "Wepaa ZF-O e6-437", 4, true, "Wepaa ZF-O e6-437", (decimal?)-9677.21875, (decimal?)-723.53125, (decimal?)24528.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25120, Nebula.NebulaType.Planetary, "Wepaa zz-y e5957", 4, true, "Wepaa ZZ-Y e5957", (decimal?)-9789.5, (decimal?)-655.9375, (decimal?)23435.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25121, Nebula.NebulaType.Planetary, "Wepae CA-Z e4233", 4, true, "Wepae CA-Z e4233", (decimal?)-5357.375, (decimal?)-518.9375, (decimal?)23426.375, (int)10 )); + AllOfThem.Add(new Nebula( 25122, Nebula.NebulaType.Planetary, "Wepae FB-W e2-3921", 4, true, "Wepae FB-W e2-3921", (decimal?)-5254.59375, (decimal?)-53.59375, (decimal?)23859.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25123, Nebula.NebulaType.Planetary, "Wepae LN-S e4-2509", 4, true, "Wepae LN-S e4-2509", (decimal?)-5619.3125, (decimal?)-74.53125, (decimal?)24198.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25124, Nebula.NebulaType.Planetary, "Wepae OT-R e4-8541", 4, true, "Wepae OT-R e4-8541", (decimal?)-6446.96875, (decimal?)-764.75, (decimal?)24149.40625, (int)10 )); + AllOfThem.Add(new Nebula( 25125, Nebula.NebulaType.Planetary, "Wepae UY-A e1543", 4, true, "Wepae UY-A e1543", (decimal?)-5811.25, (decimal?)-474.09375, (decimal?)23289.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25126, Nebula.NebulaType.Planetary, "Wepae VD-B e8178", 4, true, "Wepae VD-B e8178", (decimal?)-5227.15625, (decimal?)-300.5, (decimal?)23384.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25127, Nebula.NebulaType.Planetary, "Wepae XE-Q e5-236", 4, true, "Wepae XE-Q e5-236", (decimal?)-5340.15625, (decimal?)-651.625, (decimal?)24327.25, (int)10 )); + AllOfThem.Add(new Nebula( 25128, Nebula.NebulaType.Planetary, "Wepae YJ-A e5089", 4, true, "Wepae YJ-A e5089", (decimal?)-6128.28125, (decimal?)-938.90625, (decimal?)23296.875, (int)10 )); + AllOfThem.Add(new Nebula( 25180, Nebula.NebulaType.Planetary, "Wepooe AA-Z e1972", 4, true, "Wepooe AA-Z e1972", (decimal?)-4410.53125, (decimal?)-589.78125, (decimal?)23524.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25181, Nebula.NebulaType.Planetary, "Wepooe BG-X e1-6558", 4, true, "Wepooe BG-X e1-6558", (decimal?)-4968.28125, (decimal?)-578.3125, (decimal?)23659.625, (int)10 )); + AllOfThem.Add(new Nebula( 25182, Nebula.NebulaType.Planetary, "Wepooe FB-O e6-5073", 4, true, "Wepooe FB-O e6-5073", (decimal?)-3938.96875, (decimal?)-956.5, (decimal?)24512.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25183, Nebula.NebulaType.Planetary, "Wepooe MC-V e2-2818", 4, true, "Wepooe MC-V e2-2818", (decimal?)-4478.53125, (decimal?)-921.40625, (decimal?)23835.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25184, Nebula.NebulaType.Planetary, "Wepooe NX-T e3-3253", 4, true, "Wepooe NX-T e3-3253", (decimal?)-4026.6875, (decimal?)-502, (decimal?)23895.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25185, Nebula.NebulaType.Planetary, "Wepooe QS-U e2-191", 4, true, "Wepooe QS-U e2-191", (decimal?)-4432.59375, (decimal?)-1285.4375, (decimal?)23812.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25186, Nebula.NebulaType.Planetary, "Wepooe VE-Z e230", 4, true, "Wepooe VE-Z e230", (decimal?)-4954.125, (decimal?)-358.375, (decimal?)23526.5, (int)10 )); + AllOfThem.Add(new Nebula( 25187, Nebula.NebulaType.Planetary, "Wepooe XO-A e9051", 4, true, "Wepooe XO-A e9051", (decimal?)-4640.1875, (decimal?)-741.46875, (decimal?)23370.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25188, Nebula.NebulaType.Planetary, "Wepua AL-O e6-5087", 4, true, "Wepua AL-O e6-5087", (decimal?)-7982.5625, (decimal?)-525.1875, (decimal?)24393.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25189, Nebula.NebulaType.Planetary, "Wepua GX-T e3-9924", 4, true, "Wepua GX-T e3-9924", (decimal?)-8887.59375, (decimal?)-412.96875, (decimal?)24003.125, (int)10 )); + AllOfThem.Add(new Nebula( 25190, Nebula.NebulaType.Planetary, "Wepua JC-V e2-3480", 4, true, "Wepua JC-V e2-3480", (decimal?)-8799.1875, (decimal?)-932.4375, (decimal?)23788.75, (int)10 )); + AllOfThem.Add(new Nebula( 25191, Nebula.NebulaType.Planetary, "Wepua KC-V E2-4988", 4, true, "Wepua KC-V e2-4988", (decimal?)-8563.46875, (decimal?)-922.28125, (decimal?)23741.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25192, Nebula.NebulaType.Planetary, "Wepua RD-S e4-5946", 4, true, "Wepua RD-S e4-5946", (decimal?)-7754.125, (decimal?)-411.65625, (decimal?)24096.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25193, Nebula.NebulaType.Planetary, "Wepua SZ-O e6-6784", 4, true, "Wepua SZ-O e6-6784", (decimal?)-8359.8125, (decimal?)-85.21875, (decimal?)24441.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25194, Nebula.NebulaType.Planetary, "Wepua TU-O e6-6305", 4, true, "Wepua TU-O e6-6305", (decimal?)-8517.6875, (decimal?)-208.28125, (decimal?)24448.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25195, Nebula.NebulaType.Planetary, "Wepua VP-O e6-2737", 4, true, "Wepua VP-O e6-2737", (decimal?)-8411.8125, (decimal?)-483.625, (decimal?)24389.375, (int)10 )); + AllOfThem.Add(new Nebula( 25196, Nebula.NebulaType.Planetary, "Wepua WT-A e7860", 4, true, "Wepua WT-A e7860", (decimal?)-8367.46875, (decimal?)-619.65625, (decimal?)23407.875, (int)10 )); + AllOfThem.Add(new Nebula( 25213, Nebula.NebulaType.Planetary, "WHAMBIO BL-O E6-6996", 4, true, "Whambio BL-O e6-6996", (decimal?)-4058.9375, (decimal?)720.875, (decimal?)19373.875, (int)10 )); + AllOfThem.Add(new Nebula( 25214, Nebula.NebulaType.Planetary, "WHAMBIO CV-Y E7152", 4, true, "Whambio CV-Y e7152", (decimal?)-4471.90625, (decimal?)475.1875, (decimal?)18295.5, (int)10 )); + AllOfThem.Add(new Nebula( 25215, Nebula.NebulaType.Planetary, "Whambio ER-V e2-4320", 4, true, "Whambio ER-V e2-4320", (decimal?)-4746.625, (decimal?)835.6875, (decimal?)18724.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25216, Nebula.NebulaType.Planetary, "Whambio GL-Y E9088", 4, true, "Whambio GL-Y e9088", (decimal?)-4475.03125, (decimal?)192.59375, (decimal?)18408, (int)10 )); + AllOfThem.Add(new Nebula( 25217, Nebula.NebulaType.Planetary, "Whambio GW-W e1-6345", 4, true, "Whambio GW-W e1-6345", (decimal?)-4862.96875, (decimal?)382.625, (decimal?)18479.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25218, Nebula.NebulaType.Planetary, "Whambio HW-W e1-9584", 4, true, "Whambio HW-W e1-9584", (decimal?)-4632.75, (decimal?)434.09375, (decimal?)18491.875, (int)10 )); + AllOfThem.Add(new Nebula( 25219, Nebula.NebulaType.Planetary, "WHAMBIO QN-T E3-8227", 4, true, "Whambio QN-T e3-8227", (decimal?)-4148.59375, (decimal?)612.3125, (decimal?)18846.40625, (int)10 )); + AllOfThem.Add(new Nebula( 25220, Nebula.NebulaType.Planetary, "Whambio tj-q e5-5421", 4, true, "Whambio TJ-Q e5-5421", (decimal?)-4370.71875, (decimal?)799.03125, (decimal?)19238.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25221, Nebula.NebulaType.Planetary, "WHAMBIO TY-R E4-3228", 4, true, "Whambio TY-R e4-3228", (decimal?)-4023.8125, (decimal?)708.75, (decimal?)18950.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25222, Nebula.NebulaType.Planetary, "WHAMBIO YZ-P E5-775", 4, true, "Whambio YZ-P e5-775", (decimal?)-4161.6875, (decimal?)569.46875, (decimal?)19139.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25223, Nebula.NebulaType.Planetary, "Whamboe AF-Z e5031", 4, true, "Whamboe AF-Z e5031", (decimal?)-5463.78125, (decimal?)911.09375, (decimal?)18321.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25224, Nebula.NebulaType.Planetary, "Whamboe AK-A e10768", 4, true, "Whamboe AK-A e10768", (decimal?)-5685.71875, (decimal?)337.4375, (decimal?)18157.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25225, Nebula.NebulaType.Planetary, "Whamboe AK-A e8204", 4, true, "Whamboe AK-A e8204", (decimal?)-5698.03125, (decimal?)319.75, (decimal?)18237.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25226, Nebula.NebulaType.Planetary, "Whamboe FG-Y e9917", 4, true, "Whamboe FG-Y e9917", (decimal?)-6222.03125, (decimal?)78.65625, (decimal?)18387.625, (int)10 )); + AllOfThem.Add(new Nebula( 25227, Nebula.NebulaType.Planetary, "Whamboe HW-W E1-5751", 4, true, "Whamboe HW-W e1-5751", (decimal?)-5844.21875, (decimal?)378.96875, (decimal?)18548.625, (int)10 )); + AllOfThem.Add(new Nebula( 25228, Nebula.NebulaType.Planetary, "Whamboe IR-N e6-2102", 4, true, "Whamboe IR-N e6-2102", (decimal?)-5456.5625, (decimal?)-9, (decimal?)19390.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25229, Nebula.NebulaType.Planetary, "Whamboe ON-T e3-7414", 4, true, "Whamboe ON-T e3-7414", (decimal?)-5806, (decimal?)573.59375, (decimal?)18799.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25230, Nebula.NebulaType.Planetary, "Whamboe PI-T e3-1283", 4, true, "Whamboe PI-T e3-1283", (decimal?)-5903.21875, (decimal?)393.3125, (decimal?)18897, (int)10 )); + AllOfThem.Add(new Nebula( 25231, Nebula.NebulaType.Planetary, "Whamboe QE-Q e5-1070", 4, true, "Whamboe QE-Q e5-1070", (decimal?)-6455.53125, (decimal?)656.25, (decimal?)19229.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25232, Nebula.NebulaType.Planetary, "Whamboe QE-Q e5-5260", 4, true, "Whamboe QE-Q e5-5260", (decimal?)-6314.96875, (decimal?)634.6875, (decimal?)19107.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25233, Nebula.NebulaType.Planetary, "Whamboe RN-T e3-2850", 4, true, "Whamboe RN-T e3-2850", (decimal?)-5344.0625, (decimal?)552.5, (decimal?)18921.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25234, Nebula.NebulaType.Planetary, "Whamboe XO-R e4-1721", 4, true, "Whamboe XO-R e4-1721", (decimal?)-5260.1875, (decimal?)297.15625, (decimal?)19056.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25235, Nebula.NebulaType.Planetary, "Whamboe XU-O E6-3044", 4, true, "Whamboe XU-O e6-3044", (decimal?)-5204.875, (decimal?)1005.53125, (decimal?)19358.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25252, Nebula.NebulaType.Planetary, "Whanee AF-A e3282", 4, true, "Whanee AF-A e3282", (decimal?)-7268.15625, (decimal?)161.125, (decimal?)18152.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25253, Nebula.NebulaType.Planetary, "Whanee AL-X e1-6960", 4, true, "Whanee AL-X e1-6960", (decimal?)-7308.5625, (decimal?)856.78125, (decimal?)18590.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25254, Nebula.NebulaType.Planetary, "Whanee BQ-P e5-326", 4, true, "Whanee BQ-P e5-326", (decimal?)-6926.71875, (decimal?)219.125, (decimal?)19118.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25255, Nebula.NebulaType.Planetary, "Whanee FR-N e6-1946", 4, true, "Whanee FR-N e6-1946", (decimal?)-7190.25, (decimal?)-0.125, (decimal?)19335.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25256, Nebula.NebulaType.Planetary, "Whanee GR-W e1-3999", 4, true, "Whanee GR-W e1-3999", (decimal?)-7597.3125, (decimal?)207.625, (decimal?)18604.875, (int)10 )); + AllOfThem.Add(new Nebula( 25257, Nebula.NebulaType.Planetary, "Whanee MD-S e4-883", 4, true, "Whanee MD-S e4-883", (decimal?)-7423.375, (decimal?)895.125, (decimal?)19071.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25258, Nebula.NebulaType.Planetary, "Whanee NS-T e3-6204", 4, true, "Whanee NS-T e3-6204", (decimal?)-6913.9375, (decimal?)628.6875, (decimal?)18891.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25260, Nebula.NebulaType.Planetary, "Whanee PS-U e2-7854", 4, true, "Whanee PS-U e2-7854", (decimal?)-7201.9375, (decimal?)63.40625, (decimal?)18688.375, (int)10 )); + AllOfThem.Add(new Nebula( 25262, Nebula.NebulaType.Planetary, "Whanee UE-Q e5-8603", 4, true, "Whanee UE-Q e5-8603", (decimal?)-6971.4375, (decimal?)748.96875, (decimal?)19120.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25263, Nebula.NebulaType.Planetary, "Whanee YE-Z e2923", 4, true, "Whanee YE-Z e2923", (decimal?)-7072.59375, (decimal?)792.5625, (decimal?)18378.375, (int)10 )); + AllOfThem.Add(new Nebula( 25266, Nebula.NebulaType.Planetary, "Wrupeae QI-B e2052", 4, true, "Wrupeae QI-B e2052", (decimal?)-4457.71875, (decimal?)-1356.1875, (decimal?)28388.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25267, Nebula.NebulaType.Planetary, "Wrupu TZ-O e6-3971", 4, true, "Wrupu TZ-O e6-3971", (decimal?)-3017.09375, (decimal?)-1457.8125, (decimal?)29617.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25268, Nebula.NebulaType.Planetary, "Wrupu UO-Z e389", 4, true, "Wrupu UO-Z e389", (decimal?)-3216.625, (decimal?)-1432.21875, (decimal?)28604.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25269, Nebula.NebulaType.Planetary, "Wrupu VE-Z e529", 4, true, "Wrupu VE-Z e529", (decimal?)-3647.03125, (decimal?)-1767.90625, (decimal?)28666.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25270, Nebula.NebulaType.Planetary, "Wrupu VE-Z e855", 4, true, "Wrupu VE-Z e855", (decimal?)-3606.375, (decimal?)-1670.125, (decimal?)28586.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25273, Nebula.NebulaType.Planetary, "Xothuia UD-T e3-107", 4, true, "Xothuia UD-T e3-107", (decimal?)-6630.34375, (decimal?)220.34375, (decimal?)30452.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25274, Nebula.NebulaType.Planetary, "Xothuia xo-r e4-892", 4, true, "Xothuia XO-R e4-892", (decimal?)-6501.84375, (decimal?)316.96875, (decimal?)30483.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25278, Nebula.NebulaType.Planetary, "Zunai DL-Y e2357", 4, true, "Zunai DL-Y e2357", (decimal?)-7451.9375, (decimal?)286.84375, (decimal?)23498.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25279, Nebula.NebulaType.Planetary, "Zunai DL-Y e8923", 4, true, "Zunai DL-Y e8923", (decimal?)-7566.34375, (decimal?)179.375, (decimal?)23447.875, (int)10 )); + AllOfThem.Add(new Nebula( 25280, Nebula.NebulaType.Planetary, "Zunai HX-T e3-5518", 4, true, "Zunai HX-T e3-5518", (decimal?)-7449.15625, (decimal?)880.6875, (decimal?)23978.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25281, Nebula.NebulaType.Planetary, "Zunai IR-W e1-5130", 4, true, "Zunai IR-W e1-5130", (decimal?)-7275, (decimal?)149.03125, (decimal?)23709.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25282, Nebula.NebulaType.Planetary, "Zunai KD-S e4-5464", 4, true, "Zunai KD-S e4-5464", (decimal?)-7681.28125, (decimal?)801.15625, (decimal?)24096.5, (int)10 )); + AllOfThem.Add(new Nebula( 25283, Nebula.NebulaType.Planetary, "Zunai OJ-Q e5-6753", 4, true, "Zunai OJ-Q e5-6753", (decimal?)-7598.78125, (decimal?)856.75, (decimal?)24279.75, (int)10 )); + AllOfThem.Add(new Nebula( 25284, Nebula.NebulaType.Planetary, "Zunai QI-T e3-7381", 4, true, "Zunai QI-T e3-7381", (decimal?)-7012.53125, (decimal?)360.375, (decimal?)23903.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25285, Nebula.NebulaType.Planetary, "Zunai sd-b e7221", 4, true, "Zunai SD-B e7221", (decimal?)-7008.65625, (decimal?)1041.5, (decimal?)23279.875, (int)10 )); + AllOfThem.Add(new Nebula( 25286, Nebula.NebulaType.Planetary, "Zunai WP-O e6-5181", 4, true, "Zunai WP-O e6-5181", (decimal?)-7078.75, (decimal?)835.875, (decimal?)24492.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25322, Nebula.NebulaType.Planetary, "Zuniae HG-Y e2036", 4, true, "Zuniae HG-Y e2036", (decimal?)-4593.5625, (decimal?)-19.53125, (decimal?)23507.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25323, Nebula.NebulaType.Planetary, "Zuniae LD-S e4-7912", 4, true, "Zuniae LD-S e4-7912", (decimal?)-5017.71875, (decimal?)825.0625, (decimal?)24145.5, (int)10 )); + AllOfThem.Add(new Nebula( 25324, Nebula.NebulaType.Planetary, "Zuniae MM-W e1-321", 4, true, "Zuniae MM-W e1-321", (decimal?)-4509.5, (decimal?)49.40625, (decimal?)23720.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25325, Nebula.NebulaType.Planetary, "Zuniae OS-T e3-7708", 4, true, "Zuniae OS-T e3-7708", (decimal?)-4139.6875, (decimal?)745.53125, (decimal?)23912.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25326, Nebula.NebulaType.Planetary, "Zuniae OZ-O e6-3409", 4, true, "Zuniae OZ-O e6-3409", (decimal?)-5169.3125, (decimal?)1171.71875, (decimal?)24415.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25327, Nebula.NebulaType.Planetary, "Zuniae PI-T e3-6765", 4, true, "Zuniae PI-T e3-6765", (decimal?)-4545.375, (decimal?)375.375, (decimal?)23903.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25328, Nebula.NebulaType.Planetary, "Zuniae SY-A e2233", 4, true, "Zuniae SY-A e2233", (decimal?)-4843.96875, (decimal?)811.125, (decimal?)23267.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25329, Nebula.NebulaType.Planetary, "Zuniae ZO-A e1733", 4, true, "Zuniae ZO-A e1733", (decimal?)-4284.5, (decimal?)572.5625, (decimal?)23402.25, (int)10 )); + AllOfThem.Add(new Nebula( 25331, Nebula.NebulaType.Planetary, "Zunoae AF-A e2855", 4, true, "Zunoae AF-A e2855", (decimal?)-3513.5625, (decimal?)210.125, (decimal?)23414.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25332, Nebula.NebulaType.Planetary, "Zunoae FA-A e8326", 4, true, "Zunoae FA-A e8326", (decimal?)-3088.1875, (decimal?)130.90625, (decimal?)23275.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25333, Nebula.NebulaType.Planetary, "Zunoae MN-T e3-1328", 4, true, "Zunoae MN-T e3-1328", (decimal?)-3518.90625, (decimal?)469.21875, (decimal?)24012.625, (int)10 )); + AllOfThem.Add(new Nebula( 25334, Nebula.NebulaType.Planetary, "Zunoae MX-U e2-5738", 4, true, "Zunoae MX-U e2-5738", (decimal?)-3430.28125, (decimal?)221.125, (decimal?)23767.71875, (int)10 )); + AllOfThem.Add(new Nebula( 25336, Nebula.NebulaType.Planetary, "Zunoae OD-T e3-9556", 4, true, "Zunoae OD-T e3-9556", (decimal?)-3780.6875, (decimal?)228.8125, (decimal?)23968.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25337, Nebula.NebulaType.Planetary, "Zunoae PI-T e3-5471", 4, true, "Zunoae PI-T e3-5471", (decimal?)-3347.25, (decimal?)400.15625, (decimal?)23926.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25338, Nebula.NebulaType.Planetary, "Zunoae UU-P e5-1032", 4, true, "Zunoae UU-P e5-1032", (decimal?)-3863.40625, (decimal?)339.84375, (decimal?)24354.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25339, Nebula.NebulaType.Planetary, "Zunoae ve-q e5-3541", 4, true, "Zunoae VE-Q e5-3541", (decimal?)-3100.625, (decimal?)763.40625, (decimal?)24363.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25340, Nebula.NebulaType.Planetary, "Zunoae VJ-R e4-5878", 4, true, "Zunoae VJ-R e4-5878", (decimal?)-3363.84375, (decimal?)180.96875, (decimal?)24170.625, (int)10 )); + AllOfThem.Add(new Nebula( 25342, Nebula.NebulaType.Planetary, "Zunoae WP-P e5-1826", 4, true, "Zunoae WP-P e5-1826", (decimal?)-3752.5, (decimal?)218.90625, (decimal?)24270.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25343, Nebula.NebulaType.Planetary, "Zunoae XE-R e4-5258", 4, true, "Zunoae XE-R e4-5258", (decimal?)-3361.8125, (decimal?)20.375, (decimal?)24137.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25344, Nebula.NebulaType.Planetary, "Zunoae XJ-A e3415", 4, true, "Zunoae XJ-A e3415", (decimal?)-3711.09375, (decimal?)376.9375, (decimal?)23400, (int)10 )); + AllOfThem.Add(new Nebula( 25345, Nebula.NebulaType.Planetary, "Zunoae YE-R e4-2610", 4, true, "Zunoae YE-R e4-2610", (decimal?)-3249, (decimal?)58.09375, (decimal?)24210.375, (int)10 )); + AllOfThem.Add(new Nebula( 25346, Nebula.NebulaType.Planetary, "Zunoae YJ-A e5560", 4, true, "Zunoae YJ-A e5560", (decimal?)-3487.4375, (decimal?)389.59375, (decimal?)23410.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25348, Nebula.NebulaType.Planetary, "Zunoae ZZ-Y e5237", 4, true, "Zunoae ZZ-Y e5237", (decimal?)-3298.59375, (decimal?)691.28125, (decimal?)23524.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25380, Nebula.NebulaType.Planetary, "Zunue BA-A e3650", 4, true, "Zunue BA-A e3650", (decimal?)-8837.96875, (decimal?)15.34375, (decimal?)23343.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25381, Nebula.NebulaType.Planetary, "Zunue BK-A e158", 4, true, "Zunue BK-A e158", (decimal?)-8135.65625, (decimal?)374.78125, (decimal?)23289.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25382, Nebula.NebulaType.Planetary, "Zunue EG-X e1-1796", 4, true, "Zunue EG-X e1-1796", (decimal?)-8336.3125, (decimal?)663.78125, (decimal?)23717.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25383, Nebula.NebulaType.Planetary, "Zunue IC-U e3-2534", 4, true, "Zunue IC-U e3-2534", (decimal?)-8363.96875, (decimal?)961.875, (decimal?)23928.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25384, Nebula.NebulaType.Planetary, "Zunue OT-R e4-2112", 4, true, "Zunue OT-R e4-2112", (decimal?)-8936.65625, (decimal?)546.34375, (decimal?)24142.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25385, Nebula.NebulaType.Planetary, "Zunue RE-Q e5-1983", 4, true, "Zunue RE-Q e5-1983", (decimal?)-8738.34375, (decimal?)773.375, (decimal?)24299.375, (int)10 )); + AllOfThem.Add(new Nebula( 25386, Nebula.NebulaType.Planetary, "Zunue SZ-P e5-5734", 4, true, "Zunue SZ-P e5-5734", (decimal?)-8965.75, (decimal?)457.03125, (decimal?)24240.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25387, Nebula.NebulaType.Planetary, "Zunue UE-Q e5-2365", 4, true, "Zunue UE-Q e5-2365", (decimal?)-8374.75, (decimal?)722.625, (decimal?)24374.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25388, Nebula.NebulaType.Planetary, "Zunue ZP-X e1-2273", 4, true, "Zunue ZP-X e1-2273", (decimal?)-8508.71875, (decimal?)1078, (decimal?)23661.9375, (int)10 )); + } + public static void init_Region_5() + { + AllOfThem.Add(new Nebula( 10037, Nebula.NebulaType.Standard, "Boepp AA-A h83", 5, true, "Boepp XA-D d13-1042", (decimal?)-446.53125, (decimal?)-534.625, (decimal?)16697.59375, (int)100 )); + AllOfThem.Add(new Nebula( 10038, Nebula.NebulaType.Standard, "Boewnst AA-A h118", 5, true, "Boewnst CV-P d5-912", (decimal?)-5784.8125, (decimal?)-1115.8125, (decimal?)16111, (int)100 )); + AllOfThem.Add(new Nebula( 10039, Nebula.NebulaType.Standard, "Byaa Ain AA-A h22", 5, true, "Byaa Ain XK-R c7-65", (decimal?)-4257.84375, (decimal?)1142.53125, (decimal?)15908.625, (int)100 )); + AllOfThem.Add(new Nebula( 10040, Nebula.NebulaType.Standard, "Byua Aim AA-A h16", 5, true, "Byua Aim NU-Q b34-79", (decimal?)-3156.78125, (decimal?)397.96875, (decimal?)16325.96875, (int)100 )); + AllOfThem.Add(new Nebula( 10041, Nebula.NebulaType.Standard, "Byua Aim AA-A h63", 5, true, "Byua Aim KT-F d12-381", (decimal?)-2937.40625, (decimal?)1163.65625, (decimal?)16664.15625, (int)100 )); + AllOfThem.Add(new Nebula( 10042, Nebula.NebulaType.Standard, "Eeshorks AA-A h15", 5, true, "Eeshorks ZK-B b2-9", (decimal?)1564.875, (decimal?)-782.875, (decimal?)16906.375, (int)100 )); + AllOfThem.Add(new Nebula( 10043, Nebula.NebulaType.Standard, "Eeshorps AA-A h80", 5, true, "Eeshorps FG-F b43-21", (decimal?)4039, (decimal?)-419.34375, (decimal?)17792.625, (int)100 )); + AllOfThem.Add(new Nebula( 10044, Nebula.NebulaType.Standard, "Eor Aoc AA-A h70", 5, true, "Eor Aoc NN-T e3-1114", (decimal?)2984.84375, (decimal?)507.34375, (decimal?)17651.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10045, Nebula.NebulaType.Standard, "Floalt AA-A h110", 5, true, "Floalt GO-G d11-9", (decimal?)-5004.78125, (decimal?)-551.6875, (decimal?)15326.78125, (int)100 )); + AllOfThem.Add(new Nebula( 10046, Nebula.NebulaType.Standard, "Floarks AA-A h77", 5, true, "Floarks NT-Z d13-668", (decimal?)-3343.90625, (decimal?)-1158.4375, (decimal?)15510.375, (int)100 )); + AllOfThem.Add(new Nebula( 10047, Nebula.NebulaType.Standard, "Floawns AA-A h359", 5, true, "Floawns LH-H b16-68", (decimal?)2447.28125, (decimal?)-120.8125, (decimal?)14642.75, (int)100 )); + AllOfThem.Add(new Nebula( 10048, Nebula.NebulaType.Standard, "Froarks AA-A h22", 5, true, "Froarks TO-M c9-143", (decimal?)-404.59375, (decimal?)886.71875, (decimal?)14724.25, (int)100 )); + AllOfThem.Add(new Nebula( 10049, Nebula.NebulaType.Standard, "Greae Phio AA-A h33", 5, true, "Greae Phio LS-L c23-221", (decimal?)1342.84375, (decimal?)-499.40625, (decimal?)16591.125, (int)100 )); + AllOfThem.Add(new Nebula( 10050, Nebula.NebulaType.Standard, "Greae Phoea AA-A h41", 5, true, "Greae Phoea QF-I c25-150", (decimal?)4824.59375, (decimal?)-466.78125, (decimal?)16657.15625, (int)100 )); + AllOfThem.Add(new Nebula( 10051, Nebula.NebulaType.Standard, "Gru Phio AA-A h52", 5, true, "Gru Phio GF-J b12-30", (decimal?)3389.75, (decimal?)-655.25, (decimal?)15836.28125, (int)100 )); + AllOfThem.Add(new Nebula( 10052, Nebula.NebulaType.Standard, "Iowhail AA-A h93", 5, true, "Iowhail UI-K d8-7646", (decimal?)-1648.78125, (decimal?)110.65625, (decimal?)16340.90625, (int)100 )); + AllOfThem.Add(new Nebula( 10053, Nebula.NebulaType.Standard, "Mynoaw AA-A h23", 5, true, "Mynoaw NY-K b37-55", (decimal?)4690.6875, (decimal?)-934.875, (decimal?)18940.34375, (int)100 )); + AllOfThem.Add(new Nebula( 10054, Nebula.NebulaType.Standard, "Mynoaw AA-A h80", 5, true, "Mynoaw HC-K d9-836", (decimal?)4706.6875, (decimal?)-570.09375, (decimal?)18984.625, (int)100 )); + AllOfThem.Add(new Nebula( 10055, Nebula.NebulaType.Standard, "Stranoa AA-A h3", 5, true, "Stranoa ST-Z c13-87", (decimal?)4261.28125, (decimal?)1306.03125, (decimal?)18743.125, (int)100 )); + AllOfThem.Add(new Nebula( 20266, Nebula.NebulaType.Planetary, "Blaa Phoe RO-Q e5-20", 5, true, "Blaa Phoe RO-Q e5-20", (decimal?)-5585.03125, (decimal?)-211.84375, (decimal?)15380.5, (int)10 )); + AllOfThem.Add(new Nebula( 20268, Nebula.NebulaType.Planetary, "Blae Eaec AW-N e6-1375", 5, true, "Blae Eaec AW-N e6-1375", (decimal?)-2476.1875, (decimal?)-1066.90625, (decimal?)15430.375, (int)10 )); + AllOfThem.Add(new Nebula( 20269, Nebula.NebulaType.Planetary, "Blae Eaec NT-Q e5-7621", 5, true, "Blae Eaec NT-Q e5-7621", (decimal?)-2027.6875, (decimal?)-42.25, (decimal?)15401.75, (int)10 )); + AllOfThem.Add(new Nebula( 20270, Nebula.NebulaType.Planetary, "Blae Eaec PY-R e4-2300", 5, true, "Blae Eaec PY-R e4-2300", (decimal?)-2060.21875, (decimal?)-598.21875, (decimal?)15122.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20271, Nebula.NebulaType.Planetary, "Blae Eaec QO-Z e335", 5, true, "Blae Eaec QO-Z e335", (decimal?)-2579.5625, (decimal?)-49.09375, (decimal?)14473.125, (int)10 )); + AllOfThem.Add(new Nebula( 20272, Nebula.NebulaType.Planetary, "Blae Eaec UD-B e2836", 5, true, "Blae Eaec UD-B e2836", (decimal?)-1647.15625, (decimal?)-248.03125, (decimal?)14436.875, (int)10 )); + AllOfThem.Add(new Nebula( 20274, Nebula.NebulaType.Planetary, "Blae Phoe ND-S e4-274", 5, true, "Blae Phoe ND-S e4-274", (decimal?)475.625, (decimal?)-493.875, (decimal?)15187.375, (int)10 )); + AllOfThem.Add(new Nebula( 20275, Nebula.NebulaType.Planetary, "Blae Phoe SO-Q e5-3806", 5, true, "Blae Phoe SO-Q e5-3806", (decimal?)897.5625, (decimal?)-282.25, (decimal?)15331.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20276, Nebula.NebulaType.Planetary, "Blae Phoe UU-O e6-3701", 5, true, "Blae Phoe UU-O e6-3701", (decimal?)715.625, (decimal?)-291.125, (decimal?)15498.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20280, Nebula.NebulaType.Planetary, "Blau Aihm ER-N e6-302", 5, true, "Blau Aihm ER-N e6-302", (decimal?)1599.53125, (decimal?)83.125, (decimal?)15462.5, (int)10 )); + AllOfThem.Add(new Nebula( 20281, Nebula.NebulaType.Planetary, "Blau Aihm HW-N e6-1951", 5, true, "Blau Aihm HW-N e6-1951", (decimal?)2354.53125, (decimal?)225.5, (decimal?)15526.125, (int)10 )); + AllOfThem.Add(new Nebula( 20282, Nebula.NebulaType.Planetary, "Blau Aihm KS-T e3-2193", 5, true, "Blau Aihm KS-T e3-2193", (decimal?)1615.4375, (decimal?)659.125, (decimal?)14950.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20283, Nebula.NebulaType.Planetary, "Blau Aihm SZ-P e5-108", 5, true, "Blau Aihm SZ-P e5-108", (decimal?)1342.6875, (decimal?)523.875, (decimal?)15299.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20284, Nebula.NebulaType.Planetary, "Blau Ais LM-W e1-34", 5, true, "Blau Ais LM-W e1-34", (decimal?)1815.65625, (decimal?)1402.78125, (decimal?)14679.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20297, Nebula.NebulaType.Planetary, "Bleia Phreia BQ-X e1-157", 5, true, "Bleia Phreia BQ-X e1-157", (decimal?)-464.5625, (decimal?)-1495.21875, (decimal?)14754.625, (int)10 )); + AllOfThem.Add(new Nebula( 20302, Nebula.NebulaType.Planetary, "Blo Aihm UY-S e3-92", 5, true, "Blo Aihm UY-S e3-92", (decimal?)3201.875, (decimal?)-24.1875, (decimal?)15042.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20311, Nebula.NebulaType.Planetary, "Blu Ain KC-U e3-1271", 5, true, "Blu Ain KC-U e3-1271", (decimal?)953.78125, (decimal?)941.875, (decimal?)15053.25, (int)10 )); + AllOfThem.Add(new Nebula( 20312, Nebula.NebulaType.Planetary, "Blu Ain LX-T e3-2671", 5, true, "Blu Ain LX-T e3-2671", (decimal?)832.65625, (decimal?)934.46875, (decimal?)15027.5, (int)10 )); + AllOfThem.Add(new Nebula( 20313, Nebula.NebulaType.Planetary, "Blu Ain NM-W e1-585", 5, true, "Blu Ain NM-W e1-585", (decimal?)877.1875, (decimal?)52.90625, (decimal?)14755.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20314, Nebula.NebulaType.Planetary, "Blu Ain TI-T e3-232", 5, true, "Blu Ain TI-T e3-232", (decimal?)1068.71875, (decimal?)296.28125, (decimal?)14978, (int)10 )); + AllOfThem.Add(new Nebula( 20315, Nebula.NebulaType.Planetary, "Blu Ain ZE-R e4-840", 5, true, "Blu Ain ZE-R e4-840", (decimal?)779.21875, (decimal?)28.28125, (decimal?)15222.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20330, Nebula.NebulaType.Planetary, "Boeft BV-X e1-797", 5, true, "Boeft BV-X e1-797", (decimal?)1160.1875, (decimal?)-77.59375, (decimal?)16008.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20331, Nebula.NebulaType.Planetary, "Boeft HW-V e2-309", 5, true, "Boeft HW-V e2-309", (decimal?)1190.78125, (decimal?)-322.1875, (decimal?)16211.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20332, Nebula.NebulaType.Planetary, "Boeft JR-W e1-77", 5, true, "Boeft JR-W e1-77", (decimal?)472.90625, (decimal?)-1063.90625, (decimal?)16028.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20333, Nebula.NebulaType.Planetary, "Boeft PI-B e7392", 5, true, "Boeft PI-B e7392", (decimal?)502.78125, (decimal?)-64.6875, (decimal?)15674.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20334, Nebula.NebulaType.Planetary, "Boeft SJ-Q e5-291", 5, true, "Boeft SJ-Q e5-291", (decimal?)649.40625, (decimal?)-383, (decimal?)16536.75, (int)10 )); + AllOfThem.Add(new Nebula( 20335, Nebula.NebulaType.Planetary, "Boeft VO-Z e626", 5, true, "Boeft VO-Z e626", (decimal?)778.125, (decimal?)-147.53125, (decimal?)15869.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20336, Nebula.NebulaType.Planetary, "Boeft YP-O e6-4942", 5, true, "Boeft YP-O e6-4942", (decimal?)953.125, (decimal?)-446.46875, (decimal?)16849.5, (int)10 )); + AllOfThem.Add(new Nebula( 20356, Nebula.NebulaType.Planetary, "Boepp CW-V e2-516", 5, true, "Boepp CW-V e2-516", (decimal?)-866.15625, (decimal?)-295.71875, (decimal?)16184.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20357, Nebula.NebulaType.Planetary, "Boepp FQ-Y e1949", 5, true, "Boepp FQ-Y e1949", (decimal?)-482.1875, (decimal?)-844.1875, (decimal?)15816, (int)10 )); + AllOfThem.Add(new Nebula( 20358, Nebula.NebulaType.Planetary, "Boepp QI-B e6205", 5, true, "Boepp QI-B e6205", (decimal?)-632.0625, (decimal?)-94.40625, (decimal?)15672.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20359, Nebula.NebulaType.Planetary, "Boepp SO-R e4-198", 5, true, "Boepp SO-R e4-198", (decimal?)-1013.5, (decimal?)-877.3125, (decimal?)16377.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20360, Nebula.NebulaType.Planetary, "Boepp UO-Z e4541", 5, true, "Boepp UO-Z e4541", (decimal?)-621.53125, (decimal?)-27.375, (decimal?)15737.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20361, Nebula.NebulaType.Planetary, "Boepp VJ-R e4-2283", 5, true, "Boepp VJ-R e4-2283", (decimal?)-745.875, (decimal?)-1091.4375, (decimal?)16496.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20362, Nebula.NebulaType.Planetary, "Boerth AV-P e5-2330", 5, true, "Boerth AV-P e5-2330", (decimal?)-4192.53125, (decimal?)-862.90625, (decimal?)16541.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20363, Nebula.NebulaType.Planetary, "Boerth BL-O e6-7230", 5, true, "Boerth BL-O e6-7230", (decimal?)-4049.28125, (decimal?)-644.4375, (decimal?)16823.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20364, Nebula.NebulaType.Planetary, "Boerth CW-V e2-425", 5, true, "Boerth CW-V e2-425", (decimal?)-4827.46875, (decimal?)-218.09375, (decimal?)16117.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20365, Nebula.NebulaType.Planetary, "Boerth IM-V e2-128", 5, true, "Boerth IM-V e2-128", (decimal?)-4471.625, (decimal?)-592.40625, (decimal?)16180.375, (int)10 )); + AllOfThem.Add(new Nebula( 20366, Nebula.NebulaType.Planetary, "Boerth SJ-Z e307", 5, true, "Boerth SJ-Z e307", (decimal?)-5084.40625, (decimal?)-316.90625, (decimal?)15890.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20367, Nebula.NebulaType.Planetary, "Boerth TU-O e6-1815", 5, true, "Boerth TU-O e6-1815", (decimal?)-4610.90625, (decimal?)-226.4375, (decimal?)16801, (int)10 )); + AllOfThem.Add(new Nebula( 20373, Nebula.NebulaType.Planetary, "Boeths AA-Z e626", 5, true, "Boeths AA-Z e626", (decimal?)-3193.40625, (decimal?)-625.9375, (decimal?)15854.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20374, Nebula.NebulaType.Planetary, "Boeths AB-W e2-328", 5, true, "Boeths AB-W e2-328", (decimal?)-3462.71875, (decimal?)-53.84375, (decimal?)16060.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20375, Nebula.NebulaType.Planetary, "Boeths DR-V e2-4435", 5, true, "Boeths DR-V e2-4435", (decimal?)-3613.09375, (decimal?)-485.09375, (decimal?)16195.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20376, Nebula.NebulaType.Planetary, "Boeths HR-V e2-138", 5, true, "Boeths HR-V e2-138", (decimal?)-3077.71875, (decimal?)-375.21875, (decimal?)16126.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20377, Nebula.NebulaType.Planetary, "Boeths KT-Q e5-601", 5, true, "Boeths KT-Q e5-601", (decimal?)-3829.65625, (decimal?)-183.90625, (decimal?)16590.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20378, Nebula.NebulaType.Planetary, "Boewnst EG-X e1-1951", 5, true, "Boewnst EG-X e1-1951", (decimal?)-5752.75, (decimal?)-623.6875, (decimal?)15907.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20379, Nebula.NebulaType.Planetary, "Boewnst EW-V e2-508", 5, true, "Boewnst EW-V e2-508", (decimal?)-5739.4375, (decimal?)-263.03125, (decimal?)16154.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20380, Nebula.NebulaType.Planetary, "Boewnst NI-S e4-718", 5, true, "Boewnst NI-S e4-718", (decimal?)-5556.21875, (decimal?)-237.25, (decimal?)16481.875, (int)10 )); + AllOfThem.Add(new Nebula( 20382, Nebula.NebulaType.Planetary, "Boewnst WO-Z e665", 5, true, "Boewnst WO-Z e665", (decimal?)-5379.90625, (decimal?)-161.875, (decimal?)15783.5, (int)10 )); + AllOfThem.Add(new Nebula( 20491, Nebula.NebulaType.Planetary, "Byaa Ain BA-A e236", 5, true, "Byaa Ain BA-A e236", (decimal?)-4932.5, (decimal?)-1, (decimal?)15674.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20492, Nebula.NebulaType.Planetary, "Byaa Ain DB-O e6-3798", 5, true, "Byaa Ain DB-O e6-3798", (decimal?)-4354.40625, (decimal?)304.71875, (decimal?)16726.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20493, Nebula.NebulaType.Planetary, "Byaa Ain NS-U e2-9553", 5, true, "Byaa Ain NS-U e2-9553", (decimal?)-4911.28125, (decimal?)22.25, (decimal?)16138.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20494, Nebula.NebulaType.Planetary, "Byaa Ain OM-W e1-893", 5, true, "Byaa Ain OM-W e1-893", (decimal?)-4219.03125, (decimal?)36.0625, (decimal?)15959.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20496, Nebula.NebulaType.Planetary, "Byeia Ain EQ-Y e2058", 5, true, "Byeia Ain EQ-Y e2058", (decimal?)578.875, (decimal?)351.25, (decimal?)15783.125, (int)10 )); + AllOfThem.Add(new Nebula( 20497, Nebula.NebulaType.Planetary, "Byeia Ain FL-P e5-388", 5, true, "Byeia Ain FL-P e5-388", (decimal?)1181.125, (decimal?)64.125, (decimal?)16609.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20498, Nebula.NebulaType.Planetary, "Byeia Ain IG-Y e2986", 5, true, "Byeia Ain IG-Y e2986", (decimal?)604.8125, (decimal?)45.0625, (decimal?)15876.125, (int)10 )); + AllOfThem.Add(new Nebula( 20499, Nebula.NebulaType.Planetary, "Byeia Ain XY-S e3-3791", 5, true, "Byeia Ain XY-S e3-3791", (decimal?)1157.25, (decimal?)-3.40625, (decimal?)16370.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20500, Nebula.NebulaType.Planetary, "Byoi Aihm NX-U e2-2576", 5, true, "Byoi Aihm NX-U e2-2576", (decimal?)1745.21875, (decimal?)173.5625, (decimal?)16059.25, (int)10 )); + AllOfThem.Add(new Nebula( 20501, Nebula.NebulaType.Planetary, "Byoi Aihm QD-T e3-529", 5, true, "Byoi Aihm QD-T e3-529", (decimal?)1558.25, (decimal?)194.34375, (decimal?)16276.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20502, Nebula.NebulaType.Planetary, "Byoi Aihm QO-R e4-1145", 5, true, "Byoi Aihm QO-R e4-1145", (decimal?)1312.1875, (decimal?)452.375, (decimal?)16431.125, (int)10 )); + AllOfThem.Add(new Nebula( 20503, Nebula.NebulaType.Planetary, "Byoi Aihm QO-R e4-4373", 5, true, "Byoi Aihm QO-R e4-4373", (decimal?)1363.78125, (decimal?)348.3125, (decimal?)16390.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20504, Nebula.NebulaType.Planetary, "Byoi Aihm UZ-P e5-92", 5, true, "Byoi Aihm UZ-P e5-92", (decimal?)1683.40625, (decimal?)580.59375, (decimal?)16663.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20505, Nebula.NebulaType.Planetary, "Byoi Aihm ZE-A e7724", 5, true, "Byoi Aihm ZE-A e7724", (decimal?)1442.90625, (decimal?)183.4375, (decimal?)15681.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20509, Nebula.NebulaType.Planetary, "Byoi Ain KC-U e3-114", 5, true, "Byoi Ain KC-U e3-114", (decimal?)-5438.59375, (decimal?)1035.8125, (decimal?)16246.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20510, Nebula.NebulaType.Planetary, "Byoi Ain LG-Y e7862", 5, true, "Byoi Ain LG-Y e7862", (decimal?)-5192.375, (decimal?)84.375, (decimal?)15817.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20512, Nebula.NebulaType.Planetary, "Byoi Ain WU-O e6-55", 5, true, "Byoi Ain WU-O e6-55", (decimal?)-5369.46875, (decimal?)1018.0625, (decimal?)16754.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20513, Nebula.NebulaType.Planetary, "Byoi Aip HQ-Y e56", 5, true, "Byoi Aip HQ-Y e56", (decimal?)4987.8125, (decimal?)355.0625, (decimal?)15830.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20514, Nebula.NebulaType.Planetary, "Byoi Aip TU-O e6-1139", 5, true, "Byoi Aip TU-O e6-1139", (decimal?)4315.3125, (decimal?)1094.03125, (decimal?)16713.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20639, Nebula.NebulaType.Planetary, "Byua Aim FB-O e6-5645", 5, true, "Byua Aim FB-O e6-5645", (decimal?)-2729.75, (decimal?)400.4375, (decimal?)16811.75, (int)10 )); + AllOfThem.Add(new Nebula( 20640, Nebula.NebulaType.Planetary, "Byua Aim MR-W e1-91", 5, true, "Byua Aim MR-W e1-91", (decimal?)-2881.125, (decimal?)270.875, (decimal?)15937.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20641, Nebula.NebulaType.Planetary, "Byua Aim NN-S e4-482", 5, true, "Byua Aim NN-S e4-482", (decimal?)-2655.9375, (decimal?)1141.6875, (decimal?)16426.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20642, Nebula.NebulaType.Planetary, "Byua Aim VO-A e90", 5, true, "Byua Aim VO-A e90", (decimal?)-3736.09375, (decimal?)613.21875, (decimal?)15694.25, (int)10 )); + AllOfThem.Add(new Nebula( 20643, Nebula.NebulaType.Planetary, "Byua Aim WY-S e3-959", 5, true, "Byua Aim WY-S e3-959", (decimal?)-2931.71875, (decimal?)24.53125, (decimal?)16272.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20644, Nebula.NebulaType.Planetary, "Byua Ain AA-Z e2197", 5, true, "Byua Ain AA-Z e2197", (decimal?)-551.53125, (decimal?)648.34375, (decimal?)15736.875, (int)10 )); + AllOfThem.Add(new Nebula( 20645, Nebula.NebulaType.Planetary, "Byua Ain DL-X e1-99", 5, true, "Byua Ain DL-X e1-99", (decimal?)-391.65625, (decimal?)779.03125, (decimal?)15994.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20646, Nebula.NebulaType.Planetary, "Byua Ain PO-Q e5-899", 5, true, "Byua Ain PO-Q e5-899", (decimal?)-820.09375, (decimal?)1093.90625, (decimal?)16550.25, (int)10 )); + AllOfThem.Add(new Nebula( 20647, Nebula.NebulaType.Planetary, "Byua Ain SD-B e2772", 5, true, "Byua Ain SD-B e2772", (decimal?)-578.28125, (decimal?)974.34375, (decimal?)15577.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20648, Nebula.NebulaType.Planetary, "Byua Ain ZU-P e5-355", 5, true, "Byua Ain ZU-P e5-355", (decimal?)-444.53125, (decimal?)363.0625, (decimal?)16585.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20827, Nebula.NebulaType.Planetary, "Dryaa Flyi SD-B e155", 5, true, "Dryaa Flyi SD-B e155", (decimal?)579.71875, (decimal?)-215.03125, (decimal?)18137.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20828, Nebula.NebulaType.Planetary, "Dryaa Flyi WT-A e2004", 5, true, "Dryaa Flyi WT-A e2004", (decimal?)722.8125, (decimal?)-610.1875, (decimal?)18226.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20830, Nebula.NebulaType.Planetary, "Dryaa Flyuae BF-Z e4512", 5, true, "Dryaa Flyuae BF-Z e4512", (decimal?)-1406.34375, (decimal?)-444.90625, (decimal?)18393.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20831, Nebula.NebulaType.Planetary, "Dryaa Flyuae CR-V e2-3083", 5, true, "Dryaa Flyuae CR-V e2-3083", (decimal?)-2566.71875, (decimal?)-393.28125, (decimal?)18648.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20832, Nebula.NebulaType.Planetary, "Dryaa Flyuae EV-Y e5532", 5, true, "Dryaa Flyuae EV-Y e5532", (decimal?)-1563.25, (decimal?)-756.71875, (decimal?)18428.25, (int)10 )); + AllOfThem.Add(new Nebula( 20836, Nebula.NebulaType.Planetary, "Dryaa Flyuae SY-A e2323", 5, true, "Dryaa Flyuae SY-A e2323", (decimal?)-2303.53125, (decimal?)-429.59375, (decimal?)18257.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20883, Nebula.NebulaType.Planetary, "Dryao Aoscs CL-P e5-3988", 5, true, "Dryao Aoscs CL-P e5-3988", (decimal?)-3174.03125, (decimal?)53.65625, (decimal?)19189.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20885, Nebula.NebulaType.Planetary, "Dryao Aoscs FW-W e1-5865", 5, true, "Dryao Aoscs FW-W e1-5865", (decimal?)-3718.34375, (decimal?)402.5625, (decimal?)18541.625, (int)10 )); + AllOfThem.Add(new Nebula( 20886, Nebula.NebulaType.Planetary, "Dryao Aoscs HR-V e2-3858", 5, true, "Dryao Aoscs HR-V e2-3858", (decimal?)-2989.75, (decimal?)837.5625, (decimal?)18732.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20887, Nebula.NebulaType.Planetary, "Dryao Aoscs IR-W e1-1162", 5, true, "Dryao Aoscs IR-W e1-1162", (decimal?)-3426.71875, (decimal?)230.5625, (decimal?)18555.125, (int)10 )); + AllOfThem.Add(new Nebula( 20888, Nebula.NebulaType.Planetary, "Dryao Aoscs NI-T e3-3734", 5, true, "Dryao Aoscs NI-T e3-3734", (decimal?)-3691.0625, (decimal?)400.96875, (decimal?)18832.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20889, Nebula.NebulaType.Planetary, "Dryao Aoscs QN-T e3-2929", 5, true, "Dryao Aoscs QN-T e3-2929", (decimal?)-2823.8125, (decimal?)523.28125, (decimal?)18874.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20891, Nebula.NebulaType.Planetary, "Dryao Aoscs QX-U e2-3123", 5, true, "Dryao Aoscs QX-U e2-3123", (decimal?)-2866.59375, (decimal?)189.4375, (decimal?)18756.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20892, Nebula.NebulaType.Planetary, "Dryao Aoscs RD-B e4945", 5, true, "Dryao Aoscs RD-B e4945", (decimal?)-3333.90625, (decimal?)964.15625, (decimal?)18150.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20893, Nebula.NebulaType.Planetary, "Dryao Aoscs RX-U e2-5317", 5, true, "Dryao Aoscs RX-U e2-5317", (decimal?)-2629, (decimal?)232.40625, (decimal?)18741.5, (int)10 )); + AllOfThem.Add(new Nebula( 20895, Nebula.NebulaType.Planetary, "Dryao Aoscs UT-R e4-6559", 5, true, "Dryao Aoscs UT-R e4-6559", (decimal?)-2828.4375, (decimal?)578.09375, (decimal?)19079.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20896, Nebula.NebulaType.Planetary, "Dryao Aoscs WJ-R e4-9465", 5, true, "Dryao Aoscs WJ-R e4-9465", (decimal?)-3253.59375, (decimal?)286.1875, (decimal?)19086.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20898, Nebula.NebulaType.Planetary, "Dryao Aoscs YK-O e6-7522", 5, true, "Dryao Aoscs YK-O e6-7522", (decimal?)-3260.46875, (decimal?)680.5, (decimal?)19286.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20899, Nebula.NebulaType.Planetary, "Dryao Aoscs ZO-A e5717", 5, true, "Dryao Aoscs ZO-A e5717", (decimal?)-3079.6875, (decimal?)574.53125, (decimal?)18191.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20902, Nebula.NebulaType.Planetary, "Dryao Aowsy MM-W e1-1264", 5, true, "Dryao Aowsy MM-W e1-1264", (decimal?)-653.75, (decimal?)37.40625, (decimal?)18557.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20904, Nebula.NebulaType.Planetary, "Dryao Aowsy XJ-Z e456", 5, true, "Dryao Aowsy XJ-Z e456", (decimal?)-516.5625, (decimal?)953.3125, (decimal?)18390.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20953, Nebula.NebulaType.Planetary, "Dryau Aowsy MR-W e1-1142", 5, true, "Dryau Aowsy MR-W e1-1142", (decimal?)917.9375, (decimal?)265.28125, (decimal?)18544.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20954, Nebula.NebulaType.Planetary, "Dryau Aowsy RX-U e2-2646", 5, true, "Dryau Aowsy RX-U e2-2646", (decimal?)1206.875, (decimal?)177.375, (decimal?)18628.75, (int)10 )); + AllOfThem.Add(new Nebula( 20957, Nebula.NebulaType.Planetary, "Dryau Aowsy XU-X e1-2902", 5, true, "Dryau Aowsy XU-X e1-2902", (decimal?)452.75, (decimal?)1097.59375, (decimal?)18506.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20995, Nebula.NebulaType.Planetary, "Dryau Scraa ZJ-A e1156", 5, true, "Dryau Scraa ZJ-A e1156", (decimal?)-2008.1875, (decimal?)1586.9375, (decimal?)18208.625, (int)10 )); + AllOfThem.Add(new Nebula( 20998, Nebula.NebulaType.Planetary, "Dryi Aoc LX-T e3-1383", 5, true, "Dryi Aoc LX-T e3-1383", (decimal?)3435, (decimal?)854.15625, (decimal?)18934.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20999, Nebula.NebulaType.Planetary, "Dryi Aoc NS-U e2-604", 5, true, "Dryi Aoc NS-U e2-604", (decimal?)2666.375, (decimal?)106.75, (decimal?)18658.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21002, Nebula.NebulaType.Planetary, "Dryi Aoc WT-A e823", 5, true, "Dryi Aoc WT-A e823", (decimal?)3181.375, (decimal?)634.0625, (decimal?)18198.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21575, Nebula.NebulaType.Planetary, "Eephaim AQ-X e1-1649", 5, true, "Eephaim AQ-X e1-1649", (decimal?)-4522.4375, (decimal?)-242.78125, (decimal?)17296.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21576, Nebula.NebulaType.Planetary, "Eephaim DG-O e6-5763", 5, true, "Eephaim DG-O e6-5763", (decimal?)-3964.5, (decimal?)-673.28125, (decimal?)18126.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21577, Nebula.NebulaType.Planetary, "Eephaim HW-V e2-8557", 5, true, "Eephaim HW-V e2-8557", (decimal?)-3935.78125, (decimal?)-217.46875, (decimal?)17488.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21584, Nebula.NebulaType.Planetary, "Eephaim WJ-Z e5574", 5, true, "Eephaim WJ-Z e5574", (decimal?)-4534.28125, (decimal?)-290.3125, (decimal?)17144.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21585, Nebula.NebulaType.Planetary, "Eephaim XO-A e4974", 5, true, "Eephaim XO-A e4974", (decimal?)-4658.6875, (decimal?)-736.09375, (decimal?)16980.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21587, Nebula.NebulaType.Planetary, "Eephaim ZZ-P e5-1881", 5, true, "Eephaim ZZ-P e5-1881", (decimal?)-4023.6875, (decimal?)-741.59375, (decimal?)17833.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21588, Nebula.NebulaType.Planetary, "Eephain AG-O e6-1706", 5, true, "Eephain AG-O e6-1706", (decimal?)-3243.1875, (decimal?)-821.40625, (decimal?)18120.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21589, Nebula.NebulaType.Planetary, "Eephain CA-Z e292", 5, true, "Eephain CA-Z e292", (decimal?)-2807.25, (decimal?)-544.875, (decimal?)17106.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21590, Nebula.NebulaType.Planetary, "Eephain DB-W e2-2711", 5, true, "Eephain DB-W e2-2711", (decimal?)-3058.46875, (decimal?)-83.125, (decimal?)17336.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21591, Nebula.NebulaType.Planetary, "Eephain LC-U e3-8828", 5, true, "Eephain LC-U e3-8828", (decimal?)-2784.0625, (decimal?)-313.3125, (decimal?)17625.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21592, Nebula.NebulaType.Planetary, "Eephain PZ-O e6-0", 5, true, "Eephain PZ-O e6-0", (decimal?)-3671.5625, (decimal?)-71.40625, (decimal?)18103.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21593, Nebula.NebulaType.Planetary, "Eephain QI-B e2019", 5, true, "Eephain QI-B e2019", (decimal?)-3107.5, (decimal?)-50.1875, (decimal?)16926.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21594, Nebula.NebulaType.Planetary, "Eephain QI-B e9972", 5, true, "Eephain QI-B e9972", (decimal?)-3170.28125, (decimal?)-143.5625, (decimal?)16944.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21595, Nebula.NebulaType.Planetary, "Eephain QO-R e4-6465", 5, true, "Eephain QO-R e4-6465", (decimal?)-3865.59375, (decimal?)-901.46875, (decimal?)17684.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21596, Nebula.NebulaType.Planetary, "Eephain RI-T e3-987", 5, true, "Eephain RI-T e3-987", (decimal?)-2969.78125, (decimal?)-943.8125, (decimal?)17585.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21597, Nebula.NebulaType.Planetary, "Eephain TD-B e2935", 5, true, "Eephain TD-B e2935", (decimal?)-2961.9375, (decimal?)-246.625, (decimal?)16991.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21598, Nebula.NebulaType.Planetary, "Eephain TO-Z e3475", 5, true, "Eephain TO-Z e3475", (decimal?)-3388.25, (decimal?)-162.96875, (decimal?)17109.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21599, Nebula.NebulaType.Planetary, "Eephain TP-O e6-750", 5, true, "Eephain TP-O e6-750", (decimal?)-3598.34375, (decimal?)-347.90625, (decimal?)18060.25, (int)10 )); + AllOfThem.Add(new Nebula( 21600, Nebula.NebulaType.Planetary, "Eephain UY-A e778", 5, true, "Eephain UY-A e778", (decimal?)-3216.0625, (decimal?)-439.46875, (decimal?)17001.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21601, Nebula.NebulaType.Planetary, "Eephain VT-R e4-4196", 5, true, "Eephain VT-R e4-4196", (decimal?)-2658.84375, (decimal?)-771.25, (decimal?)17698.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21602, Nebula.NebulaType.Planetary, "Eephain YJ-A e4726", 5, true, "Eephain YJ-A e4726", (decimal?)-3539.5625, (decimal?)-977.9375, (decimal?)16936.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21603, Nebula.NebulaType.Planetary, "Eephain ZA-W e2-7795", 5, true, "Eephain ZA-W e2-7795", (decimal?)-3630.1875, (decimal?)-154.9375, (decimal?)17487.875, (int)10 )); + AllOfThem.Add(new Nebula( 21604, Nebula.NebulaType.Planetary, "Eesholt DW-V e2-2310", 5, true, "Eesholt DW-V e2-2310", (decimal?)530, (decimal?)-334.8125, (decimal?)17483.25, (int)10 )); + AllOfThem.Add(new Nebula( 21605, Nebula.NebulaType.Planetary, "Eesholt FB-X e1-614", 5, true, "Eesholt FB-X e1-614", (decimal?)491.09375, (decimal?)-744.53125, (decimal?)17292.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21606, Nebula.NebulaType.Planetary, "Eesholt KR-W e1-2578", 5, true, "Eesholt KR-W e1-2578", (decimal?)683.125, (decimal?)-1069.53125, (decimal?)17267.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21607, Nebula.NebulaType.Planetary, "Eesholt SO-Q e5-5035", 5, true, "Eesholt SO-Q e5-5035", (decimal?)1029.125, (decimal?)-186.96875, (decimal?)17897.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21608, Nebula.NebulaType.Planetary, "Eesholt VO-Z e9368", 5, true, "Eesholt VO-Z e9368", (decimal?)879.28125, (decimal?)-126.21875, (decimal?)17041.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21609, Nebula.NebulaType.Planetary, "Eeshoqs AW-V e2-4918", 5, true, "Eeshoqs AW-V e2-4918", (decimal?)2649.40625, (decimal?)-243.6875, (decimal?)17470.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21610, Nebula.NebulaType.Planetary, "Eeshoqs CB-O e6-1555", 5, true, "Eeshoqs CB-O e6-1555", (decimal?)3225.125, (decimal?)-874.375, (decimal?)18008.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21611, Nebula.NebulaType.Planetary, "Eeshoqs HW-V e2-3", 5, true, "Eeshoqs HW-V e2-3", (decimal?)3627.34375, (decimal?)-338.15625, (decimal?)17358.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21612, Nebula.NebulaType.Planetary, "Eeshoqs NO-Q e5-182", 5, true, "Eeshoqs NO-Q e5-182", (decimal?)2697.6875, (decimal?)-275.40625, (decimal?)17931.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21613, Nebula.NebulaType.Planetary, "Eeshoqs UP-O e6-17", 5, true, "Eeshoqs UP-O e6-17", (decimal?)2858.40625, (decimal?)-378.21875, (decimal?)18047.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21614, Nebula.NebulaType.Planetary, "Eeshoqs VD-B e352", 5, true, "Eeshoqs VD-B e352", (decimal?)3670.53125, (decimal?)-219.9375, (decimal?)16914.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21615, Nebula.NebulaType.Planetary, "Eeshorks BQ-Y e35", 5, true, "Eeshorks BQ-Y e35", (decimal?)1467.1875, (decimal?)-962.71875, (decimal?)17110.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21616, Nebula.NebulaType.Planetary, "Eeshorks EH-U e3-7740", 5, true, "Eeshorks EH-U e3-7740", (decimal?)1606.09375, (decimal?)-103.40625, (decimal?)17527.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21617, Nebula.NebulaType.Planetary, "Eeshorks NI-S e4-30", 5, true, "Eeshorks NI-S e4-30", (decimal?)2063.34375, (decimal?)-293.5625, (decimal?)17671.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21618, Nebula.NebulaType.Planetary, "Eeshorks NN-S e4-1", 5, true, "Eeshorks NN-S e4-1", (decimal?)2341.75, (decimal?)-41.78125, (decimal?)17676.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21619, Nebula.NebulaType.Planetary, "Eeshorks VP-O e6-133", 5, true, "Eeshorks VP-O e6-133", (decimal?)1848.25, (decimal?)-384.28125, (decimal?)18027.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21620, Nebula.NebulaType.Planetary, "Eeshorps SP-O e6-253", 5, true, "Eeshorps SP-O e6-253", (decimal?)3801.15625, (decimal?)-495.46875, (decimal?)17976.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21621, Nebula.NebulaType.Planetary, "Eeshorps ZA-W e2-6380", 5, true, "Eeshorps ZA-W e2-6380", (decimal?)3942.125, (decimal?)-177.78125, (decimal?)17440.25, (int)10 )); + AllOfThem.Add(new Nebula( 21622, Nebula.NebulaType.Planetary, "Eeshorps ZP-X e1-281", 5, true, "Eeshorps ZP-X e1-281", (decimal?)4398.46875, (decimal?)-333.84375, (decimal?)17321.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21623, Nebula.NebulaType.Planetary, "Eeshovvy ER-V e2-3925", 5, true, "Eeshovvy ER-V e2-3925", (decimal?)-1004.84375, (decimal?)-368.15625, (decimal?)17451.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21624, Nebula.NebulaType.Planetary, "Eeshovvy FB-X e1-2582", 5, true, "Eeshovvy FB-X e1-2582", (decimal?)-741.09375, (decimal?)-756.84375, (decimal?)17243.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21625, Nebula.NebulaType.Planetary, "Eeshovvy FH-U e3-9530", 5, true, "Eeshovvy FH-U e3-9530", (decimal?)-803.96875, (decimal?)-146.40625, (decimal?)17604.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21626, Nebula.NebulaType.Planetary, "Eeshovvy HM-V e2-5932", 5, true, "Eeshovvy HM-V e2-5932", (decimal?)-788.90625, (decimal?)-614.875, (decimal?)17470.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21627, Nebula.NebulaType.Planetary, "Eeshovvy MI-S e4-4198", 5, true, "Eeshovvy MI-S e4-4198", (decimal?)-663, (decimal?)-337.40625, (decimal?)17704.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21628, Nebula.NebulaType.Planetary, "Eeshovvy NO-Q e5-8988", 5, true, "Eeshovvy NO-Q e5-8988", (decimal?)-1175.84375, (decimal?)-335.5625, (decimal?)17931.5, (int)10 )); + AllOfThem.Add(new Nebula( 21629, Nebula.NebulaType.Planetary, "Eeshovvy TP-O e6-9186", 5, true, "Eeshovvy TP-O e6-9186", (decimal?)-1101.03125, (decimal?)-480.3125, (decimal?)18079.125, (int)10 )); + AllOfThem.Add(new Nebula( 21630, Nebula.NebulaType.Planetary, "Eeshovvy UO-R e4-2789", 5, true, "Eeshovvy UO-R e4-2789", (decimal?)-601.6875, (decimal?)-962.5, (decimal?)17813.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21631, Nebula.NebulaType.Planetary, "Eeshovvy WK-O e6-206", 5, true, "Eeshovvy WK-O e6-206", (decimal?)-992, (decimal?)-610.90625, (decimal?)18071.75, (int)10 )); + AllOfThem.Add(new Nebula( 21831, Nebula.NebulaType.Planetary, "Eok Flyuae GH-V e2-1405", 5, true, "Eok Flyuae GH-V e2-1405", (decimal?)-2509.375, (decimal?)-775.46875, (decimal?)17448.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21832, Nebula.NebulaType.Planetary, "Eok Flyuae IB-X e1-529", 5, true, "Eok Flyuae IB-X e1-529", (decimal?)-1570.25, (decimal?)-799.75, (decimal?)17245.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21833, Nebula.NebulaType.Planetary, "Eok Flyuae II-S e4-4607", 5, true, "Eok Flyuae II-S e4-4607", (decimal?)-2588.25, (decimal?)-243.84375, (decimal?)17673.75, (int)10 )); + AllOfThem.Add(new Nebula( 21834, Nebula.NebulaType.Planetary, "Eok Flyuae KS-T e3-449", 5, true, "Eok Flyuae KS-T e3-449", (decimal?)-2250.28125, (decimal?)-647.5625, (decimal?)17581.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21835, Nebula.NebulaType.Planetary, "Eok Flyuae LD-S e4-154", 5, true, "Eok Flyuae LD-S e4-154", (decimal?)-2332.5625, (decimal?)-450.8125, (decimal?)17780.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21836, Nebula.NebulaType.Planetary, "Eok Flyuae MH-V e2-3834", 5, true, "Eok Flyuae MH-V e2-3834", (decimal?)-1662.59375, (decimal?)-714.34375, (decimal?)17396, (int)10 )); + AllOfThem.Add(new Nebula( 21837, Nebula.NebulaType.Planetary, "Eok Flyuae NN-T e3-5990", 5, true, "Eok Flyuae NN-T e3-5990", (decimal?)-2085.09375, (decimal?)-707.59375, (decimal?)17500.875, (int)10 )); + AllOfThem.Add(new Nebula( 21838, Nebula.NebulaType.Planetary, "Eok Flyuae OY-R e4-7268", 5, true, "Eok Flyuae OY-R e4-7268", (decimal?)-2161.96875, (decimal?)-639.5625, (decimal?)17672.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21839, Nebula.NebulaType.Planetary, "Eok Flyuae UO-Z e4232", 5, true, "Eok Flyuae UO-Z e4232", (decimal?)-1932.15625, (decimal?)-88.84375, (decimal?)17126.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21840, Nebula.NebulaType.Planetary, "Eok Flyuae WK-O e6-6972", 5, true, "Eok Flyuae WK-O e6-6972", (decimal?)-2240.40625, (decimal?)-521.625, (decimal?)18029.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21841, Nebula.NebulaType.Planetary, "Eok Flyuae XO-R e4-5021", 5, true, "Eok Flyuae XO-R e4-5021", (decimal?)-1455.25, (decimal?)-983.40625, (decimal?)17744.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21897, Nebula.NebulaType.Planetary, "Eor Aoc DR-V e2-64", 5, true, "Eor Aoc DR-V e2-64", (decimal?)2703.78125, (decimal?)777.03125, (decimal?)17356.625, (int)10 )); + AllOfThem.Add(new Nebula( 21898, Nebula.NebulaType.Planetary, "Eor Aoc EM-V e2-44", 5, true, "Eor Aoc EM-V e2-44", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 21899, Nebula.NebulaType.Planetary, "Eor Aoc FF-A e4029", 5, true, "Eor Aoc FF-A e4029", (decimal?)3702.4375, (decimal?)155.75, (decimal?)16998.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21900, Nebula.NebulaType.Planetary, "Eor Aoc OX-U e2-1864", 5, true, "Eor Aoc OX-U e2-1864", (decimal?)3289.4375, (decimal?)290.625, (decimal?)17439.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21901, Nebula.NebulaType.Planetary, "Eor Aoc PD-S e4-122", 5, true, "Eor Aoc PD-S e4-122", (decimal?)3440.1875, (decimal?)879.03125, (decimal?)17723.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21902, Nebula.NebulaType.Planetary, "Eor Aoc PJ-Q e5-222", 5, true, "Eor Aoc PJ-Q e5-222", (decimal?)2723.21875, (decimal?)924.21875, (decimal?)17822.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21903, Nebula.NebulaType.Planetary, "Eor Aoc QO-R e4-2602", 5, true, "Eor Aoc QO-R e4-2602", (decimal?)2509.4375, (decimal?)369.03125, (decimal?)17715.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21922, Nebula.NebulaType.Planetary, "Eor Aowsy EG-X e1-3189", 5, true, "Eor Aowsy EG-X e1-3189", (decimal?)-4430.15625, (decimal?)658.78125, (decimal?)17312.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21924, Nebula.NebulaType.Planetary, "Eor Aowsy FV-Y e2460", 5, true, "Eor Aowsy FV-Y e2460", (decimal?)-4009.21875, (decimal?)502.84375, (decimal?)17158.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21927, Nebula.NebulaType.Planetary, "Eor Aowsy HR-V e2-4431", 5, true, "Eor Aowsy HR-V e2-4431", (decimal?)-4266.875, (decimal?)886.375, (decimal?)17482.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21935, Nebula.NebulaType.Planetary, "Eor Aowsy OS-T e3-1923", 5, true, "Eor Aowsy OS-T e3-1923", (decimal?)-4101.125, (decimal?)693, (decimal?)17525.375, (int)10 )); + AllOfThem.Add(new Nebula( 21936, Nebula.NebulaType.Planetary, "Eor Aowsy PC-V e2-6846", 5, true, "Eor Aowsy PC-V e2-6846", (decimal?)-4024.46875, (decimal?)354.90625, (decimal?)17365.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21938, Nebula.NebulaType.Planetary, "Eor Aowsy UT-R e4-1455", 5, true, "Eor Aowsy UT-R e4-1455", (decimal?)-4170.625, (decimal?)477.21875, (decimal?)17659.875, (int)10 )); + AllOfThem.Add(new Nebula( 22091, Nebula.NebulaType.Planetary, "Eorl Aod DK-A e21", 5, true, "Eorl Aod DK-A e21", (decimal?)4941.40625, (decimal?)332.09375, (decimal?)16927.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22092, Nebula.NebulaType.Planetary, "Eorl Aod QE-Q e5-30", 5, true, "Eorl Aod QE-Q e5-30", (decimal?)3863.46875, (decimal?)685.53125, (decimal?)17854.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22093, Nebula.NebulaType.Planetary, "Eorl Aod UE-Z e41", 5, true, "Eorl Aod UE-Z e41", (decimal?)3900.0625, (decimal?)801.15625, (decimal?)17140.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22240, Nebula.NebulaType.Planetary, "Eorm Scrua EW-N e6-86", 5, true, "Eorm Scrua EW-N e6-86", (decimal?)-559, (decimal?)1450.375, (decimal?)18134.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22241, Nebula.NebulaType.Planetary, "Eos Aowsy DA-A e525", 5, true, "Eos Aowsy DA-A e525", (decimal?)433.8125, (decimal?)84.03125, (decimal?)16999.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22242, Nebula.NebulaType.Planetary, "Eos Aowsy DV-Y e235", 5, true, "Eos Aowsy DV-Y e235", (decimal?)848.46875, (decimal?)551.59375, (decimal?)17044.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22243, Nebula.NebulaType.Planetary, "Eos Aowsy IB-X e1-59", 5, true, "Eos Aowsy IB-X e1-59", (decimal?)1014.28125, (decimal?)541.96875, (decimal?)17183.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22244, Nebula.NebulaType.Planetary, "Eos Aowsy RJ-Q e5-369", 5, true, "Eos Aowsy RJ-Q e5-369", (decimal?)505.03125, (decimal?)852.15625, (decimal?)17865.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22325, Nebula.NebulaType.Planetary, "Eumols YE-A e805", 5, true, "Eumols YE-A e805", (decimal?)-3854.46875, (decimal?)1466.53125, (decimal?)16921.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22334, Nebula.NebulaType.Planetary, "Floalt EW-V e2-147", 5, true, "Floalt EW-V e2-147", (decimal?)-4489.25, (decimal?)-317.59375, (decimal?)14841.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22335, Nebula.NebulaType.Planetary, "Floalt IN-S e4-3866", 5, true, "Floalt IN-S e4-3866", (decimal?)-4737, (decimal?)-179.5, (decimal?)15227.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22336, Nebula.NebulaType.Planetary, "Floalt LI-S e4-156", 5, true, "Floalt LI-S e4-156", (decimal?)-4678.875, (decimal?)-334.40625, (decimal?)15149.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22337, Nebula.NebulaType.Planetary, "Floalt MN-S e4-120", 5, true, "Floalt MN-S e4-120", (decimal?)-4147.09375, (decimal?)-181.46875, (decimal?)15233.875, (int)10 )); + AllOfThem.Add(new Nebula( 22338, Nebula.NebulaType.Planetary, "Floalt RZ-O e6-556", 5, true, "Floalt RZ-O e6-556", (decimal?)-4665.34375, (decimal?)-164.125, (decimal?)15532.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22340, Nebula.NebulaType.Planetary, "Floalt WP-O e6-104", 5, true, "Floalt WP-O e6-104", (decimal?)-4515.03125, (decimal?)-376.375, (decimal?)15556.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22341, Nebula.NebulaType.Planetary, "Floalt XO-Z e5817", 5, true, "Floalt XO-Z e5817", (decimal?)-4027.9375, (decimal?)-127.1875, (decimal?)14528.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22342, Nebula.NebulaType.Planetary, "Floalt ZA-W e2-463", 5, true, "Floalt ZA-W e2-463", (decimal?)-4971.90625, (decimal?)-27.5, (decimal?)14783.875, (int)10 )); + AllOfThem.Add(new Nebula( 22343, Nebula.NebulaType.Planetary, "Floarks UJ-Z e5070", 5, true, "Floarks UJ-Z e5070", (decimal?)-3584.59375, (decimal?)-263.21875, (decimal?)14609.125, (int)10 )); + AllOfThem.Add(new Nebula( 22344, Nebula.NebulaType.Planetary, "Floarps BB-W e2-638", 5, true, "Floarps BB-W e2-638", (decimal?)-755.96875, (decimal?)-116.3125, (decimal?)14784.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22345, Nebula.NebulaType.Planetary, "Floarps PI-B e2", 5, true, "Floarps PI-B e2", (decimal?)-859.90625, (decimal?)-117.53125, (decimal?)14426.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22346, Nebula.NebulaType.Planetary, "Floarps QO-Q e5-4955", 5, true, "Floarps QO-Q e5-4955", (decimal?)-665.4375, (decimal?)-341.71875, (decimal?)15296.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22347, Nebula.NebulaType.Planetary, "Floarps SJ-Q e5-278", 5, true, "Floarps SJ-Q e5-278", (decimal?)-609.375, (decimal?)-457.4375, (decimal?)15375.25, (int)10 )); + AllOfThem.Add(new Nebula( 22348, Nebula.NebulaType.Planetary, "Floarps SJ-Z e63", 5, true, "Floarps SJ-Z e63", (decimal?)-1275.34375, (decimal?)-286.65625, (decimal?)14516.875, (int)10 )); + AllOfThem.Add(new Nebula( 22349, Nebula.NebulaType.Planetary, "Floarps YP-X e1-1418", 5, true, "Floarps YP-X e1-1418", (decimal?)-919.21875, (decimal?)-192.5625, (decimal?)14642.125, (int)10 )); + AllOfThem.Add(new Nebula( 22350, Nebula.NebulaType.Planetary, "Floawns CQ-Y e169", 5, true, "Floawns CQ-Y e169", (decimal?)1569.6875, (decimal?)-897.40625, (decimal?)14579.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22351, Nebula.NebulaType.Planetary, "Floawns UZ-P e5-2908", 5, true, "Floawns UZ-P e5-2908", (decimal?)1631.65625, (decimal?)-704.21875, (decimal?)15288.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22352, Nebula.NebulaType.Planetary, "Floawns WU-O e6-12", 5, true, "Floawns WU-O e6-12", (decimal?)2294.21875, (decimal?)-334.5, (decimal?)15493.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22380, Nebula.NebulaType.Planetary, "Foerst NX-U e2-588", 5, true, "Foerst NX-U e2-588", (decimal?)-829.25, (decimal?)1504.15625, (decimal?)16060.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22389, Nebula.NebulaType.Planetary, "Froags CL-P e5-6898", 5, true, "Froags CL-P e5-6898", (decimal?)-5750.34375, (decimal?)40.40625, (decimal?)15261.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22391, Nebula.NebulaType.Planetary, "Froags IR-N e6-186", 5, true, "Froags IR-N e6-186", (decimal?)-5402.75, (decimal?)88.03125, (decimal?)15440.875, (int)10 )); + AllOfThem.Add(new Nebula( 22393, Nebula.NebulaType.Planetary, "Froags TD-T e3-3706", 5, true, "Froags TD-T e3-3706", (decimal?)-5589.5625, (decimal?)157.21875, (decimal?)15085.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22400, Nebula.NebulaType.Planetary, "Froals VY-S e3-0", 5, true, "Froals VY-S e3-0", (decimal?)-4380.3125, (decimal?)-21.09375, (decimal?)14955.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22401, Nebula.NebulaType.Planetary, "Froalt MS-U e2-309", 5, true, "Froalt MS-U e2-309", (decimal?)-2488.375, (decimal?)66.625, (decimal?)14897.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22402, Nebula.NebulaType.Planetary, "Froalt MS-U e2-417", 5, true, "Froalt MS-U e2-417", (decimal?)-2601.96875, (decimal?)11.0625, (decimal?)14830.75, (int)10 )); + AllOfThem.Add(new Nebula( 22403, Nebula.NebulaType.Planetary, "Froalt UJ-R e4-172", 5, true, "Froalt UJ-R e4-172", (decimal?)-2196.78125, (decimal?)233.21875, (decimal?)15097.5, (int)10 )); + AllOfThem.Add(new Nebula( 22404, Nebula.NebulaType.Planetary, "Froalt XK-O e6-4137", 5, true, "Froalt XK-O e6-4137", (decimal?)-2106.3125, (decimal?)763.34375, (decimal?)15450.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22405, Nebula.NebulaType.Planetary, "Froarks DG-X e1-82", 5, true, "Froarks DG-X e1-82", (decimal?)-738.78125, (decimal?)738.90625, (decimal?)14739.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22406, Nebula.NebulaType.Planetary, "Froarks EL-Y e197", 5, true, "Froarks EL-Y e197", (decimal?)-877.9375, (decimal?)260.25, (decimal?)14526.875, (int)10 )); + AllOfThem.Add(new Nebula( 22407, Nebula.NebulaType.Planetary, "Froarks EL-Y e86", 5, true, "Froarks EL-Y e86", (decimal?)-960.34375, (decimal?)253.15625, (decimal?)14562.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22408, Nebula.NebulaType.Planetary, "Froarks XJ-R e4-1363", 5, true, "Froarks XJ-R e4-1363", (decimal?)-481.8125, (decimal?)198.03125, (decimal?)15101.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22415, Nebula.NebulaType.Planetary, "Froawns LH-V e2-24", 5, true, "Froawns LH-V e2-24", (decimal?)4719.59375, (decimal?)537.03125, (decimal?)14786.875, (int)10 )); + AllOfThem.Add(new Nebula( 22441, Nebula.NebulaType.Planetary, "Greae Phio DW-V e2-3079", 5, true, "Greae Phio DW-V e2-3079", (decimal?)1697.3125, (decimal?)-203.59375, (decimal?)16144.5, (int)10 )); + AllOfThem.Add(new Nebula( 22442, Nebula.NebulaType.Planetary, "Greae Phio PO-Q e5-2377", 5, true, "Greae Phio PO-Q e5-2377", (decimal?)1748.40625, (decimal?)-228.84375, (decimal?)16647.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22443, Nebula.NebulaType.Planetary, "Greae Phoea GG-X e1-64", 5, true, "Greae Phoea GG-X e1-64", (decimal?)4777.4375, (decimal?)-558.09375, (decimal?)15914.375, (int)10 )); + AllOfThem.Add(new Nebula( 22444, Nebula.NebulaType.Planetary, "Greae Phoea KT-Q e5-6686", 5, true, "Greae Phoea KT-Q e5-6686", (decimal?)3929.28125, (decimal?)-108.1875, (decimal?)16543.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22455, Nebula.NebulaType.Planetary, "Gria Eaec AF-Z e42", 5, true, "Gria Eaec AF-Z e42", (decimal?)-1556.09375, (decimal?)-385.0625, (decimal?)15841.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22456, Nebula.NebulaType.Planetary, "Gria Eaec EL-X e1-505", 5, true, "Gria Eaec EL-X e1-505", (decimal?)-1622.09375, (decimal?)-366.84375, (decimal?)16043.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22457, Nebula.NebulaType.Planetary, "Gria Eaec KC-V e2-1924", 5, true, "Gria Eaec KC-V e2-1924", (decimal?)-2185.375, (decimal?)-838.5, (decimal?)16207.6875, (int)10 )); + AllOfThem.Add(new Nebula( 22458, Nebula.NebulaType.Planetary, "Gria Eaec TJ-Q e5-5057", 5, true, "Gria Eaec TJ-Q e5-5057", (decimal?)-1715.28125, (decimal?)-473, (decimal?)16558.125, (int)10 )); + AllOfThem.Add(new Nebula( 22464, Nebula.NebulaType.Planetary, "Gru Phio KT-Q e5-6935", 5, true, "Gru Phio KT-Q e5-6935", (decimal?)2523.65625, (decimal?)-77.65625, (decimal?)16659.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22465, Nebula.NebulaType.Planetary, "Gru Phio LN-T e3-16", 5, true, "Gru Phio LN-T e3-16", (decimal?)2665.625, (decimal?)-780.875, (decimal?)16307.125, (int)10 )); + AllOfThem.Add(new Nebula( 22834, Nebula.NebulaType.Planetary, "Iockols AA-A e233", 5, true, "Iockols AA-A e233", (decimal?)2612.03125, (decimal?)-10.53125, (decimal?)15608.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22835, Nebula.NebulaType.Planetary, "Iockols AF-R e4-186", 5, true, "Iockols AF-R e4-186", (decimal?)3575.1875, (decimal?)-3.5625, (decimal?)16468.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22836, Nebula.NebulaType.Planetary, "Iockols FB-X e1-2572", 5, true, "Iockols FB-X e1-2572", (decimal?)3077.3125, (decimal?)531.5, (decimal?)16015.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22837, Nebula.NebulaType.Planetary, "Iockols UT-A e129", 5, true, "Iockols UT-A e129", (decimal?)2948.1875, (decimal?)681.0625, (decimal?)15591.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22844, Nebula.NebulaType.Planetary, "Iowhail HR-V e2-1774", 5, true, "Iowhail HR-V e2-1774", (decimal?)-1741.375, (decimal?)847.8125, (decimal?)16136.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22845, Nebula.NebulaType.Planetary, "Iowhail JG-Y e1157", 5, true, "Iowhail JG-Y e1157", (decimal?)-1723.625, (decimal?)118.78125, (decimal?)15740.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22846, Nebula.NebulaType.Planetary, "Iowhail KR-W e1-546", 5, true, "Iowhail KR-W e1-546", (decimal?)-1845.46875, (decimal?)289.25, (decimal?)15901.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22847, Nebula.NebulaType.Planetary, "Iowhail KW-W e1-6395", 5, true, "Iowhail KW-W e1-6395", (decimal?)-1660.40625, (decimal?)413.96875, (decimal?)15920.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22848, Nebula.NebulaType.Planetary, "Iowhail MR-W e1-629", 5, true, "Iowhail MR-W e1-629", (decimal?)-1570.5625, (decimal?)279.25, (decimal?)15983.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22849, Nebula.NebulaType.Planetary, "Iowhail XU-P e5-60", 5, true, "Iowhail XU-P e5-60", (decimal?)-2090.34375, (decimal?)319.90625, (decimal?)16633.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23270, Nebula.NebulaType.Planetary, "Lychoitl AA-Z e128", 5, true, "Lychoitl AA-Z e128", (decimal?)1898, (decimal?)-633.875, (decimal?)18419.5, (int)10 )); + AllOfThem.Add(new Nebula( 23271, Nebula.NebulaType.Planetary, "Lychoitl BG-X e1-6485", 5, true, "Lychoitl BG-X e1-6485", (decimal?)1446.21875, (decimal?)-646.96875, (decimal?)18470.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23272, Nebula.NebulaType.Planetary, "Lychoitl IW-W e1-1029", 5, true, "Lychoitl IW-W e1-1029", (decimal?)1902.375, (decimal?)-951.28125, (decimal?)18568.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23279, Nebula.NebulaType.Planetary, "Lychoitl XO-A e5378", 5, true, "Lychoitl XO-A e5378", (decimal?)1717.1875, (decimal?)-689.5625, (decimal?)18247.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23281, Nebula.NebulaType.Planetary, "Lychoitl ZJ-A e4812", 5, true, "Lychoitl ZJ-A e4812", (decimal?)1800.03125, (decimal?)-982.0625, (decimal?)18199.5, (int)10 )); + AllOfThem.Add(new Nebula( 23289, Nebula.NebulaType.Planetary, "Mylaifa CL-X e1-9071", 5, true, "Mylaifa CL-X e1-9071", (decimal?)-3190.46875, (decimal?)-406.59375, (decimal?)18495.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23290, Nebula.NebulaType.Planetary, "Mylaifa DB-X e1-1760", 5, true, "Mylaifa DB-X e1-1760", (decimal?)-3684, (decimal?)-809.4375, (decimal?)18524.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23291, Nebula.NebulaType.Planetary, "Mylaifa HH-U e3-4328", 5, true, "Mylaifa HH-U e3-4328", (decimal?)-3044.09375, (decimal?)-113.875, (decimal?)18776, (int)10 )); + AllOfThem.Add(new Nebula( 23292, Nebula.NebulaType.Planetary, "Mylaifa HH-U e3-7158", 5, true, "Mylaifa HH-U e3-7158", (decimal?)-3059.75, (decimal?)-164.84375, (decimal?)18914.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23293, Nebula.NebulaType.Planetary, "Mylaifa HW-W e1-481", 5, true, "Mylaifa HW-W e1-481", (decimal?)-3352.15625, (decimal?)-946.21875, (decimal?)18532.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23294, Nebula.NebulaType.Planetary, "Mylaifa IC-V e2-6788", 5, true, "Mylaifa IC-V e2-6788", (decimal?)-3753.3125, (decimal?)-833.5625, (decimal?)18683.625, (int)10 )); + AllOfThem.Add(new Nebula( 23295, Nebula.NebulaType.Planetary, "Mylaifa IN-S e4-5022", 5, true, "Mylaifa IN-S e4-5022", (decimal?)-3496.3125, (decimal?)-82.46875, (decimal?)19079.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23297, Nebula.NebulaType.Planetary, "Mylaifa LN-T e3-1141", 5, true, "Mylaifa LN-T e3-1141", (decimal?)-3679.34375, (decimal?)-810.875, (decimal?)18922.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23298, Nebula.NebulaType.Planetary, "Mylaifa LN-T e3-7613", 5, true, "Mylaifa LN-T e3-7613", (decimal?)-3602.6875, (decimal?)-815.78125, (decimal?)18893.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23300, Nebula.NebulaType.Planetary, "Mylaifa NC-V e2-2216", 5, true, "Mylaifa NC-V e2-2216", (decimal?)-2948.46875, (decimal?)-865.0625, (decimal?)18716.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23301, Nebula.NebulaType.Planetary, "Mylaifa OY-R e4-7939", 5, true, "Mylaifa OY-R e4-7939", (decimal?)-3460.25, (decimal?)-661.21875, (decimal?)19009.5, (int)10 )); + AllOfThem.Add(new Nebula( 23302, Nebula.NebulaType.Planetary, "Mylaifa TE-Q e5-3620", 5, true, "Mylaifa TE-Q e5-3620", (decimal?)-3357.9375, (decimal?)-639.9375, (decimal?)19229.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23303, Nebula.NebulaType.Planetary, "Mylaifa TT-A e9963", 5, true, "Mylaifa TT-A e9963", (decimal?)-3606.3125, (decimal?)-661.90625, (decimal?)18220.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23304, Nebula.NebulaType.Planetary, "Mylaifa UJ-Z e3649", 5, true, "Mylaifa UJ-Z e3649", (decimal?)-3565.40625, (decimal?)-254.5625, (decimal?)18314.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23305, Nebula.NebulaType.Planetary, "Mylaifa WP-X e1-10221", 5, true, "Mylaifa WP-X e1-10221", (decimal?)-3865.84375, (decimal?)-279.90625, (decimal?)18458.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23306, Nebula.NebulaType.Planetary, "Mylaifa YZ-Y e9090", 5, true, "Mylaifa YZ-Y e9090", (decimal?)-3577.25, (decimal?)-522.5625, (decimal?)18321.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23307, Nebula.NebulaType.Planetary, "Mylaifa ZZ-Y e820", 5, true, "Mylaifa ZZ-Y e820", (decimal?)-3291.71875, (decimal?)-619.5625, (decimal?)18390.25, (int)10 )); + AllOfThem.Add(new Nebula( 23315, Nebula.NebulaType.Planetary, "Mylaifai EM-V e2-1538", 5, true, "Mylaifai EM-V e2-1538", (decimal?)-1283.53125, (decimal?)-533.21875, (decimal?)18650.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23316, Nebula.NebulaType.Planetary, "Mylaifai IC-V e2-4788", 5, true, "Mylaifai IC-V e2-4788", (decimal?)-1236.75, (decimal?)-863.40625, (decimal?)18748.625, (int)10 )); + AllOfThem.Add(new Nebula( 23318, Nebula.NebulaType.Planetary, "Mylaifai UJ-Z e4653", 5, true, "Mylaifai UJ-Z e4653", (decimal?)-988.84375, (decimal?)-280.78125, (decimal?)18416.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23320, Nebula.NebulaType.Planetary, "Mylaifai UY-A e6473", 5, true, "Mylaifai UY-A e6473", (decimal?)-674.4375, (decimal?)-373.4375, (decimal?)18189.5, (int)10 )); + AllOfThem.Add(new Nebula( 23321, Nebula.NebulaType.Planetary, "Mylaifai VO-A e6565", 5, true, "Mylaifai VO-A e6565", (decimal?)-1089.21875, (decimal?)-668.96875, (decimal?)18208.875, (int)10 )); + AllOfThem.Add(new Nebula( 23324, Nebula.NebulaType.Planetary, "Mylaifai YO-A e8209", 5, true, "Mylaifai YO-A e8209", (decimal?)-630.03125, (decimal?)-798.875, (decimal?)18141.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23326, Nebula.NebulaType.Planetary, "Mynoarr BW-V e2-217", 5, true, "Mynoarr BW-V e2-217", (decimal?)5346.8125, (decimal?)-340.21875, (decimal?)18669.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23328, Nebula.NebulaType.Planetary, "Mynoarr SZ-P e5-7", 5, true, "Mynoarr SZ-P e5-7", (decimal?)5125.8125, (decimal?)-726.34375, (decimal?)19096.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23332, Nebula.NebulaType.Planetary, "Mynoaw FM-V e2-887", 5, true, "Mynoaw FM-V e2-887", (decimal?)4089.5625, (decimal?)-636.875, (decimal?)18637.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23333, Nebula.NebulaType.Planetary, "Mynoaw GH-V e2-55", 5, true, "Mynoaw GH-V e2-55", (decimal?)3833.34375, (decimal?)-744.65625, (decimal?)18674.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23334, Nebula.NebulaType.Planetary, "Mynoaw QZ-O e6-2434", 5, true, "Mynoaw QZ-O e6-2434", (decimal?)4183.125, (decimal?)-66, (decimal?)19266.375, (int)10 )); + AllOfThem.Add(new Nebula( 23335, Nebula.NebulaType.Planetary, "Mynoaw TO-Z e4603", 5, true, "Mynoaw TO-Z e4603", (decimal?)4329.96875, (decimal?)-87.09375, (decimal?)18357.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23336, Nebula.NebulaType.Planetary, "Mynoaw UU-X e1-6822", 5, true, "Mynoaw UU-X e1-6822", (decimal?)3815.75, (decimal?)-69, (decimal?)18552.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23337, Nebula.NebulaType.Planetary, "Mynoaw UY-A e1518", 5, true, "Mynoaw UY-A e1518", (decimal?)4437.96875, (decimal?)-372.5, (decimal?)18237.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23338, Nebula.NebulaType.Planetary, "Mynoaw UY-A e3171", 5, true, "Mynoaw UY-A e3171", (decimal?)4543.9375, (decimal?)-505, (decimal?)18216.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23339, Nebula.NebulaType.Planetary, "Mynoaw VO-A e2933", 5, true, "Mynoaw VO-A e2933", (decimal?)4039.8125, (decimal?)-747.625, (decimal?)18146.5, (int)10 )); + AllOfThem.Add(new Nebula( 23340, Nebula.NebulaType.Planetary, "Mynoaw WP-X e1-89", 5, true, "Mynoaw WP-X e1-89", (decimal?)3848.3125, (decimal?)-208.25, (decimal?)18566.375, (int)10 )); + AllOfThem.Add(new Nebula( 23404, Nebula.NebulaType.Planetary, "Oephaich EL-Y e7667", 5, true, "Oephaich EL-Y e7667", (decimal?)-2273.25, (decimal?)276.28125, (decimal?)17083.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23405, Nebula.NebulaType.Planetary, "Oephaich LH-V e2-6551", 5, true, "Oephaich LH-V e2-6551", (decimal?)-1766.90625, (decimal?)467.90625, (decimal?)17403.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23406, Nebula.NebulaType.Planetary, "Oephaich LX-U e2-6929", 5, true, "Oephaich LX-U e2-6929", (decimal?)-2358.4375, (decimal?)187.53125, (decimal?)17481.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23407, Nebula.NebulaType.Planetary, "Oephaich PN-T e3-4236", 5, true, "Oephaich PN-T e3-4236", (decimal?)-1764.34375, (decimal?)614.21875, (decimal?)17561.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23408, Nebula.NebulaType.Planetary, "Oephaich PO-Q e5-4289", 5, true, "Oephaich PO-Q e5-4289", (decimal?)-2064.8125, (decimal?)992.75, (decimal?)17863.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23409, Nebula.NebulaType.Planetary, "Oephaich QE-Q e5-9823", 5, true, "Oephaich QE-Q e5-9823", (decimal?)-2607.9375, (decimal?)734.3125, (decimal?)17821.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23410, Nebula.NebulaType.Planetary, "Oephaich QY-R e4-4146", 5, true, "Oephaich QY-R e4-4146", (decimal?)-1933.59375, (decimal?)710.0625, (decimal?)17753.25, (int)10 )); + AllOfThem.Add(new Nebula( 23411, Nebula.NebulaType.Planetary, "Oephaich UE-Q e5-6566", 5, true, "Oephaich UE-Q e5-6566", (decimal?)-1982.8125, (decimal?)717.8125, (decimal?)17932.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23412, Nebula.NebulaType.Planetary, "Oephaich UE-Z e294", 5, true, "Oephaich UE-Z e294", (decimal?)-2603, (decimal?)804.6875, (decimal?)17037.125, (int)10 )); + AllOfThem.Add(new Nebula( 23413, Nebula.NebulaType.Planetary, "Oephaich WJ-Z e242", 5, true, "Oephaich WJ-Z e242", (decimal?)-1889.59375, (decimal?)1066.34375, (decimal?)17015.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23414, Nebula.NebulaType.Planetary, "Oephaich YA-O e6-4709", 5, true, "Oephaich YA-O e6-4709", (decimal?)-2476.375, (decimal?)379.46875, (decimal?)18102.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23415, Nebula.NebulaType.Planetary, "Oephaich YK-O e6-704", 5, true, "Oephaich YK-O e6-704", (decimal?)-1955.46875, (decimal?)684.8125, (decimal?)18069.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23416, Nebula.NebulaType.Planetary, "Oephaich YZ-Y e5336", 5, true, "Oephaich YZ-Y e5336", (decimal?)-2167.90625, (decimal?)763.28125, (decimal?)17027.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23424, Nebula.NebulaType.Planetary, "Oephaik CF-A e530", 5, true, "Oephaik CF-A e530", (decimal?)1862.25, (decimal?)246.84375, (decimal?)16925.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23425, Nebula.NebulaType.Planetary, "Oephaik DF-A e520", 5, true, "Oephaik DF-A e520", (decimal?)2145.1875, (decimal?)213.28125, (decimal?)16999.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23426, Nebula.NebulaType.Planetary, "Oephaik EF-A e9", 5, true, "Oephaik EF-A e9", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 23427, Nebula.NebulaType.Planetary, "Oephaik MI-T e3-3710", 5, true, "Oephaik MI-T e3-3710", null, null, null, (int)10 )); + AllOfThem.Add(new Nebula( 23428, Nebula.NebulaType.Planetary, "Oephaik ms-t e3-676", 5, true, "Oephaik MS-T e3-676", (decimal?)1991.34375, (decimal?)750.375, (decimal?)17599.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23429, Nebula.NebulaType.Planetary, "Oephaik QU-O e6-134", 5, true, "Oephaik QU-O e6-134", (decimal?)1274.3125, (decimal?)1009.65625, (decimal?)18012.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23430, Nebula.NebulaType.Planetary, "Oephaik UE-Q e5-3177", 5, true, "Oephaik UE-Q e5-3177", (decimal?)1895.9375, (decimal?)748.125, (decimal?)17906.5, (int)10 )); + AllOfThem.Add(new Nebula( 23431, Nebula.NebulaType.Planetary, "Oephaik VP-O e6-1103", 5, true, "Oephaik VP-O e6-1103", (decimal?)1761.4375, (decimal?)783.375, (decimal?)18082.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23432, Nebula.NebulaType.Planetary, "Oephaik VP-O e6-2500", 5, true, "Oephaik VP-O e6-2500", (decimal?)1812.53125, (decimal?)820.8125, (decimal?)18089.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23433, Nebula.NebulaType.Planetary, "Oephaik XJ-A e900", 5, true, "Oephaik XJ-A e900", (decimal?)1430.5625, (decimal?)310.59375, (decimal?)16875.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23436, Nebula.NebulaType.Planetary, "Oephaints CF-A e8944", 5, true, "Oephaints CF-A e8944", (decimal?)-3150.03125, (decimal?)155.625, (decimal?)16955.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23437, Nebula.NebulaType.Planetary, "Oephaints CR-V e2-2292", 5, true, "Oephaints CR-V e2-2292", (decimal?)-3753.1875, (decimal?)811.625, (decimal?)17427.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23438, Nebula.NebulaType.Planetary, "Oephaints DR-V e2-1296", 5, true, "Oephaints DR-V e2-1296", (decimal?)-3676.8125, (decimal?)778.90625, (decimal?)17362.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23439, Nebula.NebulaType.Planetary, "Oephaints KC-V e2-1874", 5, true, "Oephaints KC-V e2-1874", (decimal?)-3429.3125, (decimal?)307.59375, (decimal?)17403.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23440, Nebula.NebulaType.Planetary, "Oephaints LW-W e1-7158", 5, true, "Oephaints LW-W e1-7158", (decimal?)-2779.625, (decimal?)393.75, (decimal?)17180.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23441, Nebula.NebulaType.Planetary, "Oephaints MR-W e1-2872", 5, true, "Oephaints MR-W e1-2872", (decimal?)-2837.09375, (decimal?)222, (decimal?)17284.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23442, Nebula.NebulaType.Planetary, "Oephaints ND-S e4-2226", 5, true, "Oephaints ND-S e4-2226", (decimal?)-3405.71875, (decimal?)880.71875, (decimal?)17750.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23443, Nebula.NebulaType.Planetary, "Oephaints OI-T e3-9683", 5, true, "Oephaints OI-T e3-9683", (decimal?)-3573.46875, (decimal?)433.59375, (decimal?)17497.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23444, Nebula.NebulaType.Planetary, "Oephaints QY-R e4-812", 5, true, "Oephaints QY-R e4-812", (decimal?)-3112.6875, (decimal?)667.9375, (decimal?)17694.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23445, Nebula.NebulaType.Planetary, "Oephaints VJ-Q e5-4733", 5, true, "Oephaints VJ-Q e5-4733", (decimal?)-2768.84375, (decimal?)800.125, (decimal?)17891.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23446, Nebula.NebulaType.Planetary, "Oephaints VP-O e6-7394", 5, true, "Oephaints VP-O e6-7394", (decimal?)-3411.96875, (decimal?)924.625, (decimal?)17980.25, (int)10 )); + AllOfThem.Add(new Nebula( 23447, Nebula.NebulaType.Planetary, "Oephaints WJ-A e7409", 5, true, "Oephaints WJ-A e7409", (decimal?)-3876.46875, (decimal?)333.09375, (decimal?)16883.125, (int)10 )); + AllOfThem.Add(new Nebula( 23448, Nebula.NebulaType.Planetary, "Oephaints XE-Q e5-5334", 5, true, "Oephaints XE-Q e5-5334", (decimal?)-2783.25, (decimal?)748.3125, (decimal?)17829.875, (int)10 )); + AllOfThem.Add(new Nebula( 23449, Nebula.NebulaType.Planetary, "Oephaints ZE-R e4-177", 5, true, "Oephaints ZE-R e4-177", (decimal?)-3017.40625, (decimal?)123.03125, (decimal?)17763.875, (int)10 )); + AllOfThem.Add(new Nebula( 23450, Nebula.NebulaType.Planetary, "Oephaints ZU-P e5-1481", 5, true, "Oephaints ZU-P e5-1481", (decimal?)-2991.875, (decimal?)357.3125, (decimal?)17902.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23466, Nebula.NebulaType.Planetary, "Oephaird BW-N e6-11113", 5, true, "Oephaird BW-N e6-11113", (decimal?)-1059, (decimal?)253.6875, (decimal?)17986.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23467, Nebula.NebulaType.Planetary, "Oephaird CF-A e7699", 5, true, "Oephaird CF-A e7699", (decimal?)-551.125, (decimal?)178.5625, (decimal?)17000.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23468, Nebula.NebulaType.Planetary, "Oephaird GW-W e1-4602", 5, true, "Oephaird GW-W e1-4602", (decimal?)-880.0625, (decimal?)448.28125, (decimal?)17282.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23469, Nebula.NebulaType.Planetary, "Oephaird MX-U e2-608", 5, true, "Oephaird MX-U e2-608", (decimal?)-1023.90625, (decimal?)278.875, (decimal?)17354.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23470, Nebula.NebulaType.Planetary, "Oephaird NY-R e4-4394", 5, true, "Oephaird NY-R e4-4394", (decimal?)-1139.5625, (decimal?)697.875, (decimal?)17814.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23549, Nebula.NebulaType.Planetary, "Ogaiws BF-A e11221", 5, true, "Ogaiws BF-A e11221", (decimal?)-3385.375, (decimal?)202.625, (decimal?)19493.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24277, Nebula.NebulaType.Planetary, "Puekaae FR-N e6-128", 5, true, "Puekaae FR-N e6-128", (decimal?)-3338.4375, (decimal?)86.21875, (decimal?)14172.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24288, Nebula.NebulaType.Planetary, "Puelio FR-N e6-37", 5, true, "Puelio FR-N e6-37", (decimal?)1793.84375, (decimal?)63.1875, (decimal?)14201.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24770, Nebula.NebulaType.Planetary, "Stranaei LR-W e1-532", 5, true, "Stranaei LR-W e1-532", (decimal?)833.53125, (decimal?)1444.46875, (decimal?)18572.125, (int)10 )); + AllOfThem.Add(new Nebula( 25070, Nebula.NebulaType.Planetary, "Vaimaa DQ-X e1-32", 5, true, "Vaimaa DQ-X e1-32", (decimal?)4923.375, (decimal?)-1532.15625, (decimal?)17257.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25102, Nebula.NebulaType.Planetary, "Voqoo AL-X e1-523", 5, true, "Voqoo AL-X e1-523", (decimal?)-3577.9375, (decimal?)-1635.15625, (decimal?)17262.375, (int)10 )); + AllOfThem.Add(new Nebula( 25206, Nebula.NebulaType.Planetary, "Whambeia EL-Y e5588", 5, true, "Whambeia EL-Y e5588", (decimal?)1643.9375, (decimal?)174.28125, (decimal?)18329, (int)10 )); + AllOfThem.Add(new Nebula( 25207, Nebula.NebulaType.Planetary, "Whambeia KG-Y e317", 5, true, "Whambeia KG-Y e317", (decimal?)2212.9375, (decimal?)-4.53125, (decimal?)18409.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25209, Nebula.NebulaType.Planetary, "Whambeia LR-W e1-4134", 5, true, "Whambeia LR-W e1-4134", (decimal?)2062.875, (decimal?)196.09375, (decimal?)18545.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25211, Nebula.NebulaType.Planetary, "Whambeia yk-x e1-1268", 5, true, "Whambeia YK-X e1-1268", (decimal?)1374.625, (decimal?)878.375, (decimal?)18593.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25212, Nebula.NebulaType.Planetary, "Whambeia ZE-A e22", 5, true, "Whambeia ZE-A e22", (decimal?)1444.28125, (decimal?)205.71875, (decimal?)18281.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25238, Nebula.NebulaType.Planetary, "Whamboi GH-V e2-7979", 5, true, "Whamboi GH-V e2-7979", (decimal?)-2504, (decimal?)572.65625, (decimal?)18641.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25239, Nebula.NebulaType.Planetary, "Whamboi JG-Y e1096", 5, true, "Whamboi JG-Y e1096", (decimal?)-1734.78125, (decimal?)129.125, (decimal?)18421.03125, (int)10 )); + AllOfThem.Add(new Nebula( 25240, Nebula.NebulaType.Planetary, "Whamboi KD-S e4-4968", 5, true, "Whamboi KD-S e4-4968", (decimal?)-2470.1875, (decimal?)849.125, (decimal?)19087.5, (int)10 )); + AllOfThem.Add(new Nebula( 25241, Nebula.NebulaType.Planetary, "Whamboi NH-V e2-580", 5, true, "Whamboi NH-V e2-580", (decimal?)-1482.53125, (decimal?)508.875, (decimal?)18672.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25242, Nebula.NebulaType.Planetary, "Whamboi PI-T e3-160", 5, true, "Whamboi PI-T e3-160", (decimal?)-2088.625, (decimal?)367.9375, (decimal?)18864.75, (int)10 )); + AllOfThem.Add(new Nebula( 25243, Nebula.NebulaType.Planetary, "Whamboi TY-S e3-103", 5, true, "Whamboi TY-S e3-103", (decimal?)-2023.90625, (decimal?)-18.5625, (decimal?)18859.375, (int)10 )); + AllOfThem.Add(new Nebula( 25244, Nebula.NebulaType.Planetary, "Whamboi ZE-Z e3132", 5, true, "Whamboi ZE-Z e3132", (decimal?)-1755.25, (decimal?)854.5, (decimal?)18356.84375, (int)10 )); + AllOfThem.Add(new Nebula( 25248, Nebula.NebulaType.Planetary, "Whamboo ZE-A e143", 5, true, "Whamboo ZE-A e143", (decimal?)5243.125, (decimal?)162.5625, (decimal?)18247.125, (int)10 )); + AllOfThem.Add(new Nebula( 25249, Nebula.NebulaType.Planetary, "Whambooe BF-R e4-385", 5, true, "Whambooe BF-R e4-385", (decimal?)4975.84375, (decimal?)54.53125, (decimal?)18965.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25250, Nebula.NebulaType.Planetary, "Whambooe GW-W e1-66", 5, true, "Whambooe GW-W e1-66", (decimal?)4177, (decimal?)419.90625, (decimal?)18520, (int)10 )); + AllOfThem.Add(new Nebula( 25251, Nebula.NebulaType.Planetary, "Whambooe XJ-A e223", 5, true, "Whambooe XJ-A e223", (decimal?)4039.34375, (decimal?)365.75, (decimal?)18147.21875, (int)10 )); + AllOfThem.Add(new Nebula( 30058, Nebula.NebulaType.Real, "IC 4699", 5, true, "CSI-46-18148", null, null, null, (int)100 )); + } + public static void init_Region_6() { + AllOfThem.Add(new Nebula( 10056, Nebula.NebulaType.Standard, "Egnaix AA-A h91", 6, true, "Egnaix CW-H c12-4", (decimal?)6122.625, (decimal?)2292.46875, (decimal?)22527.34375, (int)100 )); + AllOfThem.Add(new Nebula( 10057, Nebula.NebulaType.Standard, "Eord Prau AA-A h12", 6, true, "Eord Prau SZ-C c14-253", (decimal?)5867.53125, (decimal?)-566.1875, (decimal?)20053.9375, (int)100 )); + AllOfThem.Add(new Nebula( 10058, Nebula.NebulaType.Standard, "Hypio Prao AA-A h16", 6, true, "Hypio Prao NZ-J c24-30", (decimal?)8697.15625, (decimal?)-468.4375, (decimal?)25586.84375, (int)100 )); + AllOfThem.Add(new Nebula( 10059, Nebula.NebulaType.Standard, "Hypoe Ploe AA-A h27", 6, true, "Hypoe Ploe SA-E b28-27", (decimal?)8938.15625, (decimal?)-769.5625, (decimal?)22581.8125, (int)100 )); + AllOfThem.Add(new Nebula( 20090, Nebula.NebulaType.Planetary, "Aishaidy OI-T e3-11", 6, true, "Aishaidy OI-T e3-11", (decimal?)11806.6875, (decimal?)412.59375, (decimal?)34183.625, (int)10 )); + AllOfThem.Add(new Nebula( 20166, Nebula.NebulaType.Planetary, "Athair DH-U e3-54", 6, true, "Athair DH-U e3-54", (decimal?)6509.84375, (decimal?)-149.71875, (decimal?)22661.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20167, Nebula.NebulaType.Planetary, "Athair FB-X e1-139", 6, true, "Athair FB-X e1-139", (decimal?)6853.46875, (decimal?)-754.375, (decimal?)22309.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20168, Nebula.NebulaType.Planetary, "Athair GG-X e1-1493", 6, true, "Athair GG-X e1-1493", (decimal?)7320.96875, (decimal?)-624.0625, (decimal?)22296.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20169, Nebula.NebulaType.Planetary, "Athair RI-B e275", 6, true, "Athair RI-B e275", (decimal?)7269.5, (decimal?)-79.8125, (decimal?)22061.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20170, Nebula.NebulaType.Planetary, "Athair SU-O e6-17", 6, true, "Athair SU-O e6-17", (decimal?)6684.375, (decimal?)-246.59375, (decimal?)23212.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20171, Nebula.NebulaType.Planetary, "Athair ZE-Z e232", 6, true, "Athair ZE-Z e232", (decimal?)7178.5, (decimal?)-407.90625, (decimal?)22203.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20248, Nebula.NebulaType.Planetary, "Baulaa LG-Y e1", 6, true, "Baulaa LG-Y e1", (decimal?)13923.75, (decimal?)-16.875, (decimal?)28557.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20760, Nebula.NebulaType.Planetary, "Cloomaa EA-A e70", 6, true, "Cloomaa EA-A e70", (decimal?)9673.6875, (decimal?)72.625, (decimal?)24645.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20761, Nebula.NebulaType.Planetary, "Cloomaa UT-A e70", 6, true, "Cloomaa UT-A e70", (decimal?)9284.5625, (decimal?)723.8125, (decimal?)24670.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20762, Nebula.NebulaType.Planetary, "Cloomaa YE-R e4-113", 6, true, "Cloomaa YE-R e4-113", (decimal?)9578.8125, (decimal?)12.8125, (decimal?)25449.125, (int)10 )); + AllOfThem.Add(new Nebula( 20763, Nebula.NebulaType.Planetary, "Cloomae MM-W e1-1", 6, true, "Cloomae MM-W e1-1", (decimal?)13433.375, (decimal?)11.3125, (decimal?)24986.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20764, Nebula.NebulaType.Planetary, "Cloomeia FG-Y e95", 6, true, "Cloomeia FG-Y e95", (decimal?)11719.15625, (decimal?)112, (decimal?)24717.375, (int)10 )); + AllOfThem.Add(new Nebula( 20765, Nebula.NebulaType.Planetary, "Cloomeia IM-W e1-142", 6, true, "Cloomeia IM-W e1-142", (decimal?)11540.125, (decimal?)53.59375, (decimal?)24922.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20766, Nebula.NebulaType.Planetary, "Cloomeia YZ-Y e7", 6, true, "Cloomeia YZ-Y e7", (decimal?)11884.0625, (decimal?)697.1875, (decimal?)24847.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20767, Nebula.NebulaType.Planetary, "Cloomoi AQ-P e5-124", 6, true, "Cloomoi AQ-P e5-124", (decimal?)8315.84375, (decimal?)261.75, (decimal?)25607.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20768, Nebula.NebulaType.Planetary, "Cloomoi AW-N e6-2944", 6, true, "Cloomoi AW-N e6-2944", (decimal?)7742.25, (decimal?)278.4375, (decimal?)25803.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20769, Nebula.NebulaType.Planetary, "Cloomoi JL-Y e95", 6, true, "Cloomoi JL-Y e95", (decimal?)8749.4375, (decimal?)207.5625, (decimal?)24738.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20770, Nebula.NebulaType.Planetary, "Cloomoi YK-X e1-1288", 6, true, "Cloomoi YK-X e1-1288", (decimal?)7665.5, (decimal?)826.21875, (decimal?)24907.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20824, Nebula.NebulaType.Planetary, "Dryaa Flyao DB-W e2-122", 6, true, "Dryaa Flyao DB-W e2-122", (decimal?)8568.34375, (decimal?)-126.40625, (decimal?)18749.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20840, Nebula.NebulaType.Planetary, "Dryaa Prao VE-Q e5-24", 6, true, "Dryaa Prao VE-Q e5-24", (decimal?)8454.78125, (decimal?)-538.78125, (decimal?)21740.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20880, Nebula.NebulaType.Planetary, "Dryao Aoc AL-P e5-1269", 6, true, "Dryao Aoc AL-P e5-1269", (decimal?)6699.4375, (decimal?)20.84375, (decimal?)19198.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20881, Nebula.NebulaType.Planetary, "Dryao Aoc XP-X e1-1363", 6, true, "Dryao Aoc XP-X e1-1363", (decimal?)6615.5, (decimal?)1070.9375, (decimal?)18463.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20882, Nebula.NebulaType.Planetary, "Dryao Aod TS-U e2-78", 6, true, "Dryao Aod TS-U e2-78", (decimal?)10103.96875, (decimal?)34.90625, (decimal?)18751.25, (int)10 )); + AllOfThem.Add(new Nebula( 20951, Nebula.NebulaType.Planetary, "Dryau Aoc KX-T e3-32", 6, true, "Dryau Aoc KX-T e3-32", (decimal?)8367.4375, (decimal?)827.59375, (decimal?)18851.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20959, Nebula.NebulaType.Planetary, "Dryau Auscs GW-N e6-136", 6, true, "Dryau Auscs GW-N e6-136", (decimal?)8601.28125, (decimal?)261.53125, (decimal?)21886.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20960, Nebula.NebulaType.Planetary, "Dryau Auscs IR-V e2-56", 6, true, "Dryau Auscs IR-V e2-56", (decimal?)8632.59375, (decimal?)851.0625, (decimal?)21207.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20961, Nebula.NebulaType.Planetary, "Dryau Auscs WK-O e6-3", 6, true, "Dryau Auscs WK-O e6-3", (decimal?)8081.53125, (decimal?)618.375, (decimal?)21922.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20994, Nebula.NebulaType.Planetary, "Dryau Chroa MX-T e3-39", 6, true, "Dryau Chroa MX-T e3-39", (decimal?)11248.59375, (decimal?)891.46875, (decimal?)29033.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21266, Nebula.NebulaType.Planetary, "Dryoea Prau BG-O e6-1753", 6, true, "Dryoea Prau BG-O e6-1753", (decimal?)5906.1875, (decimal?)-816.875, (decimal?)21880.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21267, Nebula.NebulaType.Planetary, "Dryoea Prau GR-V e2-2866", 6, true, "Dryoea Prau GR-V e2-2866", (decimal?)5808.0625, (decimal?)-457.125, (decimal?)21272.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21268, Nebula.NebulaType.Planetary, "Dryoea Prau GR-V e2-3703", 6, true, "Dryoea Prau GR-V e2-3703", (decimal?)5713.46875, (decimal?)-367.0625, (decimal?)21302.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21271, Nebula.NebulaType.Planetary, "Dryoea Prau RT-R e4-122", 6, true, "Dryoea Prau RT-R e4-122", (decimal?)5673.34375, (decimal?)-738.1875, (decimal?)21560.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21272, Nebula.NebulaType.Planetary, "Dryoea Prau RU-O e6-3984", 6, true, "Dryoea Prau RU-O e6-3984", (decimal?)5232.0625, (decimal?)-270.625, (decimal?)21901.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21273, Nebula.NebulaType.Planetary, "Dryoea Prau RZ-O e6-163", 6, true, "Dryoea Prau RZ-O e6-163", (decimal?)5643.03125, (decimal?)-41.96875, (decimal?)21888.75, (int)10 )); + AllOfThem.Add(new Nebula( 21274, Nebula.NebulaType.Planetary, "Dryoea Prau YA-O e6-3033", 6, true, "Dryoea Prau YA-O e6-3033", (decimal?)5111.84375, (decimal?)-932.4375, (decimal?)21889.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21292, Nebula.NebulaType.Planetary, "Dryoi Flyao DB-X e1-152", 6, true, "Dryoi Flyao DB-X e1-152", (decimal?)6499.6875, (decimal?)-718, (decimal?)18490.5, (int)10 )); + AllOfThem.Add(new Nebula( 21293, Nebula.NebulaType.Planetary, "Dryoi Flyao GH-V e2-1968", 6, true, "Dryoi Flyao GH-V e2-1968", (decimal?)6440.21875, (decimal?)-785.25, (decimal?)18651.25, (int)10 )); + AllOfThem.Add(new Nebula( 21294, Nebula.NebulaType.Planetary, "Dryoi Flyao PZ-O e6-4272", 6, true, "Dryoi Flyao PZ-O e6-4272", (decimal?)6561.1875, (decimal?)-52.9375, (decimal?)19390.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21295, Nebula.NebulaType.Planetary, "Dryoi Flyao YK-O e6-95", 6, true, "Dryoi Flyao YK-O e6-95", (decimal?)7062.875, (decimal?)-643.3125, (decimal?)19285.75, (int)10 )); + AllOfThem.Add(new Nebula( 21296, Nebula.NebulaType.Planetary, "Dryoi Flyao ZK-X e1-213", 6, true, "Dryoi Flyao ZK-X e1-213", (decimal?)6588, (decimal?)-410.28125, (decimal?)18575.125, (int)10 )); + AllOfThem.Add(new Nebula( 21338, Nebula.NebulaType.Planetary, "Dryua Blou EW-V e2-75", 6, true, "Dryua Blou EW-V e2-75", (decimal?)12215.5625, (decimal?)-247.5625, (decimal?)28909.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21340, Nebula.NebulaType.Planetary, "Dryua Pruae IM-V e2-1", 6, true, "Dryua Pruae IM-V e2-1", (decimal?)12125.90625, (decimal?)-559.34375, (decimal?)21214.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21436, Nebula.NebulaType.Planetary, "Dumbai GL-Y e3244", 6, true, "Dumbai GL-Y e3244", (decimal?)5812.15625, (decimal?)221.84375, (decimal?)22153.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21437, Nebula.NebulaType.Planetary, "Dumbai HA-A e5436", 6, true, "Dumbai HA-A e5436", (decimal?)6200.28125, (decimal?)34.6875, (decimal?)22118.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21438, Nebula.NebulaType.Planetary, "Dumbai MX-T e3-1590", 6, true, "Dumbai MX-T e3-1590", (decimal?)6059.125, (decimal?)777.15625, (decimal?)22693.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21441, Nebula.NebulaType.Planetary, "Dumbai TY-A e3448", 6, true, "Dumbai TY-A e3448", (decimal?)5620.3125, (decimal?)775.3125, (decimal?)22045.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21443, Nebula.NebulaType.Planetary, "Dumbai YP-O e6-1487", 6, true, "Dumbai YP-O e6-1487", (decimal?)6032.8125, (decimal?)807.40625, (decimal?)23121.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21444, Nebula.NebulaType.Planetary, "Dumbe VO-A e1243", 6, true, "Dumbe VO-A e1243", (decimal?)6531.125, (decimal?)514.46875, (decimal?)22038.375, (int)10 )); + AllOfThem.Add(new Nebula( 21506, Nebula.NebulaType.Planetary, "Dumbou CR-N e6-219", 6, true, "Dumbou CR-N e6-219", (decimal?)10316.40625, (decimal?)29.625, (decimal?)23205.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21770, Nebula.NebulaType.Planetary, "Eocs Bre HR-W e1-24", 6, true, "Eocs Bre HR-W e1-24", (decimal?)11747.6875, (decimal?)239.03125, (decimal?)30021.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22064, Nebula.NebulaType.Planetary, "Eord Ploe KH-V e2-609", 6, true, "Eord Ploe KH-V e2-609", (decimal?)5797.28125, (decimal?)-692.53125, (decimal?)17339, (int)10 )); + AllOfThem.Add(new Nebula( 22065, Nebula.NebulaType.Planetary, "Eord Ploe RI-T e3-32", 6, true, "Eord Ploe RI-T e3-32", (decimal?)5988.75, (decimal?)-918.59375, (decimal?)17504.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22066, Nebula.NebulaType.Planetary, "Eord Prau MS-T e3-265", 6, true, "Eord Prau MS-T e3-265", (decimal?)5828.5625, (decimal?)-601.21875, (decimal?)20088.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22246, Nebula.NebulaType.Planetary, "Eos Auscs ER-N e6-736", 6, true, "Eos Auscs ER-N e6-736", (decimal?)8031.1875, (decimal?)0.875, (decimal?)20645, (int)10 )); + AllOfThem.Add(new Nebula( 22269, Nebula.NebulaType.Planetary, "Eos Brou DA-A e2413", 6, true, "Eos Brou DA-A e2413", (decimal?)10672.4375, (decimal?)97.96875, (decimal?)29795.75, (int)10 )); + AllOfThem.Add(new Nebula( 22326, Nebula.NebulaType.Planetary, "Eumowns NS-U e2-447", 6, true, "Eumowns NS-U e2-447", (decimal?)5361.84375, (decimal?)1282.875, (decimal?)17392.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22418, Nebula.NebulaType.Planetary, "Gloomoi YA-W e2-370", 6, true, "Gloomoi YA-W e2-370", (decimal?)7663.84375, (decimal?)-1451.59375, (decimal?)25149.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22429, Nebula.NebulaType.Planetary, "Graea Phio QO-Q e5-44", 6, true, "Graea Phio QO-Q e5-44", (decimal?)6998.15625, (decimal?)-256.03125, (decimal?)16600.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22579, Nebula.NebulaType.Planetary, "Hypio Flyao HH-U e3-96", 6, true, "Hypio Flyao HH-U e3-96", (decimal?)8509.3125, (decimal?)-41.1875, (decimal?)22625.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22580, Nebula.NebulaType.Planetary, "Hypio Flyao YK-O e6-130", 6, true, "Hypio Flyao YK-O e6-130", (decimal?)8373.65625, (decimal?)-643, (decimal?)23150.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22598, Nebula.NebulaType.Planetary, "Hypio Prau BF-R e4-17", 6, true, "Hypio Prau BF-R e4-17", (decimal?)11302.0625, (decimal?)-1214.34375, (decimal?)25349.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22671, Nebula.NebulaType.Planetary, "Hypoe Prao RN-T e3-2748", 6, true, "Hypoe Prao RN-T e3-2748", (decimal?)7515.0625, (decimal?)-746.21875, (decimal?)25222.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22673, Nebula.NebulaType.Planetary, "Hypoe Prao SY-A e7779", 6, true, "Hypoe Prao SY-A e7779", (decimal?)6735.59375, (decimal?)-478.125, (decimal?)24654.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22674, Nebula.NebulaType.Planetary, "Hypoe Prao SY-R e4-181", 6, true, "Hypoe Prao SY-R e4-181", (decimal?)7296.21875, (decimal?)-575.15625, (decimal?)25353.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22675, Nebula.NebulaType.Planetary, "Hypoe Prao UJ-Z e5750", 6, true, "Hypoe Prao UJ-Z e5750", (decimal?)6811.46875, (decimal?)-328.9375, (decimal?)24741.875, (int)10 )); + AllOfThem.Add(new Nebula( 22676, Nebula.NebulaType.Planetary, "Hypoe Prao VO-Z e4766", 6, true, "Hypoe Prao VO-Z e4766", (decimal?)7177.96875, (decimal?)-162.8125, (decimal?)24828.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22692, Nebula.NebulaType.Planetary, "Hypoea Blou QO-Z e37", 6, true, "Hypoea Blou QO-Z e37", (decimal?)11603.65625, (decimal?)-113.34375, (decimal?)32375.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22716, Nebula.NebulaType.Planetary, "Hypou Auscs DQ-Y e449", 6, true, "Hypou Auscs DQ-Y e449", (decimal?)6966.5, (decimal?)453.34375, (decimal?)24763.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22720, Nebula.NebulaType.Planetary, "Hypou Auscs QN-T e3-5183", 6, true, "Hypou Auscs QN-T e3-5183", (decimal?)7436.15625, (decimal?)588.3125, (decimal?)25245.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22722, Nebula.NebulaType.Planetary, "Hypou Auscs VT-A e218", 6, true, "Hypou Auscs VT-A e218", (decimal?)6848.875, (decimal?)763.84375, (decimal?)24535, (int)10 )); + AllOfThem.Add(new Nebula( 22723, Nebula.NebulaType.Planetary, "Hypou Auscs WJ-R e4-8171", 6, true, "Hypou Auscs WJ-R e4-8171", (decimal?)7082.40625, (decimal?)158.78125, (decimal?)25455.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22755, Nebula.NebulaType.Planetary, "Hypuae Aoc DA-Z e41", 6, true, "Hypuae Aoc DA-Z e41", (decimal?)8812.375, (decimal?)743.53125, (decimal?)22159.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22756, Nebula.NebulaType.Planetary, "Hypuae Aoc FB-X e1-78", 6, true, "Hypuae Aoc FB-X e1-78", (decimal?)8179.03125, (decimal?)531.1875, (decimal?)22387.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22984, Nebula.NebulaType.Planetary, "Kyloagy II-S e4-77", 6, true, "Kyloagy II-S e4-77", (decimal?)6464.875, (decimal?)-228.84375, (decimal?)21582.125, (int)10 )); + AllOfThem.Add(new Nebula( 23020, Nebula.NebulaType.Planetary, "Kyloalz KS-T e3-45", 6, true, "Kyloalz KS-T e3-45", (decimal?)9334.59375, (decimal?)-557.71875, (decimal?)21382.875, (int)10 )); + AllOfThem.Add(new Nebula( 23097, Nebula.NebulaType.Planetary, "Lasu MM-W e1-23", 6, true, "Lasu MM-W e1-23", (decimal?)10879.71875, (decimal?)75.40625, (decimal?)32670.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23172, Nebula.NebulaType.Planetary, "Loijeia JG-Y e1", 6, true, "Loijeia JG-Y e1", (decimal?)12265.3125, (decimal?)1.3125, (decimal?)32412.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23173, Nebula.NebulaType.Planetary, "Loijeia KR-W e1-10", 6, true, "Loijeia KR-W e1-10", (decimal?)12192.90625, (decimal?)196.6875, (decimal?)32603.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23284, Nebula.NebulaType.Planetary, "Moihia EM-V e2-69", 6, true, "Moihia EM-V e2-69", (decimal?)6395.1875, (decimal?)-525.375, (decimal?)19955.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23285, Nebula.NebulaType.Planetary, "Moihia PT-Q e5-36", 6, true, "Moihia PT-Q e5-36", (decimal?)7158.53125, (decimal?)-69, (decimal?)20457.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23286, Nebula.NebulaType.Planetary, "Moihia RZ-O e6-3188", 6, true, "Moihia RZ-O e6-3188", (decimal?)6852.375, (decimal?)-97.375, (decimal?)20642.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23287, Nebula.NebulaType.Planetary, "Moihie EV-Y e5", 6, true, "Moihie EV-Y e5", (decimal?)8641.09375, (decimal?)-670.8125, (decimal?)19671.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23288, Nebula.NebulaType.Planetary, "Moihie OZ-O e6-201", 6, true, "Moihie OZ-O e6-201", (decimal?)7688.9375, (decimal?)-118.1875, (decimal?)20675.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23327, Nebula.NebulaType.Planetary, "Mynoarr JW-W e1-2027", 6, true, "Mynoarr JW-W e1-2027", (decimal?)5883.28125, (decimal?)-878.0625, (decimal?)18457.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23329, Nebula.NebulaType.Planetary, "Mynoarr WO-Z e267", 6, true, "Mynoarr WO-Z e267", (decimal?)6106.28125, (decimal?)-83.875, (decimal?)18318.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23330, Nebula.NebulaType.Planetary, "Mynoarr WO-Z e286", 6, true, "Mynoarr WO-Z e286", (decimal?)6087.8125, (decimal?)-82.34375, (decimal?)18436.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23331, Nebula.NebulaType.Planetary, "Mynoarr YF-O e6-1522", 6, true, "Mynoarr YF-O e6-1522", (decimal?)5528.09375, (decimal?)-819.59375, (decimal?)19327.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23434, Nebula.NebulaType.Planetary, "Oephail DA-A e47", 6, true, "Oephail DA-A e47", (decimal?)6956.875, (decimal?)74.96875, (decimal?)16857.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23435, Nebula.NebulaType.Planetary, "Oephail LS-T e3-22", 6, true, "Oephail LS-T e3-22", (decimal?)6828.84375, (decimal?)696.46875, (decimal?)17625.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23471, Nebula.NebulaType.Planetary, "Oephairgh EW-N e6-219", 6, true, "Oephairgh EW-N e6-219", (decimal?)5792.15625, (decimal?)212.375, (decimal?)18107.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23472, Nebula.NebulaType.Planetary, "Oephairgh FM-V e2-17", 6, true, "Oephairgh FM-V e2-17", (decimal?)5321.46875, (decimal?)689.9375, (decimal?)17414.25, (int)10 )); + AllOfThem.Add(new Nebula( 23473, Nebula.NebulaType.Planetary, "Oephairgh KR-W e1-2", 6, true, "Oephairgh KR-W e1-2", (decimal?)5712.03125, (decimal?)180.5, (decimal?)17203.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23474, Nebula.NebulaType.Planetary, "Oephairgh WY-S e3-83", 6, true, "Oephairgh WY-S e3-83", (decimal?)6100.125, (decimal?)-10.9375, (decimal?)17527.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23475, Nebula.NebulaType.Planetary, "Oephairgh YP-P e5-204", 6, true, "Oephairgh YP-P e5-204", (decimal?)5487.96875, (decimal?)199.09375, (decimal?)17819.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23558, Nebula.NebulaType.Planetary, "Ongaihn IC-V e2-47", 6, true, "Ongaihn IC-V e2-47", (decimal?)5148.15625, (decimal?)411.40625, (decimal?)19994.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23560, Nebula.NebulaType.Planetary, "Ongairk DB-O e6-235", 6, true, "Ongairk DB-O e6-235", (decimal?)7232.40625, (decimal?)407.34375, (decimal?)20559.875, (int)10 )); + AllOfThem.Add(new Nebula( 23561, Nebula.NebulaType.Planetary, "Ongairk HR-W e1-107", 6, true, "Ongairk HR-W e1-107", (decimal?)6567.75, (decimal?)174.625, (decimal?)19822.28125, (int)10 )); + AllOfThem.Add(new Nebula( 23562, Nebula.NebulaType.Planetary, "Ongairk RD-T e3-118", 6, true, "Ongairk RD-T e3-118", (decimal?)6923.125, (decimal?)239.875, (decimal?)20164.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23563, Nebula.NebulaType.Planetary, "Ongairk XJ-A e9", 6, true, "Ongairk XJ-A e9", (decimal?)6546.25, (decimal?)395.03125, (decimal?)19508.375, (int)10 )); + AllOfThem.Add(new Nebula( 23564, Nebula.NebulaType.Planetary, "Ongairk YK-X e1-1859", 6, true, "Ongairk YK-X e1-1859", (decimal?)6357.28125, (decimal?)928.65625, (decimal?)19762.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23670, Nebula.NebulaType.Planetary, "Pheia Auscs QS-U e2-26", 6, true, "Pheia Auscs QS-U e2-26", (decimal?)8301.0625, (decimal?)3.5, (decimal?)26323.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23672, Nebula.NebulaType.Planetary, "Pheia Auscs VE-R e4-499", 6, true, "Pheia Auscs VE-R e4-499", (decimal?)7796.8125, (decimal?)-6.40625, (decimal?)26618.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23673, Nebula.NebulaType.Planetary, "Pheia Auscs VO-A e20", 6, true, "Pheia Auscs VO-A e20", (decimal?)7916.78125, (decimal?)537.375, (decimal?)25972.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23760, Nebula.NebulaType.Planetary, "Phipai QO-R e4-11", 6, true, "Phipai QO-R e4-11", (decimal?)11524.03125, (decimal?)446.75, (decimal?)27982.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23761, Nebula.NebulaType.Planetary, "Phipai WE-R e4-179", 6, true, "Phipai WE-R e4-179", (decimal?)11844.59375, (decimal?)45.375, (decimal?)27956.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23793, Nebula.NebulaType.Planetary, "Phipue LS-T e3-20", 6, true, "Phipue LS-T e3-20", (decimal?)10773.90625, (decimal?)698.96875, (decimal?)27779.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23941, Nebula.NebulaType.Planetary, "Phraa Prao AQ-Y E65", 6, true, "Phraa Prao AQ-Y e65", (decimal?)7687.4375, (decimal?)-977.65625, (decimal?)26034.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24024, Nebula.NebulaType.Planetary, "Phroea Ploe DK-A e2925", 6, true, "Phroea Ploe DK-A e2925", (decimal?)6263.0625, (decimal?)-876.125, (decimal?)23291.875, (int)10 )); + AllOfThem.Add(new Nebula( 24102, Nebula.NebulaType.Planetary, "Phroi Flyao BB-W e2-459", 6, true, "Phroi Flyao BB-W e2-459", (decimal?)6949.9375, (decimal?)-91.28125, (decimal?)23849.875, (int)10 )); + AllOfThem.Add(new Nebula( 24103, Nebula.NebulaType.Planetary, "Phroi flyao fq-y e2109", 6, true, "Phroi Flyao FQ-Y e2109", (decimal?)7255.65625, (decimal?)-945.34375, (decimal?)23436.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24104, Nebula.NebulaType.Planetary, "Phroi flyao hl-y e1308", 6, true, "Phroi Flyao HL-Y e1308", (decimal?)7184.28125, (decimal?)-997.8125, (decimal?)23518.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24106, Nebula.NebulaType.Planetary, "Phroi Flyao NN-S e4-3304", 6, true, "Phroi Flyao NN-S e4-3304", (decimal?)7547.625, (decimal?)-59.9375, (decimal?)24127.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24151, Nebula.NebulaType.Planetary, "Phrua Byoe EH-U e3-1", 6, true, "Phrua Byoe EH-U e3-1", (decimal?)14475.5, (decimal?)-41.8125, (decimal?)36738, (int)10 )); + AllOfThem.Add(new Nebula( 24155, Nebula.NebulaType.Planetary, "Phrua Pruae RO-Q e5-35", 6, true, "Phrua Pruae RO-Q e5-35", (decimal?)12363.5625, (decimal?)-337.03125, (decimal?)26806.875, (int)10 )); + AllOfThem.Add(new Nebula( 24508, Nebula.NebulaType.Planetary, "Schee Ploe GR-V E2-4177", 6, true, "Schee Ploe GR-V e2-4177", (decimal?)5729.9375, (decimal?)-482.4375, (decimal?)22585.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24512, Nebula.NebulaType.Planetary, "Schee Ploe RN-T e3-70", 6, true, "Schee Ploe RN-T e3-70", (decimal?)6332.03125, (decimal?)-793.15625, (decimal?)22765.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24515, Nebula.NebulaType.Planetary, "Schee Ploe YP-O e6-1254", 6, true, "Schee Ploe YP-O e6-1254", (decimal?)6109.96875, (decimal?)-414.375, (decimal?)23229.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24679, Nebula.NebulaType.Planetary, "Shrogeau EW-N e6-501", 6, true, "Shrogeau EW-N e6-501", (decimal?)5780.59375, (decimal?)276.59375, (decimal?)21825.625, (int)10 )); + AllOfThem.Add(new Nebula( 24680, Nebula.NebulaType.Planetary, "Shrogeau FV-Y e3050", 6, true, "Shrogeau FV-Y e3050", (decimal?)6310.09375, (decimal?)589.40625, (decimal?)20943.625, (int)10 )); + AllOfThem.Add(new Nebula( 24681, Nebula.NebulaType.Planetary, "Shrogeau GG-Y e119", 6, true, "Shrogeau GG-Y e119", (decimal?)5430.875, (decimal?)31.71875, (decimal?)20932.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24682, Nebula.NebulaType.Planetary, "Shrogeau IG-Y e380", 6, true, "Shrogeau IG-Y e380", (decimal?)5707.46875, (decimal?)9.25, (decimal?)20936.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24683, Nebula.NebulaType.Planetary, "Shrogeau mc-v e2-1976", 6, true, "Shrogeau MC-V e2-1976", (decimal?)5772.46875, (decimal?)365.96875, (decimal?)21320.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24685, Nebula.NebulaType.Planetary, "Shrogeau YP-P e5-6050", 6, true, "Shrogeau YP-P e5-6050", (decimal?)5506.5, (decimal?)244.375, (decimal?)21715.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24686, Nebula.NebulaType.Planetary, "Shrogeau YP-P e5-8620", 6, true, "Shrogeau YP-P e5-8620", (decimal?)5505.09375, (decimal?)158.25, (decimal?)21759.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24687, Nebula.NebulaType.Planetary, "Shrogeau ZA-O e6-8630", 6, true, "Shrogeau ZA-O e6-8630", (decimal?)5257.71875, (decimal?)399.59375, (decimal?)21905.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24688, Nebula.NebulaType.Planetary, "Shrogee NS-U e2-189", 6, true, "Shrogee NS-U e2-189", (decimal?)6537.1875, (decimal?)105.375, (decimal?)21184.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24689, Nebula.NebulaType.Planetary, "Shrogee QE-Q e5-967", 6, true, "Shrogee QE-Q e5-967", (decimal?)6378.5625, (decimal?)691.9375, (decimal?)21760.75, (int)10 )); + AllOfThem.Add(new Nebula( 24690, Nebula.NebulaType.Planetary, "Shrongio ZE-A e105", 6, true, "Shrongio ZE-A e105", (decimal?)9093.25, (decimal?)168.53125, (decimal?)20717.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24691, Nebula.NebulaType.Planetary, "Shrongoea FR-N e6-130", 6, true, "Shrongoea FR-N e6-130", (decimal?)10680.4375, (decimal?)99, (decimal?)21833.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24702, Nebula.NebulaType.Planetary, "Sphaukea GW-V e2-43", 6, true, "Sphaukea GW-V e2-43", (decimal?)9869.59375, (decimal?)-282.71875, (decimal?)28871.625, (int)10 )); + AllOfThem.Add(new Nebula( 24703, Nebula.NebulaType.Planetary, "Sphaukea SO-Q e5-19", 6, true, "Sphaukea SO-Q e5-19", (decimal?)9895.84375, (decimal?)-330.1875, (decimal?)29361.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24841, Nebula.NebulaType.Planetary, "Stuemeou BK-A e33", 6, true, "Stuemeou BK-A e33", (decimal?)7187.3125, (decimal?)298.90625, (decimal?)25948.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24844, Nebula.NebulaType.Planetary, "Stuemeou KW-W e1-12", 6, true, "Stuemeou KW-W e1-12", (decimal?)7439.9375, (decimal?)375.46875, (decimal?)26170.25, (int)10 )); + AllOfThem.Add(new Nebula( 24845, Nebula.NebulaType.Planetary, "Stuemeou LR-W e1-3281", 6, true, "Stuemeou LR-W e1-3281", (decimal?)7171.1875, (decimal?)164.53125, (decimal?)26180.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24846, Nebula.NebulaType.Planetary, "Stuemeou NM-W e1-5915", 6, true, "Stuemeou NM-W e1-5915", (decimal?)7182.5, (decimal?)92.78125, (decimal?)26139.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24878, Nebula.NebulaType.Planetary, "Stuemoa AQ-P e5-48", 6, true, "Stuemoa AQ-P e5-48", (decimal?)12117.3125, (decimal?)261.625, (decimal?)26811.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25145, Nebula.NebulaType.Planetary, "Wepi HH-U e3-2501", 6, true, "Wepi HH-U e3-2501", (decimal?)8521.34375, (decimal?)-173, (decimal?)24002.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25146, Nebula.NebulaType.Planetary, "Wepi KD-S e4-120", 6, true, "Wepi KD-S e4-120", (decimal?)7738.96875, (decimal?)-412.84375, (decimal?)24201.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25147, Nebula.NebulaType.Planetary, "Wepi VZ-O e6-48", 6, true, "Wepi VZ-O e6-48", (decimal?)8817.21875, (decimal?)-122.4375, (decimal?)24515.71875, (int)10 )); + AllOfThem.Add(new Nebula( 25204, Nebula.NebulaType.Planetary, "Weqaea AG-X e1-2", 6, true, "Weqaea AG-X e1-2", (decimal?)10213.6875, (decimal?)644.46875, (decimal?)36479, (int)10 )); + AllOfThem.Add(new Nebula( 25245, Nebula.NebulaType.Planetary, "Whamboo EL-P e5-304", 6, true, "Whamboo EL-P e5-304", (decimal?)6072.25, (decimal?)104.6875, (decimal?)19213.4375, (int)10 )); + AllOfThem.Add(new Nebula( 25246, Nebula.NebulaType.Planetary, "Whamboo WK-O e6-134", 6, true, "Whamboo WK-O e6-134", (decimal?)5393.9375, (decimal?)697.28125, (decimal?)19283.0625, (int)10 )); + AllOfThem.Add(new Nebula( 25247, Nebula.NebulaType.Planetary, "Whamboo XE-R e4-510", 6, true, "Whamboo XE-R e4-510", (decimal?)5620.96875, (decimal?)61.6875, (decimal?)18939.25, (int)10 )); + AllOfThem.Add(new Nebula( 25275, Nebula.NebulaType.Planetary, "Zunaea FQ-Y e1046", 6, true, "Zunaea FQ-Y e1046", (decimal?)8445.53125, (decimal?)302.125, (decimal?)23458.75, (int)10 )); + AllOfThem.Add(new Nebula( 25276, Nebula.NebulaType.Planetary, "Zunaea PD-B e9", 6, true, "Zunaea PD-B e9", (decimal?)7793.4375, (decimal?)964.03125, (decimal?)23301.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25277, Nebula.NebulaType.Planetary, "Zunaea WY-A e35", 6, true, "Zunaea WY-A e35", (decimal?)8632.5, (decimal?)849.09375, (decimal?)23351.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25299, Nebula.NebulaType.Planetary, "Zuneae GA-A e2867", 6, true, "Zuneae GA-A e2867", (decimal?)6087.4375, (decimal?)24.34375, (decimal?)23310.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25320, Nebula.NebulaType.Planetary, "Zunia AV-Y e40", 6, true, "Zunia AV-Y e40", (decimal?)9289.5625, (decimal?)506.84375, (decimal?)23494.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25321, Nebula.NebulaType.Planetary, "Zunia BQ-Y e51", 6, true, "Zunia BQ-Y e51", (decimal?)9164.84375, (decimal?)348.15625, (decimal?)23444.625, (int)10 )); + AllOfThem.Add(new Nebula( 25360, Nebula.NebulaType.Planetary, "Zunu AQ-Y e2338", 6, true, "Zunu AQ-Y e2338", (decimal?)6476.75, (decimal?)318.71875, (decimal?)23557.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25361, Nebula.NebulaType.Planetary, "Zunu BP-A e95", 6, true, "Zunu BP-A e95", (decimal?)7600.59375, (decimal?)592.375, (decimal?)23409.84375, (int)10 )); + AllOfThem.Add(new Nebula( 25362, Nebula.NebulaType.Planetary, "Zunu GR-W e1-4113", 6, true, "Zunu GR-W e1-4113", (decimal?)6388.625, (decimal?)175.53125, (decimal?)23693.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25363, Nebula.NebulaType.Planetary, "Zunu GW-N e6-188", 6, true, "Zunu GW-N e6-188", (decimal?)7350.15625, (decimal?)293.21875, (decimal?)24390.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25364, Nebula.NebulaType.Planetary, "Zunu HA-A e144", 6, true, "Zunu HA-A e144", (decimal?)7490.8125, (decimal?)30.1875, (decimal?)23319.71875, (int)10 )); + AllOfThem.Add(new Nebula( 25365, Nebula.NebulaType.Planetary, "Zunu MC-V e2-3259", 6, true, "Zunu MC-V e2-3259", (decimal?)7014.9375, (decimal?)358.4375, (decimal?)23735.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25366, Nebula.NebulaType.Planetary, "Zunu ZP-O e6-2249", 6, true, "Zunu ZP-O e6-2249", (decimal?)7591.6875, (decimal?)882.8125, (decimal?)24398.1875, (int)10 )); + AllOfThem.Add(new Nebula( 30105, Nebula.NebulaType.Real, "NGC 5873", 6, true, "CD-37 10033", null, null, null, (int)100 )); + } + public static void init_Region_7() { + AllOfThem.Add(new Nebula( 10060, Nebula.NebulaType.Standard, "Bleethue AA-A h36", 7, true, "Bleethue KR-A b15-0", (decimal?)-7171.15625, (decimal?)-992.84375, (decimal?)37657.8125, (int)100 )); + AllOfThem.Add(new Nebula( 10061, Nebula.NebulaType.Standard, "Dryiquae AA-A h32", 7, true, "Dryiquae SO-Z d13-3", (decimal?)-4324.59375, (decimal?)-1296.125, (decimal?)41157.46875, (int)100 )); + AllOfThem.Add(new Nebula( 10062, Nebula.NebulaType.Standard, "Phleedgoe AA-A h108", 7, true, "Phleedgoea TZ-F d11-209", (decimal?)-8261.03125, (decimal?)-802.53125, (decimal?)34530.40625, (int)100 )); + AllOfThem.Add(new Nebula( 10063, Nebula.NebulaType.Standard, "Phleedgoe AA-A h40", 7, true, "Phleedgoe DL-Y g805", (decimal?)-10545.3125, (decimal?)-474.40625, (decimal?)34555.59375, (int)100 )); + AllOfThem.Add(new Nebula( 10064, Nebula.NebulaType.Standard, "Phoi Bre AA-A h8", 7, true, "Phoi Bre QD-B d395", (decimal?)-8816.8125, (decimal?)509.3125, (decimal?)36060.65625, (int)100 )); + AllOfThem.Add(new Nebula( 10065, Nebula.NebulaType.Standard, "Phoi Phyloea AA-A h167", 7, true, "Phoi Phyloea UO-Z e1", (decimal?)-5742.28125, (decimal?)2501.71875, (decimal?)33728.5, (int)100 )); + AllOfThem.Add(new Nebula( 10066, Nebula.NebulaType.Standard, "Phraa Byoe AA-A h14", 7, true, "Phraa Byoe RE-A c29-151", (decimal?)11.9375, (decimal?)-671.875, (decimal?)37332.96875, (int)100 )); + AllOfThem.Add(new Nebula( 10067, Nebula.NebulaType.Standard, "Phroea Bluae AA-A h19", 7, true, "Phroea Bluae LI-E c14-190", (decimal?)-4098.59375, (decimal?)-298.46875, (decimal?)34104.75, (int)100 )); + AllOfThem.Add(new Nebula( 10068, Nebula.NebulaType.Standard, "Phroea Gree AA-A h34", 7, true, "Phroea Gree PU-D d13-3163", (decimal?)-6833.40625, (decimal?)-259.40625, (decimal?)37191.21875, (int)100 )); + AllOfThem.Add(new Nebula( 10069, Nebula.NebulaType.Standard, "Scheau Byoe AA-A h187", 7, true, "Scheau Byoe AF-P d6-482", (decimal?)-5319.375, (decimal?)-593.53125, (decimal?)35337.53125, (int)100 )); + AllOfThem.Add(new Nebula( 10070, Nebula.NebulaType.Standard, "Segnao AA-A h50", 7, true, "Segnao LN-Q d6-2281", (decimal?)-10476.5625, (decimal?)-60.125, (decimal?)36628.875, (int)100 )); + AllOfThem.Add(new Nebula( 10071, Nebula.NebulaType.Standard, "Teqo AA-A h45", 7, true, "Teqo EB-V c16-5", (decimal?)-8294.625, (decimal?)-1143, (decimal?)36797.53125, (int)100 )); + AllOfThem.Add(new Nebula( 10072, Nebula.NebulaType.Standard, "Vegnue AA-A h17", 7, true, "Vegnue WK-E d12-329", (decimal?)-5661.28125, (decimal?)595.9375, (decimal?)37168.40625, (int)100 )); + AllOfThem.Add(new Nebula( 10073, Nebula.NebulaType.Standard, "Bleia5 YE-A h30", 7, true, "Bleia5 AV-Y e551", (decimal?)-637.71875, (decimal?)34.90625, (decimal?)36683.53125, (int)100 )); + AllOfThem.Add(new Nebula( 20081, Nebula.NebulaType.Planetary, "Aiphairns VZ-P e5-33", 7, true, "Aiphairns VZ-P e5-33", (decimal?)-9743.75, (decimal?)574.625, (decimal?)34531.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20082, Nebula.NebulaType.Planetary, "Aiphaits BF-R e4-239", 7, true, "Aiphaits BF-R e4-239", (decimal?)-7746.59375, (decimal?)101.5, (decimal?)34325.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20083, Nebula.NebulaType.Planetary, "Aiphaits DQ-P e5-1427", 7, true, "Aiphaits DQ-P e5-1427", (decimal?)-7840.875, (decimal?)157.40625, (decimal?)34587.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20084, Nebula.NebulaType.Planetary, "Aiphaits UJ-R e4-2746", 7, true, "Aiphaits UJ-R e4-2746", (decimal?)-8676.5, (decimal?)271.21875, (decimal?)34436.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20085, Nebula.NebulaType.Planetary, "Aiphaits ZP-P e5-207", 7, true, "Aiphaits ZP-P e5-207", (decimal?)-8483.625, (decimal?)280.9375, (decimal?)34608.75, (int)10 )); + AllOfThem.Add(new Nebula( 20087, Nebula.NebulaType.Planetary, "Aiphaitt JW-W e1-1202", 7, true, "Aiphaitt JW-W e1-1202", (decimal?)-4256.53125, (decimal?)329.375, (decimal?)33957.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20088, Nebula.NebulaType.Planetary, "Aiphaitt QX-U e2-1354", 7, true, "Aiphaitt QX-U e2-1354", (decimal?)-4127.5, (decimal?)238.8125, (decimal?)33979.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20089, Nebula.NebulaType.Planetary, "Aiphaitt WJ-A e6622", 7, true, "Aiphaitt WJ-A e6622", (decimal?)-5110.84375, (decimal?)436.8125, (decimal?)33631.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20291, Nebula.NebulaType.Planetary, "Bleethai CH-U e3-248", 7, true, "Bleethai CH-U e3-248", (decimal?)-6413.75, (decimal?)-181.8125, (decimal?)38053.78125, (int)10 )); + AllOfThem.Add(new Nebula( 20292, Nebula.NebulaType.Planetary, "Bleethai TD-B e3254", 7, true, "Bleethai TD-B e3254", (decimal?)-5656.40625, (decimal?)-219.5, (decimal?)37476.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20293, Nebula.NebulaType.Planetary, "Bleethoae SU-O e6-245", 7, true, "Bleethoae SU-O e6-245", (decimal?)-2298.34375, (decimal?)-298.71875, (decimal?)38515.25, (int)10 )); + AllOfThem.Add(new Nebula( 20294, Nebula.NebulaType.Planetary, "Bleethuae JN-S e4-175", 7, true, "Bleethuae JN-S e4-175", (decimal?)499.96875, (decimal?)-79.5625, (decimal?)38239.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21172, Nebula.NebulaType.Planetary, "Dryiqao WJ-Z e2", 7, true, "Dryiqao WJ-Z e2", (decimal?)-1851.9375, (decimal?)-263.5, (decimal?)40186.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22328, Nebula.NebulaType.Planetary, "Fleasoae XF-O e6-7", 7, true, "Fleasoae XF-O e6-7", (decimal?)-4994.875, (decimal?)1767.3125, (decimal?)34615.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22355, Nebula.NebulaType.Planetary, "Flyae Flyi EB-X e1-25", 7, true, "Flyae Flyi EB-X e1-25", (decimal?)-942.8125, (decimal?)-808.8125, (decimal?)37669.25, (int)10 )); + AllOfThem.Add(new Nebula( 22356, Nebula.NebulaType.Planetary, "Flyae Flyi LX-T e3-58", 7, true, "Flyae Flyi LX-T e3-58", (decimal?)-417.4375, (decimal?)-481.09375, (decimal?)38116.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22357, Nebula.NebulaType.Planetary, "Flyae Flyuae WP-O e6-1", 7, true, "Flyae Flyuae WP-O e6-1", (decimal?)-3182.59375, (decimal?)-424.59375, (decimal?)38534.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22358, Nebula.NebulaType.Planetary, "Flyae Flyuae YP-X e1-227", 7, true, "Flyae Flyuae YP-X e1-227", (decimal?)-3530.4375, (decimal?)-314.71875, (decimal?)37694.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22361, Nebula.NebulaType.Planetary, "Flyeia Flyi HH-U e3-169", 7, true, "Flyeia Flyi HH-U e3-169", (decimal?)-4329.0625, (decimal?)-127.6875, (decimal?)38006.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22362, Nebula.NebulaType.Planetary, "Flyeia Flyi KN-S e4-8615", 7, true, "Flyeia Flyi KN-S e4-8615", (decimal?)-4510.9375, (decimal?)-150.8125, (decimal?)38246.75, (int)10 )); + AllOfThem.Add(new Nebula( 22363, Nebula.NebulaType.Planetary, "Flyeia Flyi PT-R e4-1258", 7, true, "Flyeia Flyi PT-R e4-1258", (decimal?)-5022.1875, (decimal?)-702.28125, (decimal?)38254.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22364, Nebula.NebulaType.Planetary, "Flyeia Flyi TZ-O e6-8594", 7, true, "Flyeia Flyi TZ-O e6-8594", (decimal?)-4370.53125, (decimal?)-69.84375, (decimal?)38459.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22365, Nebula.NebulaType.Planetary, "Flyeia Flyi WO-Z e903", 7, true, "Flyeia Flyi WO-Z e903", (decimal?)-4169.90625, (decimal?)-170.78125, (decimal?)37637.625, (int)10 )); + AllOfThem.Add(new Nebula( 22366, Nebula.NebulaType.Planetary, "Flyeia Flyi ZJ-Z e5281", 7, true, "Flyeia Flyi ZJ-Z e5281", (decimal?)-3913.21875, (decimal?)-265.40625, (decimal?)37519.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22377, Nebula.NebulaType.Planetary, "Flyua Flyuae NH-V e2-497", 7, true, "Flyua Flyuae NH-V e2-497", (decimal?)-7794.5625, (decimal?)-769.8125, (decimal?)37880.625, (int)10 )); + AllOfThem.Add(new Nebula( 22421, Nebula.NebulaType.Planetary, "Gooraa HW-V e2-51", 7, true, "Gooraa HW-V e2-51", (decimal?)-7904.9375, (decimal?)-333.53125, (decimal?)39104.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22422, Nebula.NebulaType.Planetary, "Goorai NO-Q e5-12", 7, true, "Goorai NO-Q e5-12", (decimal?)1487, (decimal?)-317.15625, (decimal?)39604.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22423, Nebula.NebulaType.Planetary, "Gooreia WO-Z e131", 7, true, "Gooreia WO-Z e131", (decimal?)-5436.84375, (decimal?)-155.8125, (decimal?)38817.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22445, Nebula.NebulaType.Planetary, "Greethaei TS-U e2-1214", 7, true, "Greethaei TS-U e2-1214", (decimal?)-7778, (decimal?)90, (decimal?)37938.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22446, Nebula.NebulaType.Planetary, "Greethea FG-Y e42", 7, true, "Greethea FG-Y e42", (decimal?)-7526.53125, (decimal?)19.40625, (decimal?)37524.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22447, Nebula.NebulaType.Planetary, "Greethea GR-W e1-3243", 7, true, "Greethea GR-W e1-3243", (decimal?)-7722.375, (decimal?)210.875, (decimal?)37720.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22448, Nebula.NebulaType.Planetary, "Greethea YP-P e5-159", 7, true, "Greethea YP-P e5-159", (decimal?)-7325.84375, (decimal?)279.75, (decimal?)38337.75, (int)10 )); + AllOfThem.Add(new Nebula( 22452, Nebula.NebulaType.Planetary, "Greethuia OS-U e2-8222", 7, true, "Greethuia OS-U e2-8222", (decimal?)-6113.03125, (decimal?)130.34375, (decimal?)37891.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22453, Nebula.NebulaType.Planetary, "Greethuia RX-U e2-436", 7, true, "Greethuia RX-U e2-436", (decimal?)-5311.96875, (decimal?)210.4375, (decimal?)37838.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22482, Nebula.NebulaType.Planetary, "Hypaa Greau UJ-Q e5-71", 7, true, "Hypaa Greau UJ-Q e5-71", (decimal?)-10587.9375, (decimal?)-383, (decimal?)35845.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22483, Nebula.NebulaType.Planetary, "Hypaa Greau XO-Z e136", 7, true, "Hypaa Greau XO-Z e136", (decimal?)-10352.09375, (decimal?)-34.4375, (decimal?)35064.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22484, Nebula.NebulaType.Planetary, "Hypaa Greau XU-X e1-264", 7, true, "Hypaa Greau XU-X e1-264", (decimal?)-10984.25, (decimal?)-143.4375, (decimal?)35118.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22487, Nebula.NebulaType.Planetary, "Hypau Brai JH-V e2-17", 7, true, "Hypau Brai JH-V e2-17", (decimal?)-11040.65625, (decimal?)557.1875, (decimal?)35288.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22488, Nebula.NebulaType.Planetary, "Hypau Brai KR-W e1-178", 7, true, "Hypau Brai KR-W e1-178", (decimal?)-10902.3125, (decimal?)262.0625, (decimal?)35242.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22489, Nebula.NebulaType.Planetary, "Hypau Brai PM-W e1-509", 7, true, "Hypau Brai PM-W e1-509", (decimal?)-10382, (decimal?)0.40625, (decimal?)35190.25, (int)10 )); + AllOfThem.Add(new Nebula( 22490, Nebula.NebulaType.Planetary, "Hypau Brai ZZ-P e5-90", 7, true, "Hypau Brai ZZ-P e5-90", (decimal?)-10460.3125, (decimal?)564, (decimal?)35830.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22528, Nebula.NebulaType.Planetary, "Hypiae Briae BF-R e4-9452", 7, true, "Hypiae Briae BF-R e4-9452", (decimal?)-5266, (decimal?)123.1875, (decimal?)35594.5, (int)10 )); + AllOfThem.Add(new Nebula( 22529, Nebula.NebulaType.Planetary, "Hypiae Briae CR-N e6-25", 7, true, "Hypiae Briae CR-N e6-25", (decimal?)-6392.59375, (decimal?)58.03125, (decimal?)36012.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22530, Nebula.NebulaType.Planetary, "Hypiae Briae FR-N e6-3007", 7, true, "Hypiae Briae FR-N e6-3007", (decimal?)-5975.3125, (decimal?)-6.53125, (decimal?)36014.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22531, Nebula.NebulaType.Planetary, "Hypiae Briae FR-N e6-6144", 7, true, "Hypiae Briae FR-N e6-6144", (decimal?)-5923.125, (decimal?)50.90625, (decimal?)36022.5, (int)10 )); + AllOfThem.Add(new Nebula( 22532, Nebula.NebulaType.Planetary, "Hypiae Briae NM-W e1-6505", 7, true, "Hypiae Briae NM-W e1-6505", (decimal?)-5585.1875, (decimal?)103.9375, (decimal?)35116.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22533, Nebula.NebulaType.Planetary, "Hypiae Briae OS-U e2-507", 7, true, "Hypiae Briae OS-U e2-507", (decimal?)-6107.65625, (decimal?)69.78125, (decimal?)35280.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22534, Nebula.NebulaType.Planetary, "Hypiae Briae UY-S e3-494", 7, true, "Hypiae Briae UY-S e3-494", (decimal?)-5724.5625, (decimal?)9.5625, (decimal?)35487.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22535, Nebula.NebulaType.Planetary, "Hypiae Briae YA-O e6-1396", 7, true, "Hypiae Briae YA-O e6-1396", (decimal?)-6378.8125, (decimal?)447.03125, (decimal?)35901.375, (int)10 )); + AllOfThem.Add(new Nebula( 22581, Nebula.NebulaType.Planetary, "Hypio Gree AB-W e2-5681", 7, true, "Hypio Gree AB-W e2-5681", (decimal?)-2300.03125, (decimal?)-178.1875, (decimal?)35316.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22582, Nebula.NebulaType.Planetary, "Hypio Gree AV-Y e4656", 7, true, "Hypio Gree AV-Y e4656", (decimal?)-2249.46875, (decimal?)-782.53125, (decimal?)35032.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22583, Nebula.NebulaType.Planetary, "Hypio Gree BG-X e1-1443", 7, true, "Hypio Gree BG-X e1-1443", (decimal?)-2421, (decimal?)-617.40625, (decimal?)35247.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22584, Nebula.NebulaType.Planetary, "Hypio Gree CB-W e2-2090", 7, true, "Hypio Gree CB-W e2-2090", (decimal?)-1898.8125, (decimal?)-68.34375, (decimal?)35407.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22585, Nebula.NebulaType.Planetary, "Hypio Gree DR-V e2-5679", 7, true, "Hypio Gree DR-V e2-5679", (decimal?)-2417.46875, (decimal?)-384.09375, (decimal?)35361.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22586, Nebula.NebulaType.Planetary, "Hypio Gree DV-Y e1147", 7, true, "Hypio Gree DV-Y e1147", (decimal?)-1722.65625, (decimal?)-801.28125, (decimal?)35070.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22587, Nebula.NebulaType.Planetary, "Hypio Gree EB-X e1-4581", 7, true, "Hypio Gree EB-X e1-4581", (decimal?)-2286.3125, (decimal?)-675.875, (decimal?)35142.25, (int)10 )); + AllOfThem.Add(new Nebula( 22588, Nebula.NebulaType.Planetary, "Hypio Gree GQ-Y e4170", 7, true, "Hypio Gree GQ-Y e4170", (decimal?)-1649.9375, (decimal?)-922.71875, (decimal?)35032.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22589, Nebula.NebulaType.Planetary, "Hypio Gree GW-W e1-2599", 7, true, "Hypio Gree GW-W e1-2599", (decimal?)-2207.5, (decimal?)-974.25, (decimal?)35175.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22590, Nebula.NebulaType.Planetary, "Hypio Gree LN-S e4-121", 7, true, "Hypio Gree LN-S e4-121", (decimal?)-1801.21875, (decimal?)-49.09375, (decimal?)35602.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22591, Nebula.NebulaType.Planetary, "Hypio Gree PD-S e4-43", 7, true, "Hypio Gree PD-S e4-43", (decimal?)-1795.90625, (decimal?)-487.4375, (decimal?)35691.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22592, Nebula.NebulaType.Planetary, "Hypio Gree PI-S e4-86", 7, true, "Hypio Gree PI-S e4-86", (decimal?)-1453.59375, (decimal?)-219.5, (decimal?)35681.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22593, Nebula.NebulaType.Planetary, "Hypio Gree SE-Q e5-3203", 7, true, "Hypio Gree SE-Q e5-3203", (decimal?)-2295.75, (decimal?)-523.53125, (decimal?)35862.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22594, Nebula.NebulaType.Planetary, "Hypio Gree VO-A e4525", 7, true, "Hypio Gree VO-A e4525", (decimal?)-2399.25, (decimal?)-804.4375, (decimal?)34927.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22595, Nebula.NebulaType.Planetary, "Hypio Gree XU-X e1-8476", 7, true, "Hypio Gree XU-X e1-8476", (decimal?)-2137.96875, (decimal?)-177.4375, (decimal?)35123.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22610, Nebula.NebulaType.Planetary, "Hypo Chreou WE-R e4-0", 7, true, "Hypo Chreou WE-R e4-0", (decimal?)-9978.5, (decimal?)-22.375, (decimal?)33105.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22628, Nebula.NebulaType.Planetary, "Hypoae Briae DR-N e6-2323", 7, true, "Hypoae Briae DR-N e6-2323", (decimal?)-4966.5, (decimal?)121.21875, (decimal?)35970, (int)10 )); + AllOfThem.Add(new Nebula( 22629, Nebula.NebulaType.Planetary, "Hypoae Briae EB-O e6-87", 7, true, "Hypoae Briae EB-O e6-87", (decimal?)-4192.65625, (decimal?)331.625, (decimal?)36017.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22630, Nebula.NebulaType.Planetary, "Hypoae Briae EC-U e3-6", 7, true, "Hypoae Briae EC-U e3-6", (decimal?)-5165.40625, (decimal?)968.90625, (decimal?)35416.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22631, Nebula.NebulaType.Planetary, "Hypoae Briae GA-A e34", 7, true, "Hypoae Briae GA-A e34", (decimal?)-4065.71875, (decimal?)-6.78125, (decimal?)34888, (int)10 )); + AllOfThem.Add(new Nebula( 22632, Nebula.NebulaType.Planetary, "Hypoae Briae GQ-Y e435", 7, true, "Hypoae Briae GQ-Y e435", (decimal?)-4115.71875, (decimal?)303.46875, (decimal?)34986.875, (int)10 )); + AllOfThem.Add(new Nebula( 22633, Nebula.NebulaType.Planetary, "Hypoae Briae UD-B e1023", 7, true, "Hypoae Briae UD-B e1023", (decimal?)-4197.5625, (decimal?)1080.5625, (decimal?)34925.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22634, Nebula.NebulaType.Planetary, "Hypoae Briae UJ-Q e5-260", 7, true, "Hypoae Briae UJ-Q e5-260", (decimal?)-4106.5, (decimal?)833.75, (decimal?)35831.625, (int)10 )); + AllOfThem.Add(new Nebula( 22635, Nebula.NebulaType.Planetary, "Hypoae Briae UO-A e2654", 7, true, "Hypoae Briae UO-A e2654", (decimal?)-5091.0625, (decimal?)551.1875, (decimal?)34867.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22636, Nebula.NebulaType.Planetary, "Hypoae Briae VE-Z e999", 7, true, "Hypoae Briae VE-Z e999", (decimal?)-4907.3125, (decimal?)932.1875, (decimal?)35023.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22725, Nebula.NebulaType.Planetary, "Hypou Briae CR-N e6-2635", 7, true, "Hypou Briae CR-N e6-2635", (decimal?)-1314.65625, (decimal?)15.40625, (decimal?)35981.375, (int)10 )); + AllOfThem.Add(new Nebula( 22726, Nebula.NebulaType.Planetary, "Hypou Briae KX-U e2-238", 7, true, "Hypou Briae KX-U e2-238", (decimal?)-1264.65625, (decimal?)278.3125, (decimal?)35363.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22727, Nebula.NebulaType.Planetary, "Hypou Briae KX-U e2-625", 7, true, "Hypou Briae KX-U e2-625", (decimal?)-1256.5625, (decimal?)188.625, (decimal?)35406.625, (int)10 )); + AllOfThem.Add(new Nebula( 22728, Nebula.NebulaType.Planetary, "Hypou Briae SU-O e6-382", 7, true, "Hypou Briae SU-O e6-382", (decimal?)-926.46875, (decimal?)1002.3125, (decimal?)36031.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22729, Nebula.NebulaType.Planetary, "Hypou Briae TY-S e3-9475", 7, true, "Hypou Briae TY-S e3-9475", (decimal?)-760.40625, (decimal?)-19.1875, (decimal?)35454.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22730, Nebula.NebulaType.Planetary, "Hypou Briae UO-A e6756", 7, true, "Hypou Briae UO-A e6756", (decimal?)-1284.53125, (decimal?)581.65625, (decimal?)34828.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22731, Nebula.NebulaType.Planetary, "Hypou Briae XE-R e4-6433", 7, true, "Hypou Briae XE-R e4-6433", (decimal?)-720.9375, (decimal?)109.3125, (decimal?)35678.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22801, Nebula.NebulaType.Planetary, "Hypumau FF-A e16", 7, true, "Hypumau FF-A e16", (decimal?)1190.03125, (decimal?)209.0625, (decimal?)39971.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22802, Nebula.NebulaType.Planetary, "Hyuqau DW-V e2-391", 7, true, "Hyuqau DW-V e2-391", (decimal?)-738.1875, (decimal?)-266.375, (decimal?)35382, (int)10 )); + AllOfThem.Add(new Nebula( 22804, Nebula.NebulaType.Planetary, "Hyuqau MT-Q e5-11322", 7, true, "Hyuqau MT-Q e5-11322", (decimal?)-925.625, (decimal?)-44.6875, (decimal?)35792.125, (int)10 )); + AllOfThem.Add(new Nebula( 22805, Nebula.NebulaType.Planetary, "Hyuqe GN-S e4-269", 7, true, "Hyuqe GN-S e4-269", (decimal?)-10288.84375, (decimal?)-26.09375, (decimal?)35687.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22811, Nebula.NebulaType.Planetary, "Hyuqi DA-Z e297", 7, true, "Hyuqi DA-Z e297", (decimal?)-2756.40625, (decimal?)-549.625, (decimal?)35063.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22812, Nebula.NebulaType.Planetary, "Hyuqi FL-X e1-633", 7, true, "Hyuqi FL-X e1-633", (decimal?)-2674.71875, (decimal?)-370.78125, (decimal?)35135.125, (int)10 )); + AllOfThem.Add(new Nebula( 22813, Nebula.NebulaType.Planetary, "Hyuqi HR-V e2-2370", 7, true, "Hyuqi HR-V e2-2370", (decimal?)-3011.40625, (decimal?)-426.25, (decimal?)35336.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22814, Nebula.NebulaType.Planetary, "Hyuqi MI-S e4-2486", 7, true, "Hyuqi MI-S e4-2486", (decimal?)-3157.46875, (decimal?)-246.90625, (decimal?)35621.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22815, Nebula.NebulaType.Planetary, "Hyuqi PJ-Q e5-447", 7, true, "Hyuqi PJ-Q e5-447", (decimal?)-3741.28125, (decimal?)-426.03125, (decimal?)35894.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22816, Nebula.NebulaType.Planetary, "Hyuqi XU-P e5-107", 7, true, "Hyuqi XU-P e5-107", (decimal?)-3407.1875, (decimal?)-872.5625, (decimal?)35873.875, (int)10 )); + AllOfThem.Add(new Nebula( 22817, Nebula.NebulaType.Planetary, "Hyuqi XU-P e5-2987", 7, true, "Hyuqi XU-P e5-2987", (decimal?)-3362.5625, (decimal?)-866.125, (decimal?)35850.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22819, Nebula.NebulaType.Planetary, "Hyuqoae AF-Z e169", 7, true, "Hyuqoae AF-Z e169", (decimal?)-6675.4375, (decimal?)-396.90625, (decimal?)34940.125, (int)10 )); + AllOfThem.Add(new Nebula( 22820, Nebula.NebulaType.Planetary, "Hyuqoae AW-V e2-379", 7, true, "Hyuqoae AW-V e2-379", (decimal?)-7725.15625, (decimal?)-318.28125, (decimal?)35306.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22821, Nebula.NebulaType.Planetary, "Hyuqoae FR-N e6-58", 7, true, "Hyuqoae FR-N e6-58", (decimal?)-7226.59375, (decimal?)-1298.9375, (decimal?)35982.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22822, Nebula.NebulaType.Planetary, "Hyuqoae GL-Y e71", 7, true, "Hyuqoae GL-Y e71", (decimal?)-7022.28125, (decimal?)-1065.5625, (decimal?)35008.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22823, Nebula.NebulaType.Planetary, "Hyuqoae IH-U e3-9580", 7, true, "Hyuqoae IH-U e3-9580", (decimal?)-6728.625, (decimal?)-35.34375, (decimal?)35432.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22824, Nebula.NebulaType.Planetary, "Hyuqoae QI-B e440", 7, true, "Hyuqoae QI-B e440", (decimal?)-7003.75, (decimal?)-83.6875, (decimal?)34913.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22825, Nebula.NebulaType.Planetary, "Hyuqoae RO-R e4-55", 7, true, "Hyuqoae RO-R e4-55", (decimal?)-7562.34375, (decimal?)-849.5, (decimal?)35649.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22826, Nebula.NebulaType.Planetary, "Hyuqoae TO-Q e5-5547", 7, true, "Hyuqoae TO-Q e5-5547", (decimal?)-6563.0625, (decimal?)-314.875, (decimal?)35846.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22830, Nebula.NebulaType.Planetary, "Hyuquae BL-O e6-217", 7, true, "Hyuquae BL-O e6-217", (decimal?)-4018.59375, (decimal?)-655.71875, (decimal?)35968.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22831, Nebula.NebulaType.Planetary, "Hyuquae KM-V e2-2459", 7, true, "Hyuquae KM-V e2-2459", (decimal?)-4219.9375, (decimal?)-660.46875, (decimal?)35287.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22832, Nebula.NebulaType.Planetary, "Hyuquae LM-W e1-288", 7, true, "Hyuquae LM-W e1-288", (decimal?)-4680, (decimal?)-1222.03125, (decimal?)35149.5, (int)10 )); + AllOfThem.Add(new Nebula( 23633, Nebula.NebulaType.Planetary, "Phaa Briae BF-A e235", 7, true, "Phaa Briae BF-A e235", (decimal?)-4642.75, (decimal?)215.3125, (decimal?)36104.25, (int)10 )); + AllOfThem.Add(new Nebula( 23634, Nebula.NebulaType.Planetary, "Phaa Briae IM-W e1-824", 7, true, "Phaa Briae IM-W e1-824", (decimal?)-5184.8125, (decimal?)23.125, (decimal?)36463.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23635, Nebula.NebulaType.Planetary, "Phaa Briae SD-B e1219", 7, true, "Phaa Briae SD-B e1219", (decimal?)-4477.90625, (decimal?)1037.5625, (decimal?)36123.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23636, Nebula.NebulaType.Planetary, "Phaa Briae YF-O e6-205", 7, true, "Phaa Briae YF-O e6-205", (decimal?)-4805.53125, (decimal?)516.84375, (decimal?)37186.875, (int)10 )); + AllOfThem.Add(new Nebula( 23637, Nebula.NebulaType.Planetary, "Phaa Briae YP-P e5-562", 7, true, "Phaa Briae YP-P e5-562", (decimal?)-4727.5625, (decimal?)169.84375, (decimal?)37042.75, (int)10 )); + AllOfThem.Add(new Nebula( 23638, Nebula.NebulaType.Planetary, "Phaa Chraei DQ-P e5-4921", 7, true, "Phaa Chraei DQ-P e5-4921", (decimal?)-6556.4375, (decimal?)152.875, (decimal?)34501.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23639, Nebula.NebulaType.Planetary, "Phaa Chraei HG-Y e164", 7, true, "Phaa Chraei HG-Y e164", (decimal?)-7109.625, (decimal?)22.71875, (decimal?)33684.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23640, Nebula.NebulaType.Planetary, "Phaa Chraei QD-S e4-181", 7, true, "Phaa Chraei QD-S e4-181", (decimal?)-6677.15625, (decimal?)897.9375, (decimal?)34441.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23641, Nebula.NebulaType.Planetary, "Phaa Chraei TU-O e6-172", 7, true, "Phaa Chraei TU-O e6-172", (decimal?)-7195.09375, (decimal?)974.09375, (decimal?)34745.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23642, Nebula.NebulaType.Planetary, "Phaa Chraei YE-R e4-811", 7, true, "Phaa Chraei YE-R e4-811", (decimal?)-6999.46875, (decimal?)45.375, (decimal?)34376.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23794, Nebula.NebulaType.Planetary, "Phleedgaa BA-Z e294", 7, true, "Phleedgaa BA-Z e294", (decimal?)-5654.5, (decimal?)-545.5625, (decimal?)33688.125, (int)10 )); + AllOfThem.Add(new Nebula( 23795, Nebula.NebulaType.Planetary, "Phleedgaa DH-U e3-5401", 7, true, "Phleedgaa DH-U e3-5401", (decimal?)-6199.78125, (decimal?)-137.09375, (decimal?)34223.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23796, Nebula.NebulaType.Planetary, "Phleedgaa HB-X e1-2607", 7, true, "Phleedgaa HB-X e1-2607", (decimal?)-5596.65625, (decimal?)-741.3125, (decimal?)33862.5, (int)10 )); + AllOfThem.Add(new Nebula( 23797, Nebula.NebulaType.Planetary, "Phleedgaa UJ-Q e5-185", 7, true, "Phleedgaa UJ-Q e5-185", (decimal?)-5370.0625, (decimal?)-467, (decimal?)34479.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23807, Nebula.NebulaType.Planetary, "Phleedgoe FH-U e3-111", 7, true, "Phleedgoe FH-U e3-111", (decimal?)-11008.09375, (decimal?)-46.03125, (decimal?)34290.375, (int)10 )); + AllOfThem.Add(new Nebula( 23808, Nebula.NebulaType.Planetary, "Phleedgoea AV-X e1-171", 7, true, "Phleedgoea AV-X e1-171", (decimal?)-7967.65625, (decimal?)-73.9375, (decimal?)33854.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23885, Nebula.NebulaType.Planetary, "Phoi Bre EA-A e5289", 7, true, "Phoi Bre EA-A e5289", (decimal?)-8373.625, (decimal?)8.25, (decimal?)36133.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23886, Nebula.NebulaType.Planetary, "Phoi Bre SY-A e952", 7, true, "Phoi Bre SY-A e952", (decimal?)-8575.09375, (decimal?)851, (decimal?)36125.25, (int)10 )); + AllOfThem.Add(new Nebula( 23887, Nebula.NebulaType.Planetary, "Phoi Bre WU-P e5-789", 7, true, "Phoi Bre WU-P e5-789", (decimal?)-8596.8125, (decimal?)305.09375, (decimal?)37065.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23888, Nebula.NebulaType.Planetary, "Phoi Chrea CQ-P e5-154", 7, true, "Phoi Chrea CQ-P e5-154", (decimal?)-5373.75, (decimal?)144.15625, (decimal?)34491, (int)10 )); + AllOfThem.Add(new Nebula( 23889, Nebula.NebulaType.Planetary, "Phoi Chrea DK-A e266", 7, true, "Phoi Chrea DK-A e266", (decimal?)-5214.34375, (decimal?)313.40625, (decimal?)33512.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23890, Nebula.NebulaType.Planetary, "Phoi Chrea KG-Y e371", 7, true, "Phoi Chrea KG-Y e371", (decimal?)-5499.53125, (decimal?)68.5, (decimal?)33684.5, (int)10 )); + AllOfThem.Add(new Nebula( 23891, Nebula.NebulaType.Planetary, "Phoi Chrea MM-W e1-1360", 7, true, "Phoi Chrea MM-W e1-1360", (decimal?)-5811.3125, (decimal?)-3.25, (decimal?)33903.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23892, Nebula.NebulaType.Planetary, "Phoi Chrea OY-R e4-2876", 7, true, "Phoi Chrea OY-R e4-2876", (decimal?)-6068.8125, (decimal?)633.8125, (decimal?)34365.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23893, Nebula.NebulaType.Planetary, "Phoi Chrea WE-R e4-2656", 7, true, "Phoi Chrea WE-R e4-2656", (decimal?)-6118.03125, (decimal?)66.46875, (decimal?)34354.875, (int)10 )); + AllOfThem.Add(new Nebula( 23905, Nebula.NebulaType.Planetary, "Phoo Chreou EL-P e5-216", 7, true, "Phoo Chreou EL-P e5-216", (decimal?)-10500.40625, (decimal?)6.09375, (decimal?)34465.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23906, Nebula.NebulaType.Planetary, "Phoo Chreou TJ-Q e5-291", 7, true, "Phoo Chreou TJ-Q e5-291", (decimal?)-10644.875, (decimal?)832.375, (decimal?)34591.875, (int)10 )); + AllOfThem.Add(new Nebula( 23910, Nebula.NebulaType.Planetary, "Phraa Byoe VJ-Q e5-2188", 7, true, "Phraa Byoe VJ-Q e5-2188", (decimal?)1077.5, (decimal?)-481.46875, (decimal?)37057.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23934, Nebula.NebulaType.Planetary, "Phraa Grie PS-T e3-285", 7, true, "Phraa Grie PS-T e3-285", (decimal?)-1399.96875, (decimal?)-1795.375, (decimal?)36714.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23935, Nebula.NebulaType.Planetary, "Phraa Grie WO-Z e81", 7, true, "Phraa Grie WO-Z e81", (decimal?)-1548.46875, (decimal?)-1310.59375, (decimal?)36287.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23960, Nebula.NebulaType.Planetary, "Phrio Byoe FB-W e2-2917", 7, true, "Phrio Byoe FB-W e2-2917", (decimal?)-5265.03125, (decimal?)-133.6875, (decimal?)36676.125, (int)10 )); + AllOfThem.Add(new Nebula( 23961, Nebula.NebulaType.Planetary, "Phrio Byoe HN-S e4-519", 7, true, "Phrio Byoe HN-S e4-519", (decimal?)-6215.8125, (decimal?)-159.8125, (decimal?)36939.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23994, Nebula.NebulaType.Planetary, "Phroea Blou KH-V e2-413", 7, true, "Phroea Blou KH-V e2-413", (decimal?)-7002.8125, (decimal?)-823.53125, (decimal?)34088.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23995, Nebula.NebulaType.Planetary, "Phroea Blou PZ-O e6-194", 7, true, "Phroea Blou PZ-O e6-194", (decimal?)-7474.71875, (decimal?)-74.96875, (decimal?)34653.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23996, Nebula.NebulaType.Planetary, "Phroea Blou TO-Q e5-6066", 7, true, "Phroea Blou TO-Q e5-6066", (decimal?)-6619.96875, (decimal?)-243.03125, (decimal?)34486.5, (int)10 )); + AllOfThem.Add(new Nebula( 23997, Nebula.NebulaType.Planetary, "Phroea Blou UK-O e6-15", 7, true, "Phroea Blou UK-O e6-15", (decimal?)-7690, (decimal?)-575.90625, (decimal?)34740.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23998, Nebula.NebulaType.Planetary, "Phroea Bluae CG-X e1-3261", 7, true, "Phroea Bluae CG-X e1-3261", (decimal?)-4742.34375, (decimal?)-576.875, (decimal?)33832.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23999, Nebula.NebulaType.Planetary, "Phroea Bluae CG-X e1-610", 7, true, "Phroea Bluae CG-X e1-610", (decimal?)-4809.25, (decimal?)-521.25, (decimal?)33878, (int)10 )); + AllOfThem.Add(new Nebula( 24000, Nebula.NebulaType.Planetary, "Phroea Bluae DG-X e1-260", 7, true, "Phroea Bluae DG-X e1-260", (decimal?)-4605.5625, (decimal?)-564.5625, (decimal?)33846.375, (int)10 )); + AllOfThem.Add(new Nebula( 24002, Nebula.NebulaType.Planetary, "Phroea Bluae UJ-Q e5-59", 7, true, "Phroea Bluae UJ-Q e5-59", (decimal?)-4192.21875, (decimal?)-414.34375, (decimal?)34576.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24021, Nebula.NebulaType.Planetary, "Phroea Gree OI-S e4-446", 7, true, "Phroea Gree OI-S e4-446", (decimal?)-6644.75, (decimal?)-314.4375, (decimal?)36951.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24022, Nebula.NebulaType.Planetary, "Phroea Gree OT-Q e5-445", 7, true, "Phroea Gree OT-Q e5-445", (decimal?)-6953.84375, (decimal?)-110.75, (decimal?)37131.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24078, Nebula.NebulaType.Planetary, "Phroi Blou OJ-Q e5-574", 7, true, "Phroi Blou OJ-Q e5-574", (decimal?)-3860.46875, (decimal?)-504.9375, (decimal?)34567.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24080, Nebula.NebulaType.Planetary, "Phroi Blou SP-O e6-325", 7, true, "Phroi Blou SP-O e6-325", (decimal?)-3899.40625, (decimal?)-482.21875, (decimal?)34630.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24081, Nebula.NebulaType.Planetary, "Phroi Blou TO-R e4-858", 7, true, "Phroi Blou TO-R e4-858", (decimal?)-3375.65625, (decimal?)-826.90625, (decimal?)34421.75, (int)10 )); + AllOfThem.Add(new Nebula( 24095, Nebula.NebulaType.Planetary, "Phroi Byoe LC-V e2-2092", 7, true, "Phroi Byoe LC-V e2-2092", (decimal?)-735.96875, (decimal?)-950.15625, (decimal?)36633.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24144, Nebula.NebulaType.Planetary, "Phrooe Bloae UZ-O e6-439", 7, true, "Phrooe Bloae UZ-O e6-439", (decimal?)-9208.625, (decimal?)-140.96875, (decimal?)34654.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24150, Nebula.NebulaType.Planetary, "Phrooe Greau VU-X e1-6449", 7, true, "Phrooe Greau VU-X e1-6449", (decimal?)-10101.28125, (decimal?)-138.84375, (decimal?)36391.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24183, Nebula.NebulaType.Planetary, "Phua Bre BL-P e5-1157", 7, true, "Phua Bre BL-P e5-1157", (decimal?)-3316.03125, (decimal?)-2.53125, (decimal?)37154.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24184, Nebula.NebulaType.Planetary, "Phua Bre FB-O e6-257", 7, true, "Phua Bre FB-O e6-257", (decimal?)-2693.59375, (decimal?)346.6875, (decimal?)37287.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24185, Nebula.NebulaType.Planetary, "Phua Bre MN-T e3-2280", 7, true, "Phua Bre MN-T e3-2280", (decimal?)-3465.375, (decimal?)501.3125, (decimal?)36755.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24186, Nebula.NebulaType.Planetary, "Phua Bre RI-T e3-497", 7, true, "Phua Bre RI-T e3-497", (decimal?)-3002.40625, (decimal?)399.84375, (decimal?)36708.875, (int)10 )); + AllOfThem.Add(new Nebula( 24187, Nebula.NebulaType.Planetary, "Phua Bre RO-R e4-4450", 7, true, "Phua Bre RO-R e4-4450", (decimal?)-3741.59375, (decimal?)352.25, (decimal?)36870, (int)10 )); + AllOfThem.Add(new Nebula( 24188, Nebula.NebulaType.Planetary, "Phua Bre VO-R e4-292", 7, true, "Phua Bre VO-R e4-292", (decimal?)-3090.21875, (decimal?)324.15625, (decimal?)36879.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24189, Nebula.NebulaType.Planetary, "Phua Bre YE-A e728", 7, true, "Phua Bre YE-A e728", (decimal?)-3755.8125, (decimal?)238.21875, (decimal?)36118.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24190, Nebula.NebulaType.Planetary, "Phua Bre YP-P e5-2485", 7, true, "Phua Bre YP-P e5-2485", (decimal?)-3512.8125, (decimal?)223.3125, (decimal?)37119.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24202, Nebula.NebulaType.Planetary, "Plaa Aoscs EL-P e5-1657", 7, true, "Plaa Aoscs EL-P e5-1657", (decimal?)-1514.75, (decimal?)8.15625, (decimal?)38332.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24203, Nebula.NebulaType.Planetary, "Plaa Aoscs HA-A e9427", 7, true, "Plaa Aoscs HA-A e9427", (decimal?)-1362.5, (decimal?)56.9375, (decimal?)37420.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24204, Nebula.NebulaType.Planetary, "Plaa Aoscs LH-V e2-16", 7, true, "Plaa Aoscs LH-V e2-16", (decimal?)-1744.40625, (decimal?)553.3125, (decimal?)37825.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24205, Nebula.NebulaType.Planetary, "Plaa Aoscs VY-S e3-4770", 7, true, "Plaa Aoscs VY-S e3-4770", (decimal?)-1807.53125, (decimal?)125.53125, (decimal?)38109.625, (int)10 )); + AllOfThem.Add(new Nebula( 24206, Nebula.NebulaType.Planetary, "Plaa Aoscs YP-P e5-185", 7, true, "Plaa Aoscs YP-P e5-185", (decimal?)-2264.1875, (decimal?)185.3125, (decimal?)38320.25, (int)10 )); + AllOfThem.Add(new Nebula( 24207, Nebula.NebulaType.Planetary, "Plaa Free GA-A e104", 7, true, "Plaa Free GA-A e104", (decimal?)-1531.0625, (decimal?)37.34375, (decimal?)39933.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24208, Nebula.NebulaType.Planetary, "Plaa Free WF-O e6-7", 7, true, "Plaa Free WF-O e6-7", (decimal?)-2576.34375, (decimal?)479, (decimal?)41027.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24222, Nebula.NebulaType.Planetary, "Ploea Aoc UK-O e6-12", 7, true, "Ploea Aoc UK-O e6-12", (decimal?)2581.9375, (decimal?)716.0625, (decimal?)38531.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24223, Nebula.NebulaType.Planetary, "Ploea Aowsy OS-T e3-1083", 7, true, "Ploea Aowsy OS-T e3-1083", (decimal?)-4108.46875, (decimal?)773.71875, (decimal?)38037.25, (int)10 )); + AllOfThem.Add(new Nebula( 24224, Nebula.NebulaType.Planetary, "Ploea Aowsy QD-S e4-70", 7, true, "Ploea Aowsy QD-S e4-70", (decimal?)-4189.09375, (decimal?)827.125, (decimal?)38269.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24225, Nebula.NebulaType.Planetary, "Ploea Aowsy QY-S e3-550", 7, true, "Ploea Aowsy QY-S e3-550", (decimal?)-5091.71875, (decimal?)-11.53125, (decimal?)38111.5, (int)10 )); + AllOfThem.Add(new Nebula( 24226, Nebula.NebulaType.Planetary, "Ploea Aowsy UY-S e3-2955", 7, true, "Ploea Aowsy UY-S e3-2955", (decimal?)-4490.6875, (decimal?)67.1875, (decimal?)37990.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24228, Nebula.NebulaType.Planetary, "Ploi Aoscs BL-P e5-2209", 7, true, "Ploi Aoscs BL-P e5-2209", (decimal?)-3302.03125, (decimal?)101.59375, (decimal?)38371.75, (int)10 )); + AllOfThem.Add(new Nebula( 24229, Nebula.NebulaType.Planetary, "Ploi Aoscs EL-Y e901", 7, true, "Ploi Aoscs EL-Y e901", (decimal?)-3522.21875, (decimal?)279.75, (decimal?)37612.375, (int)10 )); + AllOfThem.Add(new Nebula( 24230, Nebula.NebulaType.Planetary, "Ploi Aoscs JG-Y e779", 7, true, "Ploi Aoscs JG-Y e779", (decimal?)-2971.40625, (decimal?)-7.90625, (decimal?)37533.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24231, Nebula.NebulaType.Planetary, "Ploi Aoscs PD-B e34", 7, true, "Ploi Aoscs PD-B e34", (decimal?)-3654, (decimal?)963.96875, (decimal?)37448.125, (int)10 )); + AllOfThem.Add(new Nebula( 24232, Nebula.NebulaType.Planetary, "Ploi Aoscs QD-B e2", 7, true, "Ploi Aoscs QD-B e2", (decimal?)-3448.34375, (decimal?)1055.40625, (decimal?)37418.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24233, Nebula.NebulaType.Planetary, "Ploi Aoscs YZ-Y e120", 7, true, "Ploi Aoscs YZ-Y e120", (decimal?)-3435.96875, (decimal?)654.28125, (decimal?)37594.25, (int)10 )); + AllOfThem.Add(new Nebula( 24234, Nebula.NebulaType.Planetary, "Ploi Aowsy ZK-P e5-7749", 7, true, "Ploi Aowsy ZK-P e5-7749", (decimal?)-1047.75, (decimal?)72.9375, (decimal?)38380.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24239, Nebula.NebulaType.Planetary, "Prae Flyi MD-S e4-48", 7, true, "Prae Flyi MD-S e4-48", (decimal?)-1024.5, (decimal?)-369.40625, (decimal?)39514.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24240, Nebula.NebulaType.Planetary, "Prae Flyi VE-Q e5-4", 7, true, "Prae Flyi VE-Q e5-4", (decimal?)-441.71875, (decimal?)-511.1875, (decimal?)39730.875, (int)10 )); + AllOfThem.Add(new Nebula( 24242, Nebula.NebulaType.Planetary, "Praea Aoscs NM-W e1-407", 7, true, "Praea Aoscs NM-W e1-407", (decimal?)-1773.46875, (decimal?)23.5625, (decimal?)39089.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24247, Nebula.NebulaType.Planetary, "Preae Aoscs KM-V e2-9", 7, true, "Preae Aoscs KM-V e2-9", (decimal?)-6653.1875, (decimal?)690.53125, (decimal?)39164.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24259, Nebula.NebulaType.Planetary, "Pro Aowsy GL-Y e30", 7, true, "Pro Aowsy GL-Y e30", (decimal?)-5818.125, (decimal?)260.0625, (decimal?)38804.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24261, Nebula.NebulaType.Planetary, "Prooe Flyuae JH-U e3-72", 7, true, "Prooe Flyuae JH-U e3-72", (decimal?)-1404.71875, (decimal?)-169.5625, (decimal?)39364.875, (int)10 )); + AllOfThem.Add(new Nebula( 24262, Nebula.NebulaType.Planetary, "Prooe Flyuae NX-T e3-66", 7, true, "Prooe Flyuae NX-T e3-66", (decimal?)-1438.34375, (decimal?)-406.53125, (decimal?)39409, (int)10 )); + AllOfThem.Add(new Nebula( 24263, Nebula.NebulaType.Planetary, "Prooe Flyuae WT-A e307", 7, true, "Prooe Flyuae WT-A e307", (decimal?)-1830.625, (decimal?)-633.59375, (decimal?)38774.875, (int)10 )); + AllOfThem.Add(new Nebula( 24390, Nebula.NebulaType.Planetary, "Scheau Bluae OY-R e4-1509", 7, true, "Scheau Bluae OY-R e4-1509", (decimal?)-6068.5625, (decimal?)-520.03125, (decimal?)33073.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24391, Nebula.NebulaType.Planetary, "Scheau Byoe BP-A E1323", 7, true, "Scheau Byoe BP-A e1323", (decimal?)-5216.84375, (decimal?)-682.875, (decimal?)34835.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24392, Nebula.NebulaType.Planetary, "Scheau Byoe IH-U e3-510", 7, true, "Scheau Byoe IH-U e3-510", (decimal?)-5497.21875, (decimal?)-63.0625, (decimal?)35528.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24393, Nebula.NebulaType.Planetary, "Scheau Byoe MO-Q e5-464", 7, true, "Scheau Byoe MO-Q e5-464", (decimal?)-6451.84375, (decimal?)-222.40625, (decimal?)35816.25, (int)10 )); + AllOfThem.Add(new Nebula( 24394, Nebula.NebulaType.Planetary, "Scheau Byoe MO-Q e5-88", 7, true, "Scheau Byoe MO-Q e5-88", (decimal?)-6456.1875, (decimal?)-232.625, (decimal?)35827.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24395, Nebula.NebulaType.Planetary, "Scheau Byoe QT-Q e5-578", 7, true, "Scheau Byoe QT-Q e5-578", (decimal?)-5463.6875, (decimal?)-110.53125, (decimal?)35819.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24396, Nebula.NebulaType.Planetary, "Scheau Byoe RT-R e4-1483", 7, true, "Scheau Byoe RT-R e4-1483", (decimal?)-5976.84375, (decimal?)-715.9375, (decimal?)35684.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24397, Nebula.NebulaType.Planetary, "Scheau Byoe WP-O e6-476", 7, true, "Scheau Byoe WP-O e6-476", (decimal?)-5811.3125, (decimal?)-425.875, (decimal?)35989.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24398, Nebula.NebulaType.Planetary, "Scheau Byoe YP-O e6-2242", 7, true, "Scheau Byoe YP-O e6-2242", (decimal?)-5463.65625, (decimal?)-443.21875, (decimal?)35976.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24414, Nebula.NebulaType.Planetary, "Scheau Gree UO-Z E459", 7, true, "Scheau Gree UO-Z e459", (decimal?)-8323, (decimal?)-132, (decimal?)34981.75, (int)10 )); + AllOfThem.Add(new Nebula( 24415, Nebula.NebulaType.Planetary, "Scheau Gree VU-X e1-554", 7, true, "Scheau Gree VU-X e1-554", (decimal?)-8748.96875, (decimal?)-134.75, (decimal?)35101.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24416, Nebula.NebulaType.Planetary, "Scheau Gree VU-X e1-587", 7, true, "Scheau Gree VU-X e1-587", (decimal?)-8741.875, (decimal?)-108.03125, (decimal?)35238.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24545, Nebula.NebulaType.Planetary, "Schigniae GA-A e3", 7, true, "Schigniae GA-A e3", (decimal?)-4170.625, (decimal?)17.875, (decimal?)39986.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24623, Nebula.NebulaType.Planetary, "Segnao HB-X e1-63", 7, true, "Segnao HB-X e1-63", (decimal?)-10703.28125, (decimal?)-786.4375, (decimal?)36513.875, (int)10 )); + AllOfThem.Add(new Nebula( 24624, Nebula.NebulaType.Planetary, "Segnao ZP-X e1-102", 7, true, "Segnao ZP-X e1-102", (decimal?)-11017.90625, (decimal?)-289.1875, (decimal?)36420, (int)10 )); + AllOfThem.Add(new Nebula( 24706, Nebula.NebulaType.Planetary, "Splohaae CR-N e6-627", 7, true, "Splohaae CR-N e6-627", (decimal?)-8866.0625, (decimal?)117.03125, (decimal?)35995.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24707, Nebula.NebulaType.Planetary, "Splohaae IL-Y e466", 7, true, "Splohaae IL-Y e466", (decimal?)-8028.6875, (decimal?)163.78125, (decimal?)34990.625, (int)10 )); + AllOfThem.Add(new Nebula( 24708, Nebula.NebulaType.Planetary, "Splohaae IR-N e6-5113", 7, true, "Splohaae IR-N e6-5113", (decimal?)-7925.78125, (decimal?)94.34375, (decimal?)35963.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24709, Nebula.NebulaType.Planetary, "Splohaae OM-W e1-745", 7, true, "Splohaae OM-W e1-745", (decimal?)-8003.90625, (decimal?)83.71875, (decimal?)35138.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24710, Nebula.NebulaType.Planetary, "Splohaae ST-R e4-235", 7, true, "Splohaae ST-R e4-235", (decimal?)-8290.71875, (decimal?)549.6875, (decimal?)35601.375, (int)10 )); + AllOfThem.Add(new Nebula( 24711, Nebula.NebulaType.Planetary, "Splohaae YF-O e6-211", 7, true, "Splohaae YF-O e6-211", (decimal?)-8545.75, (decimal?)565.15625, (decimal?)36042.375, (int)10 )); + AllOfThem.Add(new Nebula( 24712, Nebula.NebulaType.Planetary, "Splohaae ZE-R e4-690", 7, true, "Splohaae ZE-R e4-690", (decimal?)-8096.28125, (decimal?)4.21875, (decimal?)35619, (int)10 )); + AllOfThem.Add(new Nebula( 24713, Nebula.NebulaType.Planetary, "Sploheau EA-A e8622", 7, true, "Sploheau EA-A e8622", (decimal?)-7093.34375, (decimal?)2.46875, (decimal?)34803.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24714, Nebula.NebulaType.Planetary, "Sploheau LN-T e3-2476", 7, true, "Sploheau LN-T e3-2476", (decimal?)-7538.84375, (decimal?)542.78125, (decimal?)35464.40625, (int)10 )); + AllOfThem.Add(new Nebula( 24715, Nebula.NebulaType.Planetary, "Sploheau YT-A e234", 7, true, "Sploheau YT-A e234", (decimal?)-6636.03125, (decimal?)662.15625, (decimal?)34930.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24716, Nebula.NebulaType.Planetary, "Splohoa BL-P e5-814", 7, true, "Splohoa BL-P e5-814", (decimal?)-9820.8125, (decimal?)-18.1875, (decimal?)35789.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24717, Nebula.NebulaType.Planetary, "Splohoa NC-V e2-2293", 7, true, "Splohoa NC-V e2-2293", (decimal?)-9475.53125, (decimal?)337.3125, (decimal?)35348.75, (int)10 )); + AllOfThem.Add(new Nebula( 24722, Nebula.NebulaType.Planetary, "Splojio BW-N e6-123", 7, true, "Splojio BW-N e6-123", (decimal?)-3662.78125, (decimal?)239.4375, (decimal?)36007.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24723, Nebula.NebulaType.Planetary, "Splojio DK-A e8174", 7, true, "Splojio DK-A e8174", (decimal?)-2776.34375, (decimal?)352.3125, (decimal?)34831.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24724, Nebula.NebulaType.Planetary, "Splojio DQ-X e1-43", 7, true, "Splojio DQ-X e1-43", (decimal?)-2705.75, (decimal?)1072.75, (decimal?)35182.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24725, Nebula.NebulaType.Planetary, "Splojio MN-T e3-3634", 7, true, "Splojio MN-T e3-3634", (decimal?)-3579.6875, (decimal?)546, (decimal?)35463.75, (int)10 )); + AllOfThem.Add(new Nebula( 24726, Nebula.NebulaType.Planetary, "Splojio NM-W E1-95", 7, true, "Splojio NM-W e1-95", (decimal?)-2956.34375, (decimal?)83.84375, (decimal?)35176.5, (int)10 )); + AllOfThem.Add(new Nebula( 24727, Nebula.NebulaType.Planetary, "Splojio NX-U e2-8335", 7, true, "Splojio NX-U e2-8335", (decimal?)-3274.40625, (decimal?)211.09375, (decimal?)35318.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24728, Nebula.NebulaType.Planetary, "Splojio OO-Q e5-1010", 7, true, "Splojio OO-Q e5-1010", (decimal?)-3577.4375, (decimal?)992.75, (decimal?)35779.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24729, Nebula.NebulaType.Planetary, "Splojio QT-R e4-5032", 7, true, "Splojio QT-R e4-5032", (decimal?)-3458.15625, (decimal?)536.84375, (decimal?)35660.5, (int)10 )); + AllOfThem.Add(new Nebula( 24730, Nebula.NebulaType.Planetary, "Splojio UT-A e232", 7, true, "Splojio UT-A e232", (decimal?)-3558.90625, (decimal?)621.5625, (decimal?)34913.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24731, Nebula.NebulaType.Planetary, "Splojio VE-R e4-359", 7, true, "Splojio VE-R e4-359", (decimal?)-3597.625, (decimal?)24.59375, (decimal?)35717.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24732, Nebula.NebulaType.Planetary, "Splojio VY-S E3-733", 7, true, "Splojio VY-S e3-733", (decimal?)-3080.0625, (decimal?)107.21875, (decimal?)35537.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24733, Nebula.NebulaType.Planetary, "Splojio ZT-A e147", 7, true, "Splojio ZT-A e147", (decimal?)-2662.78125, (decimal?)643.0625, (decimal?)34820.375, (int)10 )); + AllOfThem.Add(new Nebula( 24736, Nebula.NebulaType.Planetary, "Splojoea mn-t e3-693", 7, true, "Splojoea MN-T e3-693", (decimal?)-2281.875, (decimal?)514.71875, (decimal?)35546.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24737, Nebula.NebulaType.Planetary, "Splojoea QD-T e3-6613", 7, true, "Splojoea QD-T e3-6613", (decimal?)-2269.71875, (decimal?)183.09375, (decimal?)35514.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24738, Nebula.NebulaType.Planetary, "Splojoea TD-T e3-381", 7, true, "Splojoea TD-T e3-381", (decimal?)-1678.1875, (decimal?)226.53125, (decimal?)35520.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24739, Nebula.NebulaType.Planetary, "Splojoea WU-P e5-44", 7, true, "Splojoea WU-P e5-44", (decimal?)-2163.59375, (decimal?)402.625, (decimal?)35888.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24740, Nebula.NebulaType.Planetary, "Splojoea XE-Z e307", 7, true, "Splojoea XE-Z e307", (decimal?)-2042.375, (decimal?)861.4375, (decimal?)34989.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24750, Nebula.NebulaType.Planetary, "Spooreau DA-A E71", 7, true, "Spooreau DA-A e71", (decimal?)-718.90625, (decimal?)-24.9375, (decimal?)38627.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24751, Nebula.NebulaType.Planetary, "Spooreau QT-R e4-5", 7, true, "Spooreau QT-R e4-5", (decimal?)-973.9375, (decimal?)584.53125, (decimal?)39440.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24752, Nebula.NebulaType.Planetary, "Spooreau TY-S e3-125", 7, true, "Spooreau TY-S e3-125", (decimal?)-712.71875, (decimal?)68.53125, (decimal?)39285.75, (int)10 )); + AllOfThem.Add(new Nebula( 24753, Nebula.NebulaType.Planetary, "Spooroa im-w e1-264", 7, true, "Spooroa IM-W e1-264", (decimal?)-3817.8125, (decimal?)99.96875, (decimal?)38972.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24754, Nebula.NebulaType.Planetary, "Spooroa KR-W e1-161", 7, true, "Spooroa KR-W e1-161", (decimal?)-3190.59375, (decimal?)136.5625, (decimal?)39059.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24755, Nebula.NebulaType.Planetary, "Spooruia VT-A e75", 7, true, "Spooruia VT-A e75", (decimal?)-4600.15625, (decimal?)640.125, (decimal?)38701.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24756, Nebula.NebulaType.Planetary, "Spooruia ZE-R e4-235", 7, true, "Spooruia ZE-R e4-235", (decimal?)-4244.40625, (decimal?)122.0625, (decimal?)39548.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24776, Nebula.NebulaType.Planetary, "Struqo QD-B e2", 7, true, "Struqo QD-B e2", (decimal?)-9838.75, (decimal?)-1616.0625, (decimal?)34898.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24978, Nebula.NebulaType.Planetary, "Teqaea GX-T e3-3078", 7, true, "Teqaea GX-T e3-3078", (decimal?)-5164.53125, (decimal?)-398.3125, (decimal?)36800.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24979, Nebula.NebulaType.Planetary, "Teqaea PT-Q e5-860", 7, true, "Teqaea PT-Q e5-860", (decimal?)-4255.96875, (decimal?)-62.25, (decimal?)37174.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24980, Nebula.NebulaType.Planetary, "Teqaea SD-B e68", 7, true, "Teqaea SD-B e68", (decimal?)-4450.03125, (decimal?)-307.03125, (decimal?)36140.125, (int)10 )); + AllOfThem.Add(new Nebula( 24981, Nebula.NebulaType.Planetary, "Teqaea WO-Z e8264", 7, true, "Teqaea WO-Z e8264", (decimal?)-4155.625, (decimal?)-114.03125, (decimal?)36220.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24982, Nebula.NebulaType.Planetary, "Teqaea XY-A e4633", 7, true, "Teqaea XY-A e4633", (decimal?)-3997.90625, (decimal?)-448.28125, (decimal?)36171.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24983, Nebula.NebulaType.Planetary, "Teqaea ZJ-Z e60", 7, true, "Teqaea ZJ-Z e60", (decimal?)-3967.25, (decimal?)-228.65625, (decimal?)36293.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24988, Nebula.NebulaType.Planetary, "Teqia NH-V e2-253", 7, true, "Teqia NH-V e2-253", (decimal?)-2702.53125, (decimal?)-739.78125, (decimal?)36550.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24989, Nebula.NebulaType.Planetary, "Teqia NI-S e4-8033", 7, true, "Teqia NI-S e4-8033", (decimal?)-3070.09375, (decimal?)-260.1875, (decimal?)36907, (int)10 )); + AllOfThem.Add(new Nebula( 24990, Nebula.NebulaType.Planetary, "Teqia NS-T e3-523", 7, true, "Teqia NS-T e3-523", (decimal?)-3036.9375, (decimal?)-577.125, (decimal?)36723.28125, (int)10 )); + AllOfThem.Add(new Nebula( 24991, Nebula.NebulaType.Planetary, "Teqia QI-T e3-3167", 7, true, "Teqia QI-T e3-3167", (decimal?)-3151, (decimal?)-935.84375, (decimal?)36825.875, (int)10 )); + AllOfThem.Add(new Nebula( 24992, Nebula.NebulaType.Planetary, "Teqia TI-B e8000", 7, true, "Teqia TI-B e8000", (decimal?)-2747.75, (decimal?)-105.4375, (decimal?)36083.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24993, Nebula.NebulaType.Planetary, "Teqia TO-Z e6249", 7, true, "Teqia TO-Z e6249", (decimal?)-3370.21875, (decimal?)-37.21875, (decimal?)36232.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24994, Nebula.NebulaType.Planetary, "Teqie DQ-Y e1747", 7, true, "Teqie DQ-Y e1747", (decimal?)-2097.78125, (decimal?)-837.0625, (decimal?)36317.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24995, Nebula.NebulaType.Planetary, "Teqie IC-U e3-600", 7, true, "Teqie IC-U e3-600", (decimal?)-1945, (decimal?)-311.65625, (decimal?)36811.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24996, Nebula.NebulaType.Planetary, "Teqie KI-S e4-5194", 7, true, "Teqie KI-S e4-5194", (decimal?)-2163.09375, (decimal?)-194.78125, (decimal?)36949.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24997, Nebula.NebulaType.Planetary, "Teqie NO-Q e5-11", 7, true, "Teqie NO-Q e5-11", (decimal?)-2427.71875, (decimal?)-257.96875, (decimal?)37169.4375, (int)10 )); + AllOfThem.Add(new Nebula( 24998, Nebula.NebulaType.Planetary, "Teqo BW-V e2-3856", 7, true, "Teqo BW-V e2-3856", (decimal?)-8750.1875, (decimal?)-303.625, (decimal?)36614.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24999, Nebula.NebulaType.Planetary, "Teqo YJ-A e17", 7, true, "Teqo YJ-A e17", (decimal?)-8642.1875, (decimal?)-869.34375, (decimal?)36055, (int)10 )); + AllOfThem.Add(new Nebula( 25071, Nebula.NebulaType.Planetary, "Vegna EW-W e1-91", 7, true, "Vegna EW-W e1-91", (decimal?)-7595.375, (decimal?)389.5, (decimal?)36382.5625, (int)10 )); + AllOfThem.Add(new Nebula( 25072, Nebula.NebulaType.Planetary, "Vegna FL-P e5-4290", 7, true, "Vegna FL-P e5-4290", (decimal?)-6482.875, (decimal?)21.375, (decimal?)37171.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25073, Nebula.NebulaType.Planetary, "Vegna NX-U e2-383", 7, true, "Vegna NX-U e2-383", (decimal?)-7235.15625, (decimal?)231.03125, (decimal?)36539.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25074, Nebula.NebulaType.Planetary, "Vegnae AF-R e4-667", 7, true, "Vegnae AF-R e4-667", (decimal?)-10623.4375, (decimal?)-23.375, (decimal?)36998.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25079, Nebula.NebulaType.Planetary, "Vegniae DL-X e1-247", 7, true, "Vegniae DL-X e1-247", (decimal?)-1820.4375, (decimal?)891.4375, (decimal?)36454.96875, (int)10 )); + AllOfThem.Add(new Nebula( 25080, Nebula.NebulaType.Planetary, "Vegniae FR-N e6-1094", 7, true, "Vegniae FR-N e6-1094", (decimal?)-1990.96875, (decimal?)126.875, (decimal?)37215.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25081, Nebula.NebulaType.Planetary, "Vegniae HQ-Y e5779", 7, true, "Vegniae HQ-Y e5779", (decimal?)-1434.1875, (decimal?)408.125, (decimal?)36356.15625, (int)10 )); + AllOfThem.Add(new Nebula( 25082, Nebula.NebulaType.Planetary, "Vegniae MS-U e2-933", 7, true, "Vegniae MS-U e2-933", (decimal?)-2582.90625, (decimal?)82.3125, (decimal?)36568.1875, (int)10 )); + AllOfThem.Add(new Nebula( 25083, Nebula.NebulaType.Planetary, "Vegniae PO-Q e5-214", 7, true, "Vegniae PO-Q e5-214", (decimal?)-2076.4375, (decimal?)1007.78125, (decimal?)37025.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25084, Nebula.NebulaType.Planetary, "Vegniae RU-O e6-251", 7, true, "Vegniae RU-O e6-251", (decimal?)-2397.65625, (decimal?)1078.875, (decimal?)37176.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25085, Nebula.NebulaType.Planetary, "Vegniae TJ-R e4-106", 7, true, "Vegniae TJ-R e4-106", (decimal?)-2361.59375, (decimal?)237.34375, (decimal?)36976.84375, (int)10 )); + AllOfThem.Add(new Nebula( 25086, Nebula.NebulaType.Planetary, "Vegniae VO-A e5193", 7, true, "Vegniae VO-A e5193", (decimal?)-2458.4375, (decimal?)601, (decimal?)36080.90625, (int)10 )); + AllOfThem.Add(new Nebula( 25087, Nebula.NebulaType.Planetary, "Vegniae WE-Q e5-172", 7, true, "Vegniae WE-Q e5-172", (decimal?)-1626.1875, (decimal?)710.3125, (decimal?)37106.34375, (int)10 )); + AllOfThem.Add(new Nebula( 25088, Nebula.NebulaType.Planetary, "Vegnoae CV-Y e29", 7, true, "Vegnoae CV-Y e29", (decimal?)-599.71875, (decimal?)574.21875, (decimal?)36270.21875, (int)10 )); + AllOfThem.Add(new Nebula( 25090, Nebula.NebulaType.Planetary, "Vegnoae FG-Y e3407", 7, true, "Vegnoae FG-Y e3407", (decimal?)-1075.125, (decimal?)64.4375, (decimal?)36223.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25091, Nebula.NebulaType.Planetary, "Vegnoae FG-Y e9340", 7, true, "Vegnoae FG-Y e9340", (decimal?)-1049.75, (decimal?)2.15625, (decimal?)36281.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25092, Nebula.NebulaType.Planetary, "Vegnoae KM-W e1-775", 7, true, "Vegnoae KM-W e1-775", (decimal?)-990.4375, (decimal?)25.71875, (decimal?)36375.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25093, Nebula.NebulaType.Planetary, "Vegnoae WE-R e4-9257", 7, true, "Vegnoae WE-R e4-9257", (decimal?)-1017.5625, (decimal?)108.625, (decimal?)36920.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25094, Nebula.NebulaType.Planetary, "Vegnooe FA-A e613", 7, true, "Vegnooe FA-A e613", (decimal?)-9422.5625, (decimal?)54.6875, (decimal?)36170.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25096, Nebula.NebulaType.Planetary, "Vegnuae CR-N e6-1932", 7, true, "Vegnuae CR-N e6-1932", (decimal?)1271.71875, (decimal?)2, (decimal?)37198.875, (int)10 )); + AllOfThem.Add(new Nebula( 25097, Nebula.NebulaType.Planetary, "Vegnue HG-X e1-1512", 7, true, "Vegnue HG-X e1-1512", (decimal?)-5227.0625, (decimal?)652.1875, (decimal?)36504, (int)10 )); + AllOfThem.Add(new Nebula( 25098, Nebula.NebulaType.Planetary, "Vegnue IL-Y E139", 7, true, "Vegnue IL-Y e139", (decimal?)-5491.3125, (decimal?)197.59375, (decimal?)36374.65625, (int)10 )); + AllOfThem.Add(new Nebula( 25099, Nebula.NebulaType.Planetary, "Vegnue OI-T e3-359", 7, true, "Vegnue OI-T e3-359", (decimal?)-6050.78125, (decimal?)450.09375, (decimal?)36827.875, (int)10 )); + AllOfThem.Add(new Nebula( 25100, Nebula.NebulaType.Planetary, "Vegnue qy-r e4-1698", 7, true, "Vegnue QY-R e4-1698", (decimal?)-5735.1875, (decimal?)739.28125, (decimal?)36923.875, (int)10 )); + } + public static void init_Region_8() { + AllOfThem.Add(new Nebula( 10074, Nebula.NebulaType.Standard, "Dryae Bliae AA-A h45", 8, true, "Dryae Bliae NB-O d6-5", (decimal?)-12934.6875, (decimal?)-1110.4375, (decimal?)28960.09375, (int)100 )); + AllOfThem.Add(new Nebula( 10075, Nebula.NebulaType.Standard, "Dryae Greau AA-A h37", 8, true, "Dryae Greau IU-X b34-5", (decimal?)-11019.3125, (decimal?)-144.53125, (decimal?)31688, (int)100 )); + AllOfThem.Add(new Nebula( 10076, Nebula.NebulaType.Standard, "Dryio Gree AA-A h40", 8, true, "Dryio Gree WJ-Z e915", (decimal?)-8312.65625, (decimal?)-339.84375, (decimal?)31140.5625, (int)100 )); + AllOfThem.Add(new Nebula( 10077, Nebula.NebulaType.Standard, "Dryoea Gree AA-A h66", 8, true, "Dryoea Gree CH-J a34-0", (decimal?)-6982.21875, (decimal?)-213.53125, (decimal?)31295.25, (int)100 )); + AllOfThem.Add(new Nebula( 10078, Nebula.NebulaType.Standard, "Dryuae Bre AA-A h64", 8, true, "Dryuae Bre DY-F d12-26", (decimal?)-8439.125, (decimal?)1215.4375, (decimal?)31999.4375, (int)100 )); + AllOfThem.Add(new Nebula( 10079, Nebula.NebulaType.Standard, "Eorl Bre AA-A h3", 8, true, "Eorl Bre UC-X c16-3", (decimal?)-8838.1875, (decimal?)594.125, (decimal?)30381.5, (int)100 )); + AllOfThem.Add(new Nebula( 10080, Nebula.NebulaType.Standard, "Hypua Flyoae AA-A h52", 8, true, "Hypua Flyoae WU-X e1-4448", (decimal?)-12488.0625, (decimal?)-79.78125, (decimal?)22391.21875, (int)100 )); + AllOfThem.Add(new Nebula( 10081, Nebula.NebulaType.Standard, "Hypua Flyoae AA-A h83", 8, true, "Hypua Flyoae LZ-F d11-26", (decimal?)-12728.125, (decimal?)-821.875, (decimal?)22969.875, (int)100 )); + AllOfThem.Add(new Nebula( 10082, Nebula.NebulaType.Standard, "Oob Brue AA-A h0", 8, true, "Oob Brue BI-V c5-0", (decimal?)-13622.15625, (decimal?)1215.84375, (decimal?)29896.875, (int)100 )); + AllOfThem.Add(new Nebula( 10083, Nebula.NebulaType.Standard, "Oob Chreou AA-A h28", 8, true, "Oob Chreou QM-W d1-202", (decimal?)-10881.90625, (decimal?)25.15625, (decimal?)27311.96875, (int)100 )); + AllOfThem.Add(new Nebula( 10084, Nebula.NebulaType.Standard, "Phreia Flyou AA-A h63", 8, true, "Phreia Flyou UB-A b32-0", (decimal?)-14503.84375, (decimal?)-458.4375, (decimal?)23947.90625, (int)100 )); + AllOfThem.Add(new Nebula( 10085, Nebula.NebulaType.Standard, "Stuemiae AA-A h63", 8, true, "Stuemiae BB-O e6-61", (decimal?)-9793.875, (decimal?)390.90625, (decimal?)27066.40625, (int)100 )); + AllOfThem.Add(new Nebula( 10086, Nebula.NebulaType.Standard, "Xothaei AA-A h49", 8, true, "Xothaei RC-U d3-431", (decimal?)-9248.5, (decimal?)496.53125, (decimal?)30044.125, (int)100 )); + AllOfThem.Add(new Nebula( 10087, Nebula.NebulaType.Standard, "Xothaei AA-A h52", 8, true, "Xothaei ML-I c24-4", (decimal?)-9886.0625, (decimal?)466.0625, (decimal?)30701, (int)100 )); + AllOfThem.Add(new Nebula( 10088, Nebula.NebulaType.Standard, "Xothuia AA-A h95", 8, true, "Xothuia KP-E d12-221", (decimal?)-7744.6875, (decimal?)667.59375, (decimal?)30715.71875, (int)100 )); + AllOfThem.Add(new Nebula( 20424, Nebula.NebulaType.Planetary, "Brairuia II-S e4-110", 8, true, "Brairuia II-S e4-110", (decimal?)-6463.53125, (decimal?)-240.8125, (decimal?)31837.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20702, Nebula.NebulaType.Planetary, "Choomeou AL-X e1-115", 8, true, "Choomeou AL-X e1-115", (decimal?)-11218.125, (decimal?)908.25, (decimal?)24960.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20705, Nebula.NebulaType.Planetary, "Choomeou MX-U e2-284", 8, true, "Choomeou MX-U e2-284", (decimal?)-11120.34375, (decimal?)204.59375, (decimal?)25057.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20707, Nebula.NebulaType.Planetary, "Choomie GA-A e55", 8, true, "Choomie GA-A e55", (decimal?)-11866.71875, (decimal?)13.1875, (decimal?)24682.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20996, Nebula.NebulaType.Planetary, "Dryeae Brai MX-T e3-1", 8, true, "Dryeae Brai MX-T e3-1", (decimal?)-14390.9375, (decimal?)897.9375, (decimal?)31595.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21040, Nebula.NebulaType.Planetary, "Dryi Bre AF-A e2610", 8, true, "Dryi Bre AF-A e2610", (decimal?)-7409.40625, (decimal?)249.15625, (decimal?)31017.25, (int)10 )); + AllOfThem.Add(new Nebula( 21041, Nebula.NebulaType.Planetary, "Dryi Bre EL-P e5-338", 8, true, "Dryi Bre EL-P e5-338", (decimal?)-6690.9375, (decimal?)7.0625, (decimal?)31964.875, (int)10 )); + AllOfThem.Add(new Nebula( 21043, Nebula.NebulaType.Planetary, "Dryi Bre KM-W e1-284", 8, true, "Dryi Bre KM-W e1-284", (decimal?)-7318.21875, (decimal?)84.28125, (decimal?)31306.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21127, Nebula.NebulaType.Planetary, "Dryio Blou HG-X e1-7464", 8, true, "Dryio Blou HG-X e1-7464", (decimal?)-7760.0625, (decimal?)-663.28125, (decimal?)28744.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21128, Nebula.NebulaType.Planetary, "Dryio Blou HR-V e2-1298", 8, true, "Dryio Blou HR-V e2-1298", (decimal?)-8128.5625, (decimal?)-451.15625, (decimal?)28863.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21129, Nebula.NebulaType.Planetary, "Dryio Blou NN-T e3-3212", 8, true, "Dryio Blou NN-T e3-3212", (decimal?)-8400.46875, (decimal?)-788.65625, (decimal?)29035.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21130, Nebula.NebulaType.Planetary, "Dryio Blou NN-T e3-705", 8, true, "Dryio Blou NN-T e3-705", (decimal?)-8413.53125, (decimal?)-701.875, (decimal?)29067.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21131, Nebula.NebulaType.Planetary, "Dryio Blou VJ-Z e457", 8, true, "Dryio Blou VJ-Z e457", (decimal?)-8411.8125, (decimal?)-340.5625, (decimal?)28624.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21132, Nebula.NebulaType.Planetary, "Dryio Blou VO-Z e5156", 8, true, "Dryio Blou VO-Z e5156", (decimal?)-8177, (decimal?)-173.75, (decimal?)28622.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21164, Nebula.NebulaType.Planetary, "Dryio Gree EV-Y e46", 8, true, "Dryio Gree EV-Y e46", (decimal?)-7994.71875, (decimal?)-819.34375, (decimal?)31204.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21247, Nebula.NebulaType.Planetary, "Dryoea Gree UT-A e147", 8, true, "Dryoea Gree UT-A e147", (decimal?)-7289.65625, (decimal?)-647.8125, (decimal?)31062.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21248, Nebula.NebulaType.Planetary, "Dryoea Gree YE-Z e1422", 8, true, "Dryoea Gree YE-Z e1422", (decimal?)-7051.46875, (decimal?)-498.375, (decimal?)31140.125, (int)10 )); + AllOfThem.Add(new Nebula( 21373, Nebula.NebulaType.Planetary, "Dryuae Chraei EL-Y e3500", 8, true, "Dryuae Chraei EL-Y e3500", (decimal?)-8576.125, (decimal?)135.21875, (decimal?)28565.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21374, Nebula.NebulaType.Planetary, "Dryuae Chraei GC-U e3-145", 8, true, "Dryuae Chraei GC-U e3-145", (decimal?)-8640.875, (decimal?)1055.0625, (decimal?)29103.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21376, Nebula.NebulaType.Planetary, "Dryuae Chraei LR-W e1-6", 8, true, "Dryuae Chraei LR-W e1-6", (decimal?)-8191.6875, (decimal?)199.53125, (decimal?)28819.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21679, Nebula.NebulaType.Planetary, "Eoch Blou OJ-Q e5-1267", 8, true, "Eoch Blou OJ-Q e5-1267", (decimal?)-9010.53125, (decimal?)-465.4375, (decimal?)28088.5, (int)10 )); + AllOfThem.Add(new Nebula( 21680, Nebula.NebulaType.Planetary, "Eoch Blou OJ-Q e5-3154", 8, true, "Eoch Blou OJ-Q e5-3154", (decimal?)-8941.25, (decimal?)-346.625, (decimal?)28147.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21682, Nebula.NebulaType.Planetary, "Eoch Blou QD-S e4-3237", 8, true, "Eoch Blou QD-S e4-3237", (decimal?)-7998.125, (decimal?)-389.53125, (decimal?)28036.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21683, Nebula.NebulaType.Planetary, "Eoch Blou UU-O e6-5520", 8, true, "Eoch Blou UU-O e6-5520", (decimal?)-8285.5, (decimal?)-309.6875, (decimal?)28275.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21685, Nebula.NebulaType.Planetary, "Eoch Blou VZ-P e5-1123", 8, true, "Eoch Blou VZ-P e5-1123", (decimal?)-8396.9375, (decimal?)-670.75, (decimal?)28129.625, (int)10 )); + AllOfThem.Add(new Nebula( 21686, Nebula.NebulaType.Planetary, "Eoch Blou WU-O e6-8273", 8, true, "Eoch Blou WU-O e6-8273", (decimal?)-7973, (decimal?)-315.6875, (decimal?)28325.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21879, Nebula.NebulaType.Planetary, "Eol Bloae NT-Q e5-530", 8, true, "Eol Bloae NT-Q e5-530", (decimal?)-9770.34375, (decimal?)-96.34375, (decimal?)28163.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21881, Nebula.NebulaType.Planetary, "Eol Bloae PO-Q e5-159", 8, true, "Eol Bloae PO-Q e5-159", (decimal?)-9724.625, (decimal?)-342.125, (decimal?)28106.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22062, Nebula.NebulaType.Planetary, "Eord Gree UU-X e1-1268", 8, true, "Eord Gree UU-X e1-1268", (decimal?)-7631.8125, (decimal?)-82.96875, (decimal?)30067.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22081, Nebula.NebulaType.Planetary, "Eorgh Graae QI-B e71", 8, true, "Eorgh Graae QI-B e71", (decimal?)-13492.53125, (decimal?)-163.34375, (decimal?)29656.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22103, Nebula.NebulaType.Planetary, "Eorl Bre BF-A e167", 8, true, "Eorl Bre BF-A e167", (decimal?)-8459.84375, (decimal?)138.5625, (decimal?)29775.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22104, Nebula.NebulaType.Planetary, "Eorl Bre DV-Y e169", 8, true, "Eorl Bre DV-Y e169", (decimal?)-8185.09375, (decimal?)493.96875, (decimal?)29956.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22105, Nebula.NebulaType.Planetary, "Eorl Bre HR-N e6-113", 8, true, "Eorl Bre HR-N e6-113", (decimal?)-8203.28125, (decimal?)82.59375, (decimal?)30885.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22106, Nebula.NebulaType.Planetary, "Eorl Bre TY-R e4-96", 8, true, "Eorl Bre TY-R e4-96", (decimal?)-7849.28125, (decimal?)649.71875, (decimal?)30458.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22486, Nebula.NebulaType.Planetary, "Hypao Chreou LX-U e2-11", 8, true, "Hypao Chreou LX-U e2-11", (decimal?)-15182.84375, (decimal?)239.15625, (decimal?)32728.375, (int)10 )); + AllOfThem.Add(new Nebula( 22491, Nebula.NebulaType.Planetary, "Hypau Flee TD-T e3-145", 8, true, "Hypau Flee TD-T e3-145", (decimal?)-13191.90625, (decimal?)213.21875, (decimal?)22762.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22612, Nebula.NebulaType.Planetary, "Hypo Flee XP-P e5-90", 8, true, "Hypo Flee XP-P e5-90", (decimal?)-12700.375, (decimal?)249.625, (decimal?)23047.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22637, Nebula.NebulaType.Planetary, "Hypoae Chraei GW-W e1-30", 8, true, "Hypoae Chraei GW-W e1-30", (decimal?)-7392.78125, (decimal?)311.9375, (decimal?)32688.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22796, Nebula.NebulaType.Planetary, "Hypuejaa RT-Q e5-83", 8, true, "Hypuejaa RT-Q e5-83", (decimal?)-11653.59375, (decimal?)-162.78125, (decimal?)28123.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22797, Nebula.NebulaType.Planetary, "Hypuejaa XP-X e1-7", 8, true, "Hypuejaa XP-X e1-7", (decimal?)-12601.6875, (decimal?)-276.1875, (decimal?)27558.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22798, Nebula.NebulaType.Planetary, "Hypuejua RZ-O e6-52", 8, true, "Hypuejua RZ-O e6-52", (decimal?)-10998.46875, (decimal?)-122.40625, (decimal?)28281.625, (int)10 )); + AllOfThem.Add(new Nebula( 22799, Nebula.NebulaType.Planetary, "Hypuejua TZ-O e6-18", 8, true, "Hypuejua TZ-O e6-18", (decimal?)-10683.71875, (decimal?)-154.3125, (decimal?)28239.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22800, Nebula.NebulaType.Planetary, "Hypuejua XK-O e6-10", 8, true, "Hypuejua XK-O e6-10", (decimal?)-11003.78125, (decimal?)-599, (decimal?)28268.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22889, Nebula.NebulaType.Planetary, "Juemeau YF-O e6-24", 8, true, "Juemeau YF-O e6-24", (decimal?)-11160.9375, (decimal?)-712.40625, (decimal?)27011.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22895, Nebula.NebulaType.Planetary, "Juemee PT-R E4-42", 8, true, "Juemee PT-R e4-42", (decimal?)-10087.28125, (decimal?)-711.84375, (decimal?)26669, (int)10 )); + AllOfThem.Add(new Nebula( 22896, Nebula.NebulaType.Planetary, "Juemee UE-Q e5-2623", 8, true, "Juemee UE-Q e5-2623", (decimal?)-9620.5625, (decimal?)-627.59375, (decimal?)26835.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22899, Nebula.NebulaType.Planetary, "Juemee YU-P e5-110", 8, true, "Juemee YU-P e5-110", (decimal?)-9646.46875, (decimal?)-912.5625, (decimal?)26911.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22901, Nebula.NebulaType.Planetary, "Juemuia KD-S e4-143", 8, true, "Juemuia KD-S e4-143", (decimal?)-15369.125, (decimal?)-487.71875, (decimal?)26670.25, (int)10 )); + AllOfThem.Add(new Nebula( 23174, Nebula.NebulaType.Planetary, "Lyairoa AL-P e5-4", 8, true, "Lyairoa AL-P e5-4", (decimal?)-12445, (decimal?)110.875, (decimal?)31921.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23565, Nebula.NebulaType.Planetary, "Oob Chreou SY-S e3-189", 8, true, "Oob Chreou SY-S e3-189", (decimal?)-11167.625, (decimal?)25.84375, (decimal?)27831.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23579, Nebula.NebulaType.Planetary, "Ooscs Chreou AG-O e6-2480", 8, true, "Ooscs Chreou AG-O e6-2480", (decimal?)-9510.78125, (decimal?)587.25, (decimal?)28234.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23580, Nebula.NebulaType.Planetary, "Ooscs Chreou FL-P e5-227", 8, true, "Ooscs Chreou FL-P e5-227", (decimal?)-9045.53125, (decimal?)-8.90625, (decimal?)28074.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23581, Nebula.NebulaType.Planetary, "Ooscs Chreou FR-N e6-813", 8, true, "Ooscs Chreou FR-N e6-813", (decimal?)-9730.65625, (decimal?)79.28125, (decimal?)28254.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23582, Nebula.NebulaType.Planetary, "Ooscs Chreou KR-W e1-104", 8, true, "Ooscs Chreou KR-W e1-104", (decimal?)-9636.28125, (decimal?)215.8125, (decimal?)27471.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23721, Nebula.NebulaType.Planetary, "Phimboa BW-N e6-472", 8, true, "Phimboa BW-N e6-472", (decimal?)-8842.8125, (decimal?)167.34375, (decimal?)28356.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23727, Nebula.NebulaType.Planetary, "Phimboa MI-S e4-1713", 8, true, "Phimboa MI-S e4-1713", (decimal?)-8338.96875, (decimal?)1056.375, (decimal?)28016.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23731, Nebula.NebulaType.Planetary, "Phimboa SU-O e6-82", 8, true, "Phimboa SU-O e6-82", (decimal?)-8598.78125, (decimal?)1000.78125, (decimal?)28365.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23897, Nebula.NebulaType.Planetary, "Phoo Aob BW-N e6-362", 8, true, "Phoo Aob BW-N e6-362", (decimal?)-11321.4375, (decimal?)200.34375, (decimal?)24423.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24146, Nebula.NebulaType.Planetary, "Phrooe Flyoae BB-O e6-21", 8, true, "Phrooe Flyoae BB-O e6-21", (decimal?)-12337.53125, (decimal?)-922.71875, (decimal?)24375.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24148, Nebula.NebulaType.Planetary, "Phrooe Flyoae HN-S e4-117", 8, true, "Phrooe Flyoae HN-S e4-117", (decimal?)-12651.0625, (decimal?)-108.28125, (decimal?)24058.375, (int)10 )); + AllOfThem.Add(new Nebula( 24149, Nebula.NebulaType.Planetary, "Phrooe Flyoae QO-Q e5-116", 8, true, "Phrooe Flyoae QO-Q e5-116", (decimal?)-12149.59375, (decimal?)-206.5625, (decimal?)24325.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24340, Nebula.NebulaType.Planetary, "Scauliae VK-O e6-35", 8, true, "Scauliae VK-O e6-35", (decimal?)-10040.65625, (decimal?)-542.65625, (decimal?)29626.75, (int)10 )); + AllOfThem.Add(new Nebula( 24341, Nebula.NebulaType.Planetary, "Scauliae ZP-X e1-113", 8, true, "Scauliae ZP-X e1-113", (decimal?)-9717.21875, (decimal?)-212.125, (decimal?)28846, (int)10 )); + AllOfThem.Add(new Nebula( 24360, Nebula.NebulaType.Planetary, "Scaulou WF-O e6-4818", 8, true, "Scaulou WF-O e6-4818", (decimal?)-7611.5625, (decimal?)-769.625, (decimal?)29549.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24627, Nebula.NebulaType.Planetary, "Shaulo LR-W e1-17", 8, true, "Shaulo LR-W e1-17", (decimal?)-9450.15625, (decimal?)151.59375, (decimal?)28706.875, (int)10 )); + AllOfThem.Add(new Nebula( 24628, Nebula.NebulaType.Planetary, "Shaulo XY-S e3-133", 8, true, "Shaulo XY-S e3-133", (decimal?)-9123.59375, (decimal?)34.8125, (decimal?)29100.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24852, Nebula.NebulaType.Planetary, "Stuemiae CG-X e1-3024", 8, true, "Stuemiae CG-X e1-3024", (decimal?)-9914.34375, (decimal?)696.65625, (decimal?)26255.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24857, Nebula.NebulaType.Planetary, "Stuemiae IH-V e2-4421", 8, true, "Stuemiae IH-V e2-4421", (decimal?)-9853.71875, (decimal?)455.84375, (decimal?)26401.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24862, Nebula.NebulaType.Planetary, "Stuemiae ZP-P e5-5507", 8, true, "Stuemiae ZP-P e5-5507", (decimal?)-9768.59375, (decimal?)188.8125, (decimal?)26863.875, (int)10 )); + AllOfThem.Add(new Nebula( 25023, Nebula.NebulaType.Planetary, "Umbains SP-O e6-12", 8, true, "Umbains SP-O e6-12", (decimal?)-10293.375, (decimal?)-431.59375, (decimal?)30871.8125, (int)10 )); + AllOfThem.Add(new Nebula( 25024, Nebula.NebulaType.Planetary, "Umbains TZ-O e6-60", 8, true, "Umbains TZ-O e6-60", (decimal?)-9361.5625, (decimal?)-72.1875, (decimal?)30908.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25156, Nebula.NebulaType.Planetary, "Wepio OD-B e68", 8, true, "Wepio OD-B e68", (decimal?)-14127.9375, (decimal?)-220.34375, (decimal?)23335.875, (int)10 )); + AllOfThem.Add(new Nebula( 25271, Nebula.NebulaType.Planetary, "Xothaei OM-W e1-229", 8, true, "Xothaei OM-W e1-229", (decimal?)-9266.6875, (decimal?)124.03125, (decimal?)30058.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25272, Nebula.NebulaType.Planetary, "Xothaei YT-A e59", 8, true, "Xothaei YT-A e59", (decimal?)-9340.96875, (decimal?)657.9375, (decimal?)29655.84375, (int)10 )); + } + public static void init_Region_9() { + AllOfThem.Add(new Nebula( 10089, Nebula.NebulaType.Standard, "Blaa Eaec AA-A h86", 9, true, "Blaa Eaec FD-V b19-49", (decimal?)-7761.96875, (decimal?)-650.03125, (decimal?)14729.46875, (int)100 )); + AllOfThem.Add(new Nebula( 10090, Nebula.NebulaType.Standard, "Blaa Hypa AA-A h36", 9, true, "Blaa Hypa MO-V b30-7", (decimal?)-8448.875, (decimal?)-1119.875, (decimal?)12401.125, (int)100 )); + AllOfThem.Add(new Nebula( 10091, Nebula.NebulaType.Standard, "Blaa Hypa AA-A h53", 9, true, "Blaa Hypa UX-N b50-13", (decimal?)-8743.90625, (decimal?)-746.53125, (decimal?)12815.5625, (int)100 )); + AllOfThem.Add(new Nebula( 10092, Nebula.NebulaType.Standard, "Blaa Hypa AA-A h59", 9, true, "Blaa Hypa YZ-N d7-421", (decimal?)-7856.8125, (decimal?)-354.78125, (decimal?)12381.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10093, Nebula.NebulaType.Standard, "Bleae Aescs AA-A h25", 9, true, "Bleae Aescs ZE-A g4", (decimal?)-3056.6875, (decimal?)1087.1875, (decimal?)12182.125, (int)100 )); + AllOfThem.Add(new Nebula( 10094, Nebula.NebulaType.Standard, "Bleae Aewsy AA-A h22", 9, true, "Bleae Aewsy IY-N b9-1", (decimal?)-290.09375, (decimal?)572.28125, (decimal?)11936.03125, (int)100 )); + AllOfThem.Add(new Nebula( 10095, Nebula.NebulaType.Standard, "Blo Aescs AA-A h11", 9, true, "Blo Aescs ZJ-A e13", (decimal?)-7116.625, (decimal?)421.3125, (decimal?)11761.25, (int)100 )); + AllOfThem.Add(new Nebula( 10096, Nebula.NebulaType.Standard, "Blo Aescs AA-A h59", 9, true, "Blo Aescs VA-L d9-108", (decimal?)-6986.09375, (decimal?)1174.1875, (decimal?)12605.65625, (int)100 )); + AllOfThem.Add(new Nebula( 10097, Nebula.NebulaType.Standard, "Blua Eaec AA-A h74", 9, true, "Blua Eaec VY-K b27-59", (decimal?)-6993.875, (decimal?)-229.15625, (decimal?)14888.1875, (int)100 )); + AllOfThem.Add(new Nebula( 10098, Nebula.NebulaType.Standard, "Boewnst AA-A h87", 9, true, "Boewnst KS-S c20-959", (decimal?)-6195.46875, (decimal?)-140.28125, (decimal?)16462.0625, (int)100 )); + AllOfThem.Add(new Nebula( 10099, Nebula.NebulaType.Standard, "Bya Ail AA-A h65", 9, true, "Bya Ail NG-X d1-59", (decimal?)-11777.625, (decimal?)322.4375, (decimal?)15750.65625, (int)100 )); + AllOfThem.Add(new Nebula( 10100, Nebula.NebulaType.Standard, "Clookau AA-A h41", 9, true, "Clookau NZ-X b18-0", (decimal?)-9603.21875, (decimal?)-541.4375, (decimal?)12138.6875, (int)100 )); + AllOfThem.Add(new Nebula( 10101, Nebula.NebulaType.Standard, "Crookaae AA-A h129", 9, true, "Crookaae VJ-O d7-91", (decimal?)-3933.0625, (decimal?)1033, (decimal?)12401.5625, (int)100 )); + AllOfThem.Add(new Nebula( 10102, Nebula.NebulaType.Standard, "Dryaea Flee AA-A h10", 9, true, "Dryaea Flee IO-V b18-13", (decimal?)-11730.21875, (decimal?)482, (decimal?)18539.6875, (int)100 )); + AllOfThem.Add(new Nebula( 10103, Nebula.NebulaType.Standard, "Dryaea Flee AA-A h89", 9, true, "Dryaea Flee ME-G c24-563", (decimal?)-12346.5, (decimal?)0, (decimal?)19194.9375, (int)100 )); + AllOfThem.Add(new Nebula( 10104, Nebula.NebulaType.Standard, "Dryooe Prou AA-A h131", 9, true, "Dryooe Prou KG-X c1-135", (decimal?)-9883.5625, (decimal?)-1141.9375, (decimal?)20798.21875, (int)100 )); + AllOfThem.Add(new Nebula( 10105, Nebula.NebulaType.Standard, "Dryooe Prou AA-A h55", 9, true, "Dryooe Prou HH-C d267", (decimal?)-9875.8125, (decimal?)-333.375, (decimal?)20760.25, (int)100 )); + AllOfThem.Add(new Nebula( 10106, Nebula.NebulaType.Standard, "Eephaills AA-A h62", 9, true, "Eephaills SG-C c1-177", (decimal?)-10369.21875, (decimal?)-449.4375, (decimal?)16915.84375, (int)100 )); + AllOfThem.Add(new Nebula( 10107, Nebula.NebulaType.Standard, "Eoch Flya AA-A h119", 9, true, "Eoch Flya CO-N c8-0", (decimal?)-6383.46875, (decimal?)-1860.25, (decimal?)17218.15625, (int)100 )); + AllOfThem.Add(new Nebula( 10108, Nebula.NebulaType.Standard, "Eol Prou AA-A h89", 9, true, "Eol Prou IW-W e1-3045", (decimal?)-9555.4375, (decimal?)-923.84375, (decimal?)19752.09375, (int)100 )); + AllOfThem.Add(new Nebula( 10109, Nebula.NebulaType.Standard, "Eulail AA-A h2", 9, true, "Eulail IG-M c8-9", (decimal?)-8186.9375, (decimal?)1705.15625, (decimal?)17245.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10110, Nebula.NebulaType.Standard, "Flyiedgai AA-A h50", 9, true, "Flyiedgai UL-C d13-41", (decimal?)-6294.21875, (decimal?)-784.5625, (decimal?)9042.65625, (int)100 )); + AllOfThem.Add(new Nebula( 10111, Nebula.NebulaType.Standard, "Grea Hypooe AA-A h44", 9, true, "Grea Hypooe XJ-I b26-1", (decimal?)-11883.3125, (decimal?)-694.875, (decimal?)13583.875, (int)100 )); + AllOfThem.Add(new Nebula( 10112, Nebula.NebulaType.Standard, "Dr. Kay's Soul", 9, true, "Greae Hypa GO-R b18-1", (decimal?)-8252.40625, (decimal?)-1224.59375, (decimal?)13428.1875, (int)100 )); + AllOfThem.Add(new Nebula( 10113, Nebula.NebulaType.Standard, "Gru Hypue AA-A h69", 9, true, "Gru Hypue KS-T d3-31", (decimal?)-4990.84375, (decimal?)-935.71875, (decimal?)13387.15625, (int)100 )); + AllOfThem.Add(new Nebula( 10114, Nebula.NebulaType.Standard, "Hypua Flyuae AA-A h83", 9, true, "Pha Flee MS-B b33-6", (decimal?)-11966.28125, (decimal?)1181.03125, (decimal?)23957.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10115, Nebula.NebulaType.Standard, "Leamae AA-A h55", 9, true, "Leamae YP-O e6-2428", (decimal?)-11852.96875, (decimal?)-411.625, (decimal?)20604.875, (int)100 )); + AllOfThem.Add(new Nebula( 10116, Nebula.NebulaType.Standard, "Nuekau AA-A h83", 9, true, "Nuekau BK-Z d44", (decimal?)-1830.09375, (decimal?)-751.375, (decimal?)13105.125, (int)100 )); + AllOfThem.Add(new Nebula( 10117, Nebula.NebulaType.Standard, "Oephaif AA-A h100", 9, true, "Oephaif ST-M b34-175", (decimal?)-11582.4375, (decimal?)-16.5625, (decimal?)17602.125, (int)100 )); + AllOfThem.Add(new Nebula( 10118, Nebula.NebulaType.Standard, "Oephaif AA-A h23", 9, true, "Oephaif RJ-G d11-408", (decimal?)-10646.21875, (decimal?)621.5, (decimal?)17838.15625, (int)100 )); + AllOfThem.Add(new Nebula( 10119, Nebula.NebulaType.Standard, "Oephaif AA-A h5", 9, true, "Oephaif GE-E b1-10", (decimal?)-10807.4375, (decimal?)596.8125, (decimal?)16889.3125, (int)100 )); + AllOfThem.Add(new Nebula( 10120, Nebula.NebulaType.Standard, "Ooscs Aob AA-A h3", 9, true, "Ooscs Aob SZ-W d2-510", (decimal?)-9909.1875, (decimal?)995.8125, (decimal?)17165.03125, (int)100 )); + AllOfThem.Add(new Nebula( 10121, Nebula.NebulaType.Standard, "Plio Aim AA-A h1", 9, true, "Plio Aim ZS-W b4-0", (decimal?)-8281.9375, (decimal?)568.40625, (decimal?)9280.8125, (int)100 )); + AllOfThem.Add(new Nebula( 10122, Nebula.NebulaType.Standard, "Preae Ain AA-A h29", 9, true, "Preae Ain IS-A d1-17", (decimal?)-4817.625, (decimal?)1093.5625, (decimal?)10572.59375, (int)100 )); + AllOfThem.Add(new Nebula( 10123, Nebula.NebulaType.Standard, "Preae Ain AA-A h43", 9, true, "Preae Ain VU-V c3-23", (decimal?)-4808.75, (decimal?)584.34375, (decimal?)10618.90625, (int)100 )); + AllOfThem.Add(new Nebula( 10124, Nebula.NebulaType.Standard, "Prua Phoe AA-A h69", 9, true, "Prua Phoe TK-M d8-361", (decimal?)-5881.5, (decimal?)-299.21875, (decimal?)11204.125, (int)100 )); + AllOfThem.Add(new Nebula( 10125, Nebula.NebulaType.Standard, "Screaka AA-A h72", 9, true, "Screaka RE-M b35-61", (decimal?)-13480.0625, (decimal?)101.59375, (decimal?)21456.1875, (int)100 )); + AllOfThem.Add(new Nebula( 10126, Nebula.NebulaType.Standard, "Skaudai AA-A h71", 9, true, "Skaudai AL-O e6-27", (decimal?)-5488.125, (decimal?)-574.3125, (decimal?)10422.375, (int)100 )); + AllOfThem.Add(new Nebula( 20181, Nebula.NebulaType.Planetary, "Aumaimy HR-N e6-82", 9, true, "Aumaimy HR-N e6-82", (decimal?)-12003.25, (decimal?)1260.28125, (decimal?)21918.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20255, Nebula.NebulaType.Planetary, "Blaa Eaec HH-U e3-4622", 9, true, "Blaa Eaec HH-U e3-4622", (decimal?)-8165.3125, (decimal?)-77.53125, (decimal?)15038.75, (int)10 )); + AllOfThem.Add(new Nebula( 20256, Nebula.NebulaType.Planetary, "Blaa Eaec HH-U e3-5767", 9, true, "Blaa Eaec HH-U e3-5767", (decimal?)-8122.78125, (decimal?)-146.25, (decimal?)14989.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20257, Nebula.NebulaType.Planetary, "Blaa Eaec RI-B e4327", 9, true, "Blaa Eaec RI-B e4327", (decimal?)-8215.71875, (decimal?)-62.71875, (decimal?)14431.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20258, Nebula.NebulaType.Planetary, "Blaa Hypa LD-S e4-130", 9, true, "Blaa Hypa LD-S e4-130", (decimal?)-8858, (decimal?)-445.625, (decimal?)12642.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20259, Nebula.NebulaType.Planetary, "Blaa Hypa OZ-O e6-248", 9, true, "Blaa Hypa OZ-O e6-248", (decimal?)-8939.15625, (decimal?)-54, (decimal?)12991.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20260, Nebula.NebulaType.Planetary, "Blaa Hypa RT-Q e5-6951", 9, true, "Blaa Hypa RT-Q e5-6951", (decimal?)-7848.1875, (decimal?)-154.65625, (decimal?)12812.25, (int)10 )); + AllOfThem.Add(new Nebula( 20261, Nebula.NebulaType.Planetary, "Blaa Hypa SZ-O e6-464", 9, true, "Blaa Hypa SZ-O e6-464", (decimal?)-8331.21875, (decimal?)-154.34375, (decimal?)12976.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20262, Nebula.NebulaType.Planetary, "Blaa Hypa VZ-O e6-566", 9, true, "Blaa Hypa VZ-O e6-566", (decimal?)-7803.1875, (decimal?)-98.8125, (decimal?)12927.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20263, Nebula.NebulaType.Planetary, "Blaa Hypa YA-W e2-364", 9, true, "Blaa Hypa YA-W e2-364", (decimal?)-8999.3125, (decimal?)-28, (decimal?)12368.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20264, Nebula.NebulaType.Planetary, "Blaa Hypa ZF-O e6-39", 9, true, "Blaa Hypa ZF-O e6-39", (decimal?)-8449.8125, (decimal?)-673.78125, (decimal?)12881.375, (int)10 )); + AllOfThem.Add(new Nebula( 20267, Nebula.NebulaType.Planetary, "Blaa Phoe XO-Z e171", 9, true, "Blaa Phoe XO-Z e171", (decimal?)-5192.625, (decimal?)-138, (decimal?)14475.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20278, Nebula.NebulaType.Planetary, "Blau Aescs UD-T e3-225", 9, true, "Blau Aescs UD-T e3-225", (decimal?)-7968.59375, (decimal?)152.84375, (decimal?)12448.25, (int)10 )); + AllOfThem.Add(new Nebula( 20279, Nebula.NebulaType.Planetary, "Blau Aescs WP-P e5-3333", 9, true, "Blau Aescs WP-P e5-3333", (decimal?)-8934.875, (decimal?)154.09375, (decimal?)12769.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20286, Nebula.NebulaType.Planetary, "Bleae Aescs FR-N e6-18", 9, true, "Bleae Aescs FR-N e6-18", (decimal?)-3295.40625, (decimal?)100.1875, (decimal?)12969.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20287, Nebula.NebulaType.Planetary, "Bleae Aescs UY-S e3-66", 9, true, "Bleae Aescs UY-S e3-66", (decimal?)-3173.375, (decimal?)14.71875, (decimal?)12425.875, (int)10 )); + AllOfThem.Add(new Nebula( 20288, Nebula.NebulaType.Planetary, "Bleae Aescs WF-O e6-22", 9, true, "Bleae Aescs WF-O e6-22", (decimal?)-3833.1875, (decimal?)510.15625, (decimal?)12919.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20289, Nebula.NebulaType.Planetary, "Bleae Aescs ZE-A e204", 9, true, "Bleae Aescs ZE-A e204", (decimal?)-3599, (decimal?)285.90625, (decimal?)11743.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20298, Nebula.NebulaType.Planetary, "Blie Airg EA-A e169", 9, true, "Blie Airg EA-A e169", (decimal?)-10842.34375, (decimal?)130.875, (decimal?)14374.875, (int)10 )); + AllOfThem.Add(new Nebula( 20299, Nebula.NebulaType.Planetary, "Blie Airg YP-O e6-42", 9, true, "Blie Airg YP-O e6-42", (decimal?)-10597.46875, (decimal?)828, (decimal?)15427.375, (int)10 )); + AllOfThem.Add(new Nebula( 20301, Nebula.NebulaType.Planetary, "Blo Aescs EM-V e2-119", 9, true, "Blo Aescs EM-V e2-119", (decimal?)-7587.9375, (decimal?)705.5625, (decimal?)12282.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20303, Nebula.NebulaType.Planetary, "Blo Air KH-V e2-53", 9, true, "Blo Air KH-V e2-53", (decimal?)-7089.71875, (decimal?)1757.03125, (decimal?)14843.5, (int)10 )); + AllOfThem.Add(new Nebula( 20316, Nebula.NebulaType.Planetary, "Blua Eaec RT-Q e5-344", 9, true, "Blua Eaec RT-Q e5-344", (decimal?)-6531.1875, (decimal?)-145.21875, (decimal?)15307.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20317, Nebula.NebulaType.Planetary, "Blua Eaec TO-Q e5-6089", 9, true, "Blua Eaec TO-Q e5-6089", (decimal?)-6590.34375, (decimal?)-239.96875, (decimal?)15367.125, (int)10 )); + AllOfThem.Add(new Nebula( 20318, Nebula.NebulaType.Planetary, "Blua Hypa QU-O e6-3848", 9, true, "Blua Hypa QU-O e6-3848", (decimal?)-7675.09375, (decimal?)-298.0625, (decimal?)12998.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20319, Nebula.NebulaType.Planetary, "Blua Hypa QU-O e6-659", 9, true, "Blua Hypa QU-O e6-659", (decimal?)-7666.8125, (decimal?)-316.5625, (decimal?)12926.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20320, Nebula.NebulaType.Planetary, "Blua Hypa TU-O e6-63", 9, true, "Blua Hypa TU-O e6-63", (decimal?)-7206.1875, (decimal?)-296.875, (decimal?)12971.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20321, Nebula.NebulaType.Planetary, "Blua Hypa XJ-Z e127", 9, true, "Blua Hypa XJ-Z e127", (decimal?)-6885.09375, (decimal?)-214.5, (decimal?)11944.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20322, Nebula.NebulaType.Planetary, "Blua Hypoea UD-B e0", 9, true, "Blua Hypoea UD-B e0", (decimal?)-6762.09375, (decimal?)-1598.21875, (decimal?)11749.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20323, Nebula.NebulaType.Planetary, "Blua Hypue HR-V e2-35", 9, true, "Blua Hypue HR-V e2-35", (decimal?)-4346.8125, (decimal?)-393.1875, (decimal?)12219.375, (int)10 )); + AllOfThem.Add(new Nebula( 20324, Nebula.NebulaType.Planetary, "Blue Eaewsy CB-W e2-631", 9, true, "Blue Eaewsy CB-W e2-631", (decimal?)-9525.75, (decimal?)-153.15625, (decimal?)14825.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20325, Nebula.NebulaType.Planetary, "Blue Eaewsy DB-W e2-565", 9, true, "Blue Eaewsy DB-W e2-565", (decimal?)-9488.71875, (decimal?)-44.4375, (decimal?)14854.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20326, Nebula.NebulaType.Planetary, "Blue Eaewsy RN-T e3-170", 9, true, "Blue Eaewsy RN-T e3-170", (decimal?)-9068.09375, (decimal?)-788.65625, (decimal?)14993.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20327, Nebula.NebulaType.Planetary, "Blue Eaewsy TO-Q e5-376", 9, true, "Blue Eaewsy TO-Q e5-376", (decimal?)-9081.34375, (decimal?)-246.5, (decimal?)15345.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20328, Nebula.NebulaType.Planetary, "Blue Eaewsy VJ-Q e5-4335", 9, true, "Blue Eaewsy VJ-Q e5-4335", (decimal?)-9066.84375, (decimal?)-476.90625, (decimal?)15262.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20329, Nebula.NebulaType.Planetary, "Blue Eaewsy XY-A e1057", 9, true, "Blue Eaewsy XY-A e1057", (decimal?)-9163.6875, (decimal?)-362, (decimal?)14398.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20337, Nebula.NebulaType.Planetary, "Boekh BQ-X e1-39", 9, true, "Boekh BQ-X e1-39", (decimal?)-10673.09375, (decimal?)-278.125, (decimal?)15897.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20338, Nebula.NebulaType.Planetary, "Boekh HN-S e4-248", 9, true, "Boekh HN-S e4-248", (decimal?)-11400.09375, (decimal?)-93.3125, (decimal?)16408.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20339, Nebula.NebulaType.Planetary, "Boekh KN-S e4-7970", 9, true, "Boekh KN-S e4-7970", (decimal?)-10941, (decimal?)-51.25, (decimal?)16525.1875, (int)10 )); + AllOfThem.Add(new Nebula( 20340, Nebula.NebulaType.Planetary, "Boekh RI-B e652", 9, true, "Boekh RI-B e652", (decimal?)-10666.59375, (decimal?)-179.65625, (decimal?)15720.125, (int)10 )); + AllOfThem.Add(new Nebula( 20341, Nebula.NebulaType.Planetary, "Boekh WU-X e1-94", 9, true, "Boekh WU-X e1-94", (decimal?)-11259.46875, (decimal?)-168.625, (decimal?)15994.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20342, Nebula.NebulaType.Planetary, "Boekh YA-W e2-490", 9, true, "Boekh YA-W e2-490", (decimal?)-11465.65625, (decimal?)-43, (decimal?)16079.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20343, Nebula.NebulaType.Planetary, "Boekh YJ-Z e217", 9, true, "Boekh YJ-Z e217", (decimal?)-10560.875, (decimal?)-254.9375, (decimal?)15805.125, (int)10 )); + AllOfThem.Add(new Nebula( 20344, Nebula.NebulaType.Planetary, "Boelts JS-T e3-1524", 9, true, "Boelts JS-T e3-1524", (decimal?)-7570.25, (decimal?)-529.3125, (decimal?)16316.375, (int)10 )); + AllOfThem.Add(new Nebula( 20345, Nebula.NebulaType.Planetary, "Boelts KD-S e4-1629", 9, true, "Boelts KD-S e4-1629", (decimal?)-7700.34375, (decimal?)-406.125, (decimal?)16398, (int)10 )); + AllOfThem.Add(new Nebula( 20346, Nebula.NebulaType.Planetary, "Boelts TI-B e835", 9, true, "Boelts TI-B e835", (decimal?)-6548.84375, (decimal?)-168.3125, (decimal?)15683.875, (int)10 )); + AllOfThem.Add(new Nebula( 20347, Nebula.NebulaType.Planetary, "Boeph AQ-Y e74", 9, true, "Boeph AQ-Y e74", (decimal?)-8940.4375, (decimal?)-939.875, (decimal?)15775.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20348, Nebula.NebulaType.Planetary, "Boeph DL-X e1-259", 9, true, "Boeph DL-X e1-259", (decimal?)-8183.03125, (decimal?)-454.6875, (decimal?)15942.5, (int)10 )); + AllOfThem.Add(new Nebula( 20349, Nebula.NebulaType.Planetary, "Boeph MI-B e737", 9, true, "Boeph MI-B e737", (decimal?)-8952.78125, (decimal?)-153.4375, (decimal?)15665.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20350, Nebula.NebulaType.Planetary, "Boeph RO-Z e661", 9, true, "Boeph RO-Z e661", (decimal?)-8762.75, (decimal?)-120.625, (decimal?)15783.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20351, Nebula.NebulaType.Planetary, "Boeph TD-B e43", 9, true, "Boeph TD-B e43", (decimal?)-8098.8125, (decimal?)-213.875, (decimal?)15670.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20352, Nebula.NebulaType.Planetary, "Boeph UD-B e6727", 9, true, "Boeph UD-B e6727", (decimal?)-7950.40625, (decimal?)-315.90625, (decimal?)15585, (int)10 )); + AllOfThem.Add(new Nebula( 20353, Nebula.NebulaType.Planetary, "Boeph UJ-Z e94", 9, true, "Boeph UJ-Z e94", (decimal?)-8682.375, (decimal?)-342.03125, (decimal?)15764.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20354, Nebula.NebulaType.Planetary, "Boeph YE-Z e138", 9, true, "Boeph YE-Z e138", (decimal?)-8300.65625, (decimal?)-350.6875, (decimal?)15847.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20355, Nebula.NebulaType.Planetary, "Boeph ZU-X e1-669", 9, true, "Boeph ZU-X e1-669", (decimal?)-8130.65625, (decimal?)-144.625, (decimal?)15923.125, (int)10 )); + AllOfThem.Add(new Nebula( 20368, Nebula.NebulaType.Planetary, "Boesky BW-V e2-48", 9, true, "Boesky BW-V e2-48", (decimal?)-10101.6875, (decimal?)-324.25, (decimal?)16071.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20369, Nebula.NebulaType.Planetary, "Boesky LI-S e4-221", 9, true, "Boesky LI-S e4-221", (decimal?)-9769.0625, (decimal?)-315.59375, (decimal?)16465.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20370, Nebula.NebulaType.Planetary, "Boesky PD-B e7368", 9, true, "Boesky PD-B e7368", (decimal?)-10120.28125, (decimal?)-229.25, (decimal?)15664.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20371, Nebula.NebulaType.Planetary, "Boesky ZK-X e1-1974", 9, true, "Boesky ZK-X e1-1974", (decimal?)-10022.53125, (decimal?)-456.6875, (decimal?)15983.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20372, Nebula.NebulaType.Planetary, "Boesky ZK-X e1-2658", 9, true, "Boesky ZK-X e1-2658", (decimal?)-10024.6875, (decimal?)-388.46875, (decimal?)15900.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20381, Nebula.NebulaType.Planetary, "Boewnst UP-O e6-6992", 9, true, "Boewnst UP-O e6-6992", (decimal?)-6010.03125, (decimal?)-479.125, (decimal?)16845.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20482, Nebula.NebulaType.Planetary, "Brambai CB-O e6-3", 9, true, "Brambai CB-O e6-3", (decimal?)-9644.28125, (decimal?)-2174.9375, (decimal?)19276.625, (int)10 )); + AllOfThem.Add(new Nebula( 20483, Nebula.NebulaType.Planetary, "Bya Aeb AV-P e5-388", 9, true, "Bya Aeb AV-P e5-388", (decimal?)-9301.1875, (decimal?)418.15625, (decimal?)14101.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20484, Nebula.NebulaType.Planetary, "Bya Aeb LX-U e2-26", 9, true, "Bya Aeb LX-U e2-26", (decimal?)-10024.03125, (decimal?)223.5, (decimal?)13617.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20485, Nebula.NebulaType.Planetary, "Bya Ail HW-N e6-2813", 9, true, "Bya Ail HW-N e6-2813", (decimal?)-11730.125, (decimal?)247.28125, (decimal?)16755.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20486, Nebula.NebulaType.Planetary, "Bya Ail ZE-R e4-170", 9, true, "Bya Ail ZE-R e4-170", (decimal?)-11993.375, (decimal?)84.78125, (decimal?)16451.40625, (int)10 )); + AllOfThem.Add(new Nebula( 20487, Nebula.NebulaType.Planetary, "Bya Airg DL-P e5-839", 9, true, "Bya Airg DL-P e5-839", (decimal?)-9474.46875, (decimal?)-2.40625, (decimal?)16583.125, (int)10 )); + AllOfThem.Add(new Nebula( 20488, Nebula.NebulaType.Planetary, "Bya Airg GG-Y e1560", 9, true, "Bya Airg GG-Y e1560", (decimal?)-9901.0625, (decimal?)-1.28125, (decimal?)15831.5, (int)10 )); + AllOfThem.Add(new Nebula( 20506, Nebula.NebulaType.Planetary, "Byoi Ain GR-N e6-1614", 9, true, "Byoi Ain GR-N e6-1614", (decimal?)-5781.21875, (decimal?)117.59375, (decimal?)16814.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20507, Nebula.NebulaType.Planetary, "Byoi Ain GR-N e6-1971", 9, true, "Byoi Ain GR-N e6-1971", (decimal?)-5763.96875, (decimal?)-14.21875, (decimal?)16791.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20508, Nebula.NebulaType.Planetary, "Byoi Ain JX-T e3-2934", 9, true, "Byoi Ain JX-T e3-2934", (decimal?)-5974.5625, (decimal?)854.59375, (decimal?)16357.625, (int)10 )); + AllOfThem.Add(new Nebula( 20511, Nebula.NebulaType.Planetary, "Byoi Ain WE-R e4-913", 9, true, "Byoi Ain WE-R e4-913", (decimal?)-6029.1875, (decimal?)-10.90625, (decimal?)16424.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20516, Nebula.NebulaType.Planetary, "Byoo Airg CR-N e6-11", 9, true, "Byoo Airg CR-N e6-11", (decimal?)-11540.65625, (decimal?)54.3125, (decimal?)16821.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20753, Nebula.NebulaType.Planetary, "Clookao SU-O e6-33", 9, true, "Clookao SU-O e6-33", (decimal?)-11182.5625, (decimal?)-257.96875, (decimal?)12957.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20754, Nebula.NebulaType.Planetary, "Clookao SU-O e6-45", 9, true, "Clookao SU-O e6-45", (decimal?)-11207.5, (decimal?)-246.96875, (decimal?)12914.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20755, Nebula.NebulaType.Planetary, "Clookau HN-S e4-194", 9, true, "Clookau HN-S e4-194", (decimal?)-10068.96875, (decimal?)-133.84375, (decimal?)12581.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20756, Nebula.NebulaType.Planetary, "Clookie LD-S e4-38", 9, true, "Clookie LD-S e4-38", (decimal?)-2347.53125, (decimal?)-389.65625, (decimal?)12553.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20757, Nebula.NebulaType.Planetary, "Clooku UY-A e1204", 9, true, "Clooku UY-A e1204", (decimal?)-5680.40625, (decimal?)-492.59375, (decimal?)11799.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20758, Nebula.NebulaType.Planetary, "Clooku WO-Z e3682", 9, true, "Clooku WO-Z e3682", (decimal?)-5476.4375, (decimal?)-60.875, (decimal?)11929.96875, (int)10 )); + AllOfThem.Add(new Nebula( 20773, Nebula.NebulaType.Planetary, "Crookaei VZ-P e5-59", 9, true, "Crookaei VZ-P e5-59", (decimal?)-9750.5, (decimal?)541.9375, (decimal?)12781.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20774, Nebula.NebulaType.Planetary, "Crookoa XJ-A e136", 9, true, "Crookoa XJ-A e136", (decimal?)-6181.125, (decimal?)297.75, (decimal?)11793.15625, (int)10 )); + AllOfThem.Add(new Nebula( 20864, Nebula.NebulaType.Planetary, "Dryae Flyoae FR-V e2-9", 9, true, "Dryae Flyoae FR-V e2-9", (decimal?)-13562.3125, (decimal?)-430.40625, (decimal?)18701.65625, (int)10 )); + AllOfThem.Add(new Nebula( 20865, Nebula.NebulaType.Planetary, "Dryae Flyoae NT-Q e5-193", 9, true, "Dryae Flyoae NT-Q e5-193", (decimal?)-13554.8125, (decimal?)-105.4375, (decimal?)19175.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20866, Nebula.NebulaType.Planetary, "Dryae Flyoae TY-R e4-46", 9, true, "Dryae Flyoae TY-R e4-46", (decimal?)-12870.625, (decimal?)-574.09375, (decimal?)18993.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20867, Nebula.NebulaType.Planetary, "Dryaea Aob AW-N e6-340", 9, true, "Dryaea Aob AW-N e6-340", (decimal?)-10249.9375, (decimal?)171.4375, (decimal?)19292.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20868, Nebula.NebulaType.Planetary, "Dryaea Aob CG-O e6-2354", 9, true, "Dryaea Aob CG-O e6-2354", (decimal?)-9321.46875, (decimal?)520.5, (decimal?)19291.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20869, Nebula.NebulaType.Planetary, "Dryaea Aob IH-V e2-250", 9, true, "Dryaea Aob IH-V e2-250", (decimal?)-9881, (decimal?)528.28125, (decimal?)18678.625, (int)10 )); + AllOfThem.Add(new Nebula( 20870, Nebula.NebulaType.Planetary, "Dryaea Aob TJ-Q e5-1017", 9, true, "Dryaea Aob TJ-Q e5-1017", (decimal?)-9423.5, (decimal?)785.625, (decimal?)19164.53125, (int)10 )); + AllOfThem.Add(new Nebula( 20871, Nebula.NebulaType.Planetary, "Dryaea Aob TJ-Q e5-2603", 9, true, "Dryaea Aob TJ-Q e5-2603", (decimal?)-9482.78125, (decimal?)779.5625, (decimal?)19212.125, (int)10 )); + AllOfThem.Add(new Nebula( 20872, Nebula.NebulaType.Planetary, "Dryaea Aob UU-P e5-1903", 9, true, "Dryaea Aob UU-P e5-1903", (decimal?)-10161.09375, (decimal?)417.40625, (decimal?)19225.28125, (int)10 )); + AllOfThem.Add(new Nebula( 20873, Nebula.NebulaType.Planetary, "Dryaea Aob ZU-P e5-169", 9, true, "Dryaea Aob ZU-P e5-169", (decimal?)-9487.71875, (decimal?)340.28125, (decimal?)19208.875, (int)10 )); + AllOfThem.Add(new Nebula( 20874, Nebula.NebulaType.Planetary, "Dryaea Flee DB-O e6-1267", 9, true, "Dryaea Flee DB-O e6-1267", (decimal?)-11907.3125, (decimal?)353.90625, (decimal?)19307.46875, (int)10 )); + AllOfThem.Add(new Nebula( 20875, Nebula.NebulaType.Planetary, "Dryaea Flee DK-A e108", 9, true, "Dryaea Flee DK-A e108", (decimal?)-11614.78125, (decimal?)328.8125, (decimal?)18284.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20876, Nebula.NebulaType.Planetary, "Dryaea Flee GR-W e1-83", 9, true, "Dryaea Flee GR-W e1-83", (decimal?)-12706.71875, (decimal?)230.4375, (decimal?)18572.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20877, Nebula.NebulaType.Planetary, "Dryaea Flee OM-W e1-759", 9, true, "Dryaea Flee OM-W e1-759", (decimal?)-11854.6875, (decimal?)67.375, (decimal?)18537.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20878, Nebula.NebulaType.Planetary, "Dryaea Flee TJ-R e4-331", 9, true, "Dryaea Flee TJ-R e4-331", (decimal?)-12631.03125, (decimal?)207.53125, (decimal?)19005.8125, (int)10 )); + AllOfThem.Add(new Nebula( 20879, Nebula.NebulaType.Planetary, "Dryaea Flee VE-R e4-316", 9, true, "Dryaea Flee VE-R e4-316", (decimal?)-12595.28125, (decimal?)5.4375, (decimal?)18942.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21150, Nebula.NebulaType.Planetary, "Dryio Flyuae AQ-X e1-5724", 9, true, "Dryio Flyuae AQ-X e1-5724", (decimal?)-8329.5, (decimal?)-319.59375, (decimal?)18492.25, (int)10 )); + AllOfThem.Add(new Nebula( 21151, Nebula.NebulaType.Planetary, "Dryio Flyuae AV-X e1-4061", 9, true, "Dryio Flyuae AV-X e1-4061", (decimal?)-7915.9375, (decimal?)-70.34375, (decimal?)18596.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21153, Nebula.NebulaType.Planetary, "Dryio Flyuae DA-Z e8246", 9, true, "Dryio Flyuae DA-Z e8246", (decimal?)-7755.03125, (decimal?)-593.3125, (decimal?)18364.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21154, Nebula.NebulaType.Planetary, "Dryio Flyuae HC-U e3-8680", 9, true, "Dryio Flyuae HC-U e3-8680", (decimal?)-8506.46875, (decimal?)-221.96875, (decimal?)18829.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21155, Nebula.NebulaType.Planetary, "Dryio Flyuae OD-B e261", 9, true, "Dryio Flyuae OD-B e261", (decimal?)-9017.5, (decimal?)-313.25, (decimal?)18183.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21156, Nebula.NebulaType.Planetary, "Dryio Flyuae OY-R e4-1338", 9, true, "Dryio Flyuae OY-R e4-1338", (decimal?)-8637.53125, (decimal?)-633.4375, (decimal?)18944.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21157, Nebula.NebulaType.Planetary, "Dryio Flyuae PY-R e4-6110", 9, true, "Dryio Flyuae PY-R e4-6110", (decimal?)-8473.9375, (decimal?)-645.6875, (decimal?)19068.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21158, Nebula.NebulaType.Planetary, "Dryio Flyuae QZ-O e6-3133", 9, true, "Dryio Flyuae QZ-O e6-3133", (decimal?)-8651.75, (decimal?)-143.375, (decimal?)19323.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21159, Nebula.NebulaType.Planetary, "Dryio Flyuae SO-R e4-1329", 9, true, "Dryio Flyuae SO-R e4-1329", (decimal?)-8582.8125, (decimal?)-860.875, (decimal?)19022.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21160, Nebula.NebulaType.Planetary, "Dryio Flyuae SU-O e6-7326", 9, true, "Dryio Flyuae SU-O e6-7326", (decimal?)-8603.125, (decimal?)-242.34375, (decimal?)19311.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21161, Nebula.NebulaType.Planetary, "Dryio Flyuae TO-Z e9086", 9, true, "Dryio Flyuae TO-Z e9086", (decimal?)-8425.0625, (decimal?)-33.15625, (decimal?)18447.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21162, Nebula.NebulaType.Planetary, "Dryio Flyuae UU-X e1-1048", 9, true, "Dryio Flyuae UU-X e1-1048", (decimal?)-8891.40625, (decimal?)-39.625, (decimal?)18531.375, (int)10 )); + AllOfThem.Add(new Nebula( 21163, Nebula.NebulaType.Planetary, "Dryio Flyuae VE-Z e470", 9, true, "Dryio Flyuae VE-Z e470", (decimal?)-8740.25, (decimal?)-429.0625, (decimal?)18371.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21326, Nebula.NebulaType.Planetary, "Dryooe Flyou EL-X e1-6045", 9, true, "Dryooe Flyou EL-X e1-6045", (decimal?)-9194.15625, (decimal?)-435.125, (decimal?)18545.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21327, Nebula.NebulaType.Planetary, "Dryooe Flyou PC-V e2-457", 9, true, "Dryooe Flyou PC-V e2-457", (decimal?)-9144.53125, (decimal?)-863.96875, (decimal?)18640.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21328, Nebula.NebulaType.Planetary, "Dryooe Flyou XE-Q e5-2992", 9, true, "Dryooe Flyou XE-Q e5-2992", (decimal?)-9071.40625, (decimal?)-521.875, (decimal?)19249.875, (int)10 )); + AllOfThem.Add(new Nebula( 21329, Nebula.NebulaType.Planetary, "Dryooe Flyou YT-A e1844", 9, true, "Dryooe Flyou YT-A e1844", (decimal?)-9191.59375, (decimal?)-620.96875, (decimal?)18282.125, (int)10 )); + AllOfThem.Add(new Nebula( 21334, Nebula.NebulaType.Planetary, "Dryooe Prou VJ-Z e507", 9, true, "Dryooe Prou VJ-Z e507", (decimal?)-9821.46875, (decimal?)-270.0625, (decimal?)20984.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21342, Nebula.NebulaType.Planetary, "Dryuae Aoscs CW-N e6-6050", 9, true, "Dryuae Aoscs CW-N e6-6050", (decimal?)-8603.90625, (decimal?)268.75, (decimal?)19275, (int)10 )); + AllOfThem.Add(new Nebula( 21345, Nebula.NebulaType.Planetary, "Dryuae Aoscs IR-W e1-3926", 9, true, "Dryuae Aoscs IR-W e1-3926", (decimal?)-8639.65625, (decimal?)229.1875, (decimal?)18484.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21346, Nebula.NebulaType.Planetary, "Dryuae Aoscs IX-T e3-4095", 9, true, "Dryuae Aoscs IX-T e3-4095", (decimal?)-8677.78125, (decimal?)830.1875, (decimal?)18929.75, (int)10 )); + AllOfThem.Add(new Nebula( 21347, Nebula.NebulaType.Planetary, "Dryuae Aoscs JH-V e2-3695", 9, true, "Dryuae Aoscs JH-V e2-3695", (decimal?)-8450.65625, (decimal?)489.125, (decimal?)18760.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21348, Nebula.NebulaType.Planetary, "Dryuae Aoscs PX-U e2-3987", 9, true, "Dryuae Aoscs PX-U e2-3987", (decimal?)-8191.9375, (decimal?)223.125, (decimal?)18662.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21350, Nebula.NebulaType.Planetary, "Dryuae Aoscs RS-U e2-13", 9, true, "Dryuae Aoscs RS-U e2-13", (decimal?)-8080.90625, (decimal?)-24.25, (decimal?)18657.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21351, Nebula.NebulaType.Planetary, "Dryuae Aoscs RT-R e4-5915", 9, true, "Dryuae Aoscs RT-R e4-5915", (decimal?)-8399.09375, (decimal?)477.53125, (decimal?)19002.5, (int)10 )); + AllOfThem.Add(new Nebula( 21352, Nebula.NebulaType.Planetary, "Dryuae Aoscs WZ-P e5-7968", 9, true, "Dryuae Aoscs WZ-P e5-7968", (decimal?)-8306.53125, (decimal?)522.875, (decimal?)19135.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21353, Nebula.NebulaType.Planetary, "Dryuae Aoscs YU-Y e131", 9, true, "Dryuae Aoscs YU-Y e131", (decimal?)-8940.46875, (decimal?)568.46875, (decimal?)18308.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21525, Nebula.NebulaType.Planetary, "Dunee EW-W e1-90", 9, true, "Dunee EW-W e1-90", (decimal?)-11508.8125, (decimal?)302.375, (decimal?)22363.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21526, Nebula.NebulaType.Planetary, "Dunee PN-T e3-3413", 9, true, "Dunee PN-T e3-3413", (decimal?)-10764.125, (decimal?)546.875, (decimal?)22615.5, (int)10 )); + AllOfThem.Add(new Nebula( 21527, Nebula.NebulaType.Planetary, "Dunee PX-U e2-212", 9, true, "Dunee PX-U e2-212", (decimal?)-10655.21875, (decimal?)220.21875, (decimal?)22463.9375, (int)10 )); + AllOfThem.Add(new Nebula( 21530, Nebula.NebulaType.Planetary, "Dunee XE-R e4-371", 9, true, "Dunee XE-R e4-371", (decimal?)-11043.90625, (decimal?)-24.78125, (decimal?)22782.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21564, Nebula.NebulaType.Planetary, "Eephaik DH-U e3-4334", 9, true, "Eephaik DH-U e3-4334", (decimal?)-12592.96875, (decimal?)-155.78125, (decimal?)17611.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21565, Nebula.NebulaType.Planetary, "Eephaik EW-V e2-229", 9, true, "Eephaik EW-V e2-229", (decimal?)-12067.46875, (decimal?)-239.90625, (decimal?)17357.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21566, Nebula.NebulaType.Planetary, "Eephaik KX-T e3-158", 9, true, "Eephaik KX-T e3-158", (decimal?)-12083.25, (decimal?)-418.875, (decimal?)17518.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21567, Nebula.NebulaType.Planetary, "Eephaik NT-Q e5-220", 9, true, "Eephaik NT-Q e5-220", (decimal?)-12322.59375, (decimal?)-38.75, (decimal?)17955.375, (int)10 )); + AllOfThem.Add(new Nebula( 21568, Nebula.NebulaType.Planetary, "Eephaik UJ-Q e5-2366", 9, true, "Eephaik UJ-Q e5-2366", (decimal?)-11856.5, (decimal?)-440.03125, (decimal?)17869.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21569, Nebula.NebulaType.Planetary, "Eephaik UZ-O e6-5947", 9, true, "Eephaik UZ-O e6-5947", (decimal?)-11836.6875, (decimal?)-159.71875, (decimal?)18050.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21570, Nebula.NebulaType.Planetary, "Eephaik XZ-Y e56", 9, true, "Eephaik XZ-Y e56", (decimal?)-12602.84375, (decimal?)-646.75, (decimal?)17081.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21571, Nebula.NebulaType.Planetary, "Eephaills DQ-X e1-16", 9, true, "Eephaills DQ-X e1-16", (decimal?)-10388.625, (decimal?)-223.71875, (decimal?)17227.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21572, Nebula.NebulaType.Planetary, "Eephaills KI-S e4-1079", 9, true, "Eephaills KI-S e4-1079", (decimal?)-11223.53125, (decimal?)-272.34375, (decimal?)17808.375, (int)10 )); + AllOfThem.Add(new Nebula( 21573, Nebula.NebulaType.Planetary, "Eephaills VU-X e1-276", 9, true, "Eephaills VU-X e1-276", (decimal?)-11337.25, (decimal?)-76, (decimal?)17331.6875, (int)10 )); + AllOfThem.Add(new Nebula( 21574, Nebula.NebulaType.Planetary, "Eephaills WY-A e1", 9, true, "Eephaills WY-A e1", (decimal?)-10477.21875, (decimal?)-426.90625, (decimal?)17003.875, (int)10 )); + AllOfThem.Add(new Nebula( 21637, Nebula.NebulaType.Planetary, "Eidairld FM-V e2-53", 9, true, "Eidairld FM-V e2-53", (decimal?)-2419.90625, (decimal?)-538.875, (decimal?)11071.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21644, Nebula.NebulaType.Planetary, "Ellaisms QX-U e2-43", 9, true, "Ellaisms QX-U e2-43", (decimal?)-5469.9375, (decimal?)260.09375, (decimal?)9673.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21715, Nebula.NebulaType.Planetary, "Eoch Flyi CR-V e2-537", 9, true, "Eoch Flyi CR-V e2-537", (decimal?)-6397.9375, (decimal?)-351.875, (decimal?)17417.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21722, Nebula.NebulaType.Planetary, "Eoch Flyi TJ-Z e7954", 9, true, "Eoch Flyi TJ-Z e7954", (decimal?)-6163.65625, (decimal?)-256.8125, (decimal?)17107.375, (int)10 )); + AllOfThem.Add(new Nebula( 21725, Nebula.NebulaType.Planetary, "Eoch Flyi XJ-A e2576", 9, true, "Eoch Flyi XJ-A e2576", (decimal?)-6150.9375, (decimal?)-921.09375, (decimal?)16978.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21726, Nebula.NebulaType.Planetary, "Eoch Flyi XJ-A e3549", 9, true, "Eoch Flyi XJ-A e3549", (decimal?)-6230.09375, (decimal?)-923.96875, (decimal?)16908.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21727, Nebula.NebulaType.Planetary, "Eoch Flyi ZK-X e1-3427", 9, true, "Eoch Flyi ZK-X e1-3427", (decimal?)-6299.78125, (decimal?)-373.21875, (decimal?)17249, (int)10 )); + AllOfThem.Add(new Nebula( 21728, Nebula.NebulaType.Planetary, "Eoch Flyuae AP-A e247", 9, true, "Eoch Flyuae AP-A e247", (decimal?)-7959.28125, (decimal?)-770.15625, (decimal?)16884.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21729, Nebula.NebulaType.Planetary, "Eoch Flyuae BF-Z e209", 9, true, "Eoch Flyuae BF-Z e209", (decimal?)-7807.59375, (decimal?)-479.625, (decimal?)17019.5, (int)10 )); + AllOfThem.Add(new Nebula( 21730, Nebula.NebulaType.Planetary, "Eoch Flyuae CL-X e1-2216", 9, true, "Eoch Flyuae CL-X e1-2216", (decimal?)-8323.75, (decimal?)-415.3125, (decimal?)17204.625, (int)10 )); + AllOfThem.Add(new Nebula( 21731, Nebula.NebulaType.Planetary, "Eoch Flyuae JX-T e3-347", 9, true, "Eoch Flyuae JX-T e3-347", (decimal?)-8408.03125, (decimal?)-377.4375, (decimal?)17563.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21732, Nebula.NebulaType.Planetary, "Eoch Flyuae LI-S e4-3629", 9, true, "Eoch Flyuae LI-S e4-3629", (decimal?)-8505.9375, (decimal?)-217.0625, (decimal?)17777.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21733, Nebula.NebulaType.Planetary, "Eoch Flyuae MS-T e3-2968", 9, true, "Eoch Flyuae MS-T e3-2968", (decimal?)-8367.15625, (decimal?)-658.21875, (decimal?)17588.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21734, Nebula.NebulaType.Planetary, "Eoch Flyuae PY-R e4-684", 9, true, "Eoch Flyuae PY-R e4-684", (decimal?)-8417.53125, (decimal?)-635.0625, (decimal?)17741.75, (int)10 )); + AllOfThem.Add(new Nebula( 21735, Nebula.NebulaType.Planetary, "Eoch Flyuae PZ-O e6-1499", 9, true, "Eoch Flyuae PZ-O e6-1499", (decimal?)-8782.5625, (decimal?)-158.5625, (decimal?)18111.875, (int)10 )); + AllOfThem.Add(new Nebula( 21736, Nebula.NebulaType.Planetary, "Eoch Flyuae PZ-O e6-687", 9, true, "Eoch Flyuae PZ-O e6-687", (decimal?)-8762.3125, (decimal?)-137.34375, (decimal?)18021.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21737, Nebula.NebulaType.Planetary, "Eoch Flyuae UU-O e6-2971", 9, true, "Eoch Flyuae UU-O e6-2971", (decimal?)-8333.78125, (decimal?)-266.78125, (decimal?)18122.625, (int)10 )); + AllOfThem.Add(new Nebula( 21738, Nebula.NebulaType.Planetary, "Eoch Flyuae WU-O e6-9895", 9, true, "Eoch Flyuae WU-O e6-9895", (decimal?)-8021.5, (decimal?)-224.5, (decimal?)18040.84375, (int)10 )); + AllOfThem.Add(new Nebula( 21762, Nebula.NebulaType.Planetary, "Eoch Pruae MI-B e595", 9, true, "Eoch Pruae MI-B e595", (decimal?)-8886.96875, (decimal?)-31.78125, (decimal?)19468.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21773, Nebula.NebulaType.Planetary, "Eodgorph EB-O e6-111", 9, true, "Eodgorph EB-O e6-111", (decimal?)-5388.25, (decimal?)307.59375, (decimal?)11686.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21774, Nebula.NebulaType.Planetary, "Eodgorph PI-T e3-21", 9, true, "Eodgorph PI-T e3-21", (decimal?)-5869.21875, (decimal?)351.4375, (decimal?)11132.15625, (int)10 )); + AllOfThem.Add(new Nebula( 21883, Nebula.NebulaType.Planetary, "Eol Flyou BB-W e2-131", 9, true, "Eol Flyou BB-W e2-131", (decimal?)-9744.40625, (decimal?)-136.34375, (decimal?)17406.5625, (int)10 )); + AllOfThem.Add(new Nebula( 21884, Nebula.NebulaType.Planetary, "Eol Flyou FH-U e3-470", 9, true, "Eol Flyou FH-U e3-470", (decimal?)-9667.21875, (decimal?)-159.8125, (decimal?)17654.59375, (int)10 )); + AllOfThem.Add(new Nebula( 21885, Nebula.NebulaType.Planetary, "Eol Flyou IX-T e3-252", 9, true, "Eol Flyou IX-T e3-252", (decimal?)-9963.65625, (decimal?)-368.03125, (decimal?)17521.625, (int)10 )); + AllOfThem.Add(new Nebula( 21886, Nebula.NebulaType.Planetary, "Eol Flyou MI-S e4-231", 9, true, "Eol Flyou MI-S e4-231", (decimal?)-9508.125, (decimal?)-226.3125, (decimal?)17673.125, (int)10 )); + AllOfThem.Add(new Nebula( 21887, Nebula.NebulaType.Planetary, "Eol Flyou ZJ-Z e454", 9, true, "Eol Flyou ZJ-Z e454", (decimal?)-9073.5625, (decimal?)-266.53125, (decimal?)17065.03125, (int)10 )); + AllOfThem.Add(new Nebula( 21890, Nebula.NebulaType.Planetary, "Eol Prou EB-W e2-377", 9, true, "Eol Prou EB-W e2-377", (decimal?)-9309.90625, (decimal?)-43, (decimal?)19901.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21891, Nebula.NebulaType.Planetary, "Eol Prou TZ-P e5-3437", 9, true, "Eol Prou TZ-P e5-3437", (decimal?)-10028.71875, (decimal?)-779.3125, (decimal?)20394.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21892, Nebula.NebulaType.Planetary, "Eol Prou VZ-O e6-4216", 9, true, "Eol Prou VZ-O e6-4216", (decimal?)-9127.21875, (decimal?)-87.875, (decimal?)20684.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21893, Nebula.NebulaType.Planetary, "Eol Prou WF-O e6-165", 9, true, "Eol Prou WF-O e6-165", (decimal?)-10230.40625, (decimal?)-697.03125, (decimal?)20557.75, (int)10 )); + AllOfThem.Add(new Nebula( 21894, Nebula.NebulaType.Planetary, "Eol Prou XK-O e6-1001", 9, true, "Eol Prou XK-O e6-1001", (decimal?)-9725.84375, (decimal?)-579.75, (decimal?)20663.125, (int)10 )); + AllOfThem.Add(new Nebula( 21895, Nebula.NebulaType.Planetary, "Eol Prou YU-X e1-100", 9, true, "Eol Prou YU-X e1-100", (decimal?)-9587.71875, (decimal?)-94.78125, (decimal?)19868.5, (int)10 )); + AllOfThem.Add(new Nebula( 21896, Nebula.NebulaType.Planetary, "Eol Prou ZZ-Y e3867", 9, true, "Eol Prou ZZ-Y e3867", (decimal?)-9673.09375, (decimal?)-607.125, (decimal?)19586.09375, (int)10 )); + AllOfThem.Add(new Nebula( 21904, Nebula.NebulaType.Planetary, "Eor Aoscs BA-A e4521", 9, true, "Eor Aoscs BA-A e4521", (decimal?)-7497.09375, (decimal?)132.0625, (decimal?)16929.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21905, Nebula.NebulaType.Planetary, "Eor Aoscs BW-N e6-8463", 9, true, "Eor Aoscs BW-N e6-8463", (decimal?)-7465.9375, (decimal?)272.9375, (decimal?)18051.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21906, Nebula.NebulaType.Planetary, "Eor Aoscs CR-N e6-1221", 9, true, "Eor Aoscs CR-N e6-1221", (decimal?)-7593.59375, (decimal?)65.21875, (decimal?)18011.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21907, Nebula.NebulaType.Planetary, "Eor Aoscs CR-N e6-8914", 9, true, "Eor Aoscs CR-N e6-8914", (decimal?)-7697.125, (decimal?)55.03125, (decimal?)18040.375, (int)10 )); + AllOfThem.Add(new Nebula( 21908, Nebula.NebulaType.Planetary, "Eor Aoscs CR-V e2-3319", 9, true, "Eor Aoscs CR-V e2-3319", (decimal?)-7591.15625, (decimal?)840.1875, (decimal?)17471.21875, (int)10 )); + AllOfThem.Add(new Nebula( 21909, Nebula.NebulaType.Planetary, "Eor Aoscs DL-X e1-179", 9, true, "Eor Aoscs DL-X e1-179", (decimal?)-6844.78125, (decimal?)823.9375, (decimal?)17297.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21910, Nebula.NebulaType.Planetary, "Eor Aoscs EG-Y e1562", 9, true, "Eor Aoscs EG-Y e1562", (decimal?)-7592.9375, (decimal?)2.90625, (decimal?)17128.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21911, Nebula.NebulaType.Planetary, "Eor Aoscs EG-Y e423", 9, true, "Eor Aoscs EG-Y e423", (decimal?)-7587.375, (decimal?)119.0625, (decimal?)17034.875, (int)10 )); + AllOfThem.Add(new Nebula( 21912, Nebula.NebulaType.Planetary, "Eor Aoscs FG-Y e379", 9, true, "Eor Aoscs FG-Y e379", (decimal?)-7497.15625, (decimal?)-3.5, (decimal?)17156.90625, (int)10 )); + AllOfThem.Add(new Nebula( 21913, Nebula.NebulaType.Planetary, "Eor Aoscs IR-W e1-4854", 9, true, "Eor Aoscs IR-W e1-4854", (decimal?)-7373.875, (decimal?)174.25, (decimal?)17264.65625, (int)10 )); + AllOfThem.Add(new Nebula( 21914, Nebula.NebulaType.Planetary, "Eor Aoscs IR-W e1-7176", 9, true, "Eor Aoscs IR-W e1-7176", (decimal?)-7315.875, (decimal?)225.1875, (decimal?)17270.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21915, Nebula.NebulaType.Planetary, "Eor Aoscs KG-Y e4213", 9, true, "Eor Aoscs KG-Y e4213", (decimal?)-6664.46875, (decimal?)39.53125, (decimal?)17030.0625, (int)10 )); + AllOfThem.Add(new Nebula( 21916, Nebula.NebulaType.Planetary, "Eor Aoscs MX-U e2-913", 9, true, "Eor Aoscs MX-U e2-913", (decimal?)-7391.875, (decimal?)261.21875, (decimal?)17465.96875, (int)10 )); + AllOfThem.Add(new Nebula( 21917, Nebula.NebulaType.Planetary, "Eor Aoscs NX-U e2-4124", 9, true, "Eor Aoscs NX-U e2-4124", (decimal?)-7136.40625, (decimal?)262.5625, (decimal?)17440.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21918, Nebula.NebulaType.Planetary, "Eor Aoscs PS-U e2-937", 9, true, "Eor Aoscs PS-U e2-937", (decimal?)-7154.40625, (decimal?)16.1875, (decimal?)17372.71875, (int)10 )); + AllOfThem.Add(new Nebula( 21919, Nebula.NebulaType.Planetary, "Eor Aoscs QJ-Q e5-5817", 9, true, "Eor Aoscs QJ-Q e5-5817", (decimal?)-7316.03125, (decimal?)900.25, (decimal?)17973.28125, (int)10 )); + AllOfThem.Add(new Nebula( 21920, Nebula.NebulaType.Planetary, "Eor Aoscs QX-U e2-1482", 9, true, "Eor Aoscs QX-U e2-1482", (decimal?)-6773.90625, (decimal?)228.8125, (decimal?)17404.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22043, Nebula.NebulaType.Planetary, "Eord Flyuae CB-W e2-6182", 9, true, "Eord Flyuae CB-W e2-6182", (decimal?)-6975.25, (decimal?)-182.21875, (decimal?)17404.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22044, Nebula.NebulaType.Planetary, "Eord Flyuae CB-W e2-6356", 9, true, "Eord Flyuae CB-W e2-6356", (decimal?)-6985.5625, (decimal?)-60.34375, (decimal?)17456.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22045, Nebula.NebulaType.Planetary, "Eord Flyuae GH-U e3-3788", 9, true, "Eord Flyuae GH-U e3-3788", (decimal?)-7060.90625, (decimal?)-54.21875, (decimal?)17528.25, (int)10 )); + AllOfThem.Add(new Nebula( 22046, Nebula.NebulaType.Planetary, "Eord Flyuae GM-V e2-644", 9, true, "Eord Flyuae GM-V e2-644", (decimal?)-7308.65625, (decimal?)-523.53125, (decimal?)17346.25, (int)10 )); + AllOfThem.Add(new Nebula( 22047, Nebula.NebulaType.Planetary, "Eord Flyuae KC-U e3-2845", 9, true, "Eord Flyuae KC-U e3-2845", (decimal?)-6656.3125, (decimal?)-216.59375, (decimal?)17585, (int)10 )); + AllOfThem.Add(new Nebula( 22048, Nebula.NebulaType.Planetary, "Eord Flyuae OO-Q e5-6002", 9, true, "Eord Flyuae OO-Q e5-6002", (decimal?)-7270.0625, (decimal?)-294.375, (decimal?)17842.5, (int)10 )); + AllOfThem.Add(new Nebula( 22049, Nebula.NebulaType.Planetary, "Eord Flyuae QD-T e3-2898", 9, true, "Eord Flyuae QD-T e3-2898", (decimal?)-7269.5, (decimal?)-998.03125, (decimal?)17515.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22053, Nebula.NebulaType.Planetary, "Eord Flyuae VU-P e5-1075", 9, true, "Eord Flyuae VU-P e5-1075", (decimal?)-7528.125, (decimal?)-832.71875, (decimal?)17932.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22054, Nebula.NebulaType.Planetary, "Eord Flyuae WP-X e1-1011", 9, true, "Eord Flyuae WP-X e1-1011", (decimal?)-7716.84375, (decimal?)-296.8125, (decimal?)17256.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22055, Nebula.NebulaType.Planetary, "Eord Flyuae YF-O e6-1644", 9, true, "Eord Flyuae YF-O e6-1644", (decimal?)-7308.375, (decimal?)-801.25, (decimal?)17991.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22083, Nebula.NebulaType.Planetary, "Eorgh Prou GM-V e2-3", 9, true, "Eorgh Prou GM-V e2-3", (decimal?)-11233.3125, (decimal?)-648.65625, (decimal?)20044.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22084, Nebula.NebulaType.Planetary, "Eorgh Prou JH-V e2-1979", 9, true, "Eorgh Prou JH-V e2-1979", (decimal?)-11069.6875, (decimal?)-695.40625, (decimal?)20029.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22085, Nebula.NebulaType.Planetary, "Eorgh Prou OI-B e119", 9, true, "Eorgh Prou OI-B e119", (decimal?)-11194.6875, (decimal?)-136.0625, (decimal?)19537.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22086, Nebula.NebulaType.Planetary, "Eorgh Prou PS-T e3-3567", 9, true, "Eorgh Prou PS-T e3-3567", (decimal?)-10349.125, (decimal?)-511.46875, (decimal?)20192, (int)10 )); + AllOfThem.Add(new Nebula( 22087, Nebula.NebulaType.Planetary, "Eorgh Prou UZ-O e6-422", 9, true, "Eorgh Prou UZ-O e6-422", (decimal?)-10547.25, (decimal?)-102.15625, (decimal?)20642.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22088, Nebula.NebulaType.Planetary, "Eorgh Prou YO-A e74", 9, true, "Eorgh Prou YO-A e74", (decimal?)-10804.71875, (decimal?)-732.875, (decimal?)19524.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22089, Nebula.NebulaType.Planetary, "Eorgh Prou YP-O e6-332", 9, true, "Eorgh Prou YP-O e6-332", (decimal?)-10624.3125, (decimal?)-498.71875, (decimal?)20548.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22090, Nebula.NebulaType.Planetary, "Eorgh Prou YU-X e1-652", 9, true, "Eorgh Prou YU-X e1-652", (decimal?)-10842.9375, (decimal?)-27.1875, (decimal?)19892.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22330, Nebula.NebulaType.Planetary, "Floabs HW-V e2-100", 9, true, "Floabs HW-V e2-100", (decimal?)-10461.8125, (decimal?)-238.25, (decimal?)14903.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22331, Nebula.NebulaType.Planetary, "Floabs PZ-O e6-370", 9, true, "Floabs PZ-O e6-370", (decimal?)-11326.96875, (decimal?)-116.25, (decimal?)15483.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22332, Nebula.NebulaType.Planetary, "Floabs QI-B e173", 9, true, "Floabs QI-B e173", (decimal?)-10888.53125, (decimal?)-58.6875, (decimal?)14356.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22339, Nebula.NebulaType.Planetary, "Floalt UO-Z e457", 9, true, "Floalt UO-Z e457", (decimal?)-4475.1875, (decimal?)-126.28125, (decimal?)14484.25, (int)10 )); + AllOfThem.Add(new Nebula( 22354, Nebula.NebulaType.Planetary, "Flyae Eaec TD-B e46", 9, true, "Flyae Eaec TD-B e46", (decimal?)-3041.75, (decimal?)-204.6875, (decimal?)9327.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22368, Nebula.NebulaType.Planetary, "Flyiedgai GN-S e4-26", 9, true, "Flyiedgai GN-S e4-26", (decimal?)-6347.53125, (decimal?)-79.8125, (decimal?)8818.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22369, Nebula.NebulaType.Planetary, "Flyiedgai ST-R e4-8", 9, true, "Flyiedgai ST-R e4-8", (decimal?)-5753.28125, (decimal?)-724.78125, (decimal?)8752.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22385, Nebula.NebulaType.Planetary, "Froabs BQ-Y e285", 9, true, "Froabs BQ-Y e285", (decimal?)-8774.53125, (decimal?)367.46875, (decimal?)14496.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22386, Nebula.NebulaType.Planetary, "Froabs CA-A e1048", 9, true, "Froabs CA-A e1048", (decimal?)-8632.21875, (decimal?)35.25, (decimal?)14368.125, (int)10 )); + AllOfThem.Add(new Nebula( 22387, Nebula.NebulaType.Planetary, "Froabs MS-U e2-941", 9, true, "Froabs MS-U e2-941", (decimal?)-9005.21875, (decimal?)93.8125, (decimal?)14897.5, (int)10 )); + AllOfThem.Add(new Nebula( 22388, Nebula.NebulaType.Planetary, "Froabs ZJ-A e138", 9, true, "Froabs ZJ-A e138", (decimal?)-8401.90625, (decimal?)347.40625, (decimal?)14444, (int)10 )); + AllOfThem.Add(new Nebula( 22390, Nebula.NebulaType.Planetary, "Froags EA-A e90", 9, true, "Froags EA-A e90", (decimal?)-5671.65625, (decimal?)66.6875, (decimal?)14413.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22392, Nebula.NebulaType.Planetary, "Froags SY-S e3-487", 9, true, "Froags SY-S e3-487", (decimal?)-6097.28125, (decimal?)77.21875, (decimal?)15042.375, (int)10 )); + AllOfThem.Add(new Nebula( 22394, Nebula.NebulaType.Planetary, "Froags TY-S e3-667", 9, true, "Froags TY-S e3-667", (decimal?)-5902.34375, (decimal?)67.125, (decimal?)15048.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22395, Nebula.NebulaType.Planetary, "Froaln DQ-P e5-492", 9, true, "Froaln DQ-P e5-492", (decimal?)-9097.71875, (decimal?)212.6875, (decimal?)15293.75, (int)10 )); + AllOfThem.Add(new Nebula( 22396, Nebula.NebulaType.Planetary, "Froaln KX-U e2-334", 9, true, "Froaln KX-U e2-334", (decimal?)-10220.3125, (decimal?)222.6875, (decimal?)14813.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22397, Nebula.NebulaType.Planetary, "Froaln ZF-O e6-130", 9, true, "Froaln ZF-O e6-130", (decimal?)-9814.71875, (decimal?)461.5, (decimal?)15492.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22398, Nebula.NebulaType.Planetary, "Froaln ZK-X e1-55", 9, true, "Froaln ZK-X e1-55", (decimal?)-10129, (decimal?)861.5, (decimal?)14739.90625, (int)10 )); + AllOfThem.Add(new Nebula( 22399, Nebula.NebulaType.Planetary, "Froals FG-Y e338", 9, true, "Froals FG-Y e338", (decimal?)-4960.9375, (decimal?)40.96875, (decimal?)14481.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22409, Nebula.NebulaType.Planetary, "Froarsts CA-A e758", 9, true, "Froarsts CA-A e758", (decimal?)-7387.0625, (decimal?)21.75, (decimal?)14319.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22410, Nebula.NebulaType.Planetary, "Froarsts CR-N e6-948", 9, true, "Froarsts CR-N e6-948", (decimal?)-7638.46875, (decimal?)118, (decimal?)15508, (int)10 )); + AllOfThem.Add(new Nebula( 22411, Nebula.NebulaType.Planetary, "Froarsts JM-W e1-781", 9, true, "Froarsts JM-W e1-781", (decimal?)-7502.96875, (decimal?)119.125, (decimal?)14765.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22412, Nebula.NebulaType.Planetary, "Froarsts JR-N e6-691", 9, true, "Froarsts JR-N e6-691", (decimal?)-6517, (decimal?)125.5625, (decimal?)15427.75, (int)10 )); + AllOfThem.Add(new Nebula( 22413, Nebula.NebulaType.Planetary, "Froarsts MY-R e4-75", 9, true, "Froarsts MY-R e4-75", (decimal?)-7721.65625, (decimal?)625.09375, (decimal?)15240.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22414, Nebula.NebulaType.Planetary, "Froarsts YK-P e5-346", 9, true, "Froarsts YK-P e5-346", (decimal?)-7654.875, (decimal?)-3.4375, (decimal?)15397.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22426, Nebula.NebulaType.Planetary, "Graea Hypa JB-X e1-72", 9, true, "Graea Hypa JB-X e1-72", (decimal?)-2672.40625, (decimal?)-707.09375, (decimal?)13465.625, (int)10 )); + AllOfThem.Add(new Nebula( 22427, Nebula.NebulaType.Planetary, "Graea Hypa TI-B e310", 9, true, "Graea Hypa TI-B e310", (decimal?)-2729.5625, (decimal?)-43.78125, (decimal?)13148.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22428, Nebula.NebulaType.Planetary, "Graea Hypa UO-Z e88", 9, true, "Graea Hypa UO-Z e88", (decimal?)-3195.4375, (decimal?)-167.75, (decimal?)13329.375, (int)10 )); + AllOfThem.Add(new Nebula( 22433, Nebula.NebulaType.Planetary, "Grea Eaescs OI-S e4-15", 9, true, "Grea Eaescs OI-S e4-15", (decimal?)-11850.65625, (decimal?)-248.15625, (decimal?)16512.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22434, Nebula.NebulaType.Planetary, "Grea Hypoo JM-V e2-117", 9, true, "Grea Hypoo JM-V e2-117", (decimal?)-9345.84375, (decimal?)-593.59375, (decimal?)13519.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22435, Nebula.NebulaType.Planetary, "Grea Hypoo KI-S e4-189", 9, true, "Grea Hypoo KI-S e4-189", (decimal?)-9924.59375, (decimal?)-260.78125, (decimal?)13919.75, (int)10 )); + AllOfThem.Add(new Nebula( 22436, Nebula.NebulaType.Planetary, "Grea Hypoo XZ-P e5-18", 9, true, "Grea Hypoo XZ-P e5-18", (decimal?)-9410.4375, (decimal?)-669.71875, (decimal?)14132.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22437, Nebula.NebulaType.Planetary, "Greae Hypa LM-V e2-31", 9, true, "Greae Hypa LM-V e2-31", (decimal?)-7841.5, (decimal?)-594.5, (decimal?)13571.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22438, Nebula.NebulaType.Planetary, "Greae Hypa LN-S e4-156", 9, true, "Greae Hypa LN-S e4-156", (decimal?)-8095.96875, (decimal?)-119.40625, (decimal?)13862.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22439, Nebula.NebulaType.Planetary, "Greae Hypa PD-T e3-19", 9, true, "Greae Hypa PD-T e3-19", (decimal?)-8765.15625, (decimal?)-1018.46875, (decimal?)13676.875, (int)10 )); + AllOfThem.Add(new Nebula( 22440, Nebula.NebulaType.Planetary, "Greae Hypa RT-Q e5-3201", 9, true, "Greae Hypa RT-Q e5-3201", (decimal?)-7758.4375, (decimal?)-61.125, (decimal?)14038.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22476, Nebula.NebulaType.Planetary, "Hypaa Flyou FB-W e2-1105", 9, true, "Hypaa Flyou FB-W e2-1105", (decimal?)-10399.59375, (decimal?)-107.625, (decimal?)22459.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22477, Nebula.NebulaType.Planetary, "Hypaa Flyou FC-U e3-8737", 9, true, "Hypaa Flyou FC-U e3-8737", (decimal?)-11292.65625, (decimal?)-240.71875, (decimal?)22767.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22478, Nebula.NebulaType.Planetary, "Hypaa Flyou LS-T e3-1960", 9, true, "Hypaa Flyou LS-T e3-1960", (decimal?)-11018.25, (decimal?)-510.875, (decimal?)22633.25, (int)10 )); + AllOfThem.Add(new Nebula( 22479, Nebula.NebulaType.Planetary, "Hypaa Flyou OC-V e2-1950", 9, true, "Hypaa Flyou OC-V e2-1950", (decimal?)-10522.28125, (decimal?)-923.90625, (decimal?)22456.625, (int)10 )); + AllOfThem.Add(new Nebula( 22480, Nebula.NebulaType.Planetary, "Hypaa Flyou PI-B e3938", 9, true, "Hypaa Flyou PI-B e3938", (decimal?)-11002, (decimal?)-55.65625, (decimal?)22076.125, (int)10 )); + AllOfThem.Add(new Nebula( 22481, Nebula.NebulaType.Planetary, "Hypaa Flyou SY-A e361", 9, true, "Hypaa Flyou SY-A e361", (decimal?)-11261.6875, (decimal?)-407.78125, (decimal?)22084.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22611, Nebula.NebulaType.Planetary, "Hypo Flee HQ-Y e2889", 9, true, "Hypo Flee HQ-Y e2889", (decimal?)-11640.4375, (decimal?)423.09375, (decimal?)22248.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22750, Nebula.NebulaType.Planetary, "Hypua Flyoae AP-A e59", 9, true, "Hypua Flyoae AP-A e59", (decimal?)-11848.28125, (decimal?)-738, (decimal?)22005.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22751, Nebula.NebulaType.Planetary, "Hypua Flyoae HH-U e3-537", 9, true, "Hypua Flyoae HH-U e3-537", (decimal?)-12003.0625, (decimal?)-146.09375, (decimal?)22749.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22752, Nebula.NebulaType.Planetary, "Hypua Flyoae SD-B e3663", 9, true, "Hypua Flyoae SD-B e3663", (decimal?)-12089.21875, (decimal?)-301.28125, (decimal?)22057.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22753, Nebula.NebulaType.Planetary, "Hypua Flyoae WZ-P e5-59", 9, true, "Hypua Flyoae WZ-P e5-59", (decimal?)-12224.09375, (decimal?)-713.65625, (decimal?)22996.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22840, Nebula.NebulaType.Planetary, "Iowhaik DQ-Y e871", 9, true, "Iowhaik DQ-Y e871", (decimal?)-7126.40625, (decimal?)366, (decimal?)15767.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22841, Nebula.NebulaType.Planetary, "Iowhaik EB-O e6-2161", 9, true, "Iowhaik EB-O e6-2161", (decimal?)-6728.09375, (decimal?)389.75, (decimal?)16829.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22842, Nebula.NebulaType.Planetary, "Iowhaik HG-Y e10934", 9, true, "Iowhaik HG-Y e10934", (decimal?)-7236.28125, (decimal?)-6.71875, (decimal?)15776.75, (int)10 )); + AllOfThem.Add(new Nebula( 22843, Nebula.NebulaType.Planetary, "Iowhaik UU-P e5-354", 9, true, "Iowhaik UU-P e5-354", (decimal?)-7611.03125, (decimal?)333.15625, (decimal?)16590.125, (int)10 )); + AllOfThem.Add(new Nebula( 22850, Nebula.NebulaType.Planetary, "Iowhairld EG-Y e151", 9, true, "Iowhairld EG-Y e151", (decimal?)-8902.8125, (decimal?)108.21875, (decimal?)15784, (int)10 )); + AllOfThem.Add(new Nebula( 22851, Nebula.NebulaType.Planetary, "Iowhairld EQ-Y e240", 9, true, "Iowhairld EQ-Y e240", (decimal?)-8303.0625, (decimal?)308.875, (decimal?)15893.59375, (int)10 )); + AllOfThem.Add(new Nebula( 22852, Nebula.NebulaType.Planetary, "Iowhairld MS-U e2-352", 9, true, "Iowhairld MS-U e2-352", (decimal?)-8900.28125, (decimal?)40.40625, (decimal?)16136.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22853, Nebula.NebulaType.Planetary, "Iowhairld MS-U e2-46", 9, true, "Iowhairld MS-U e2-46", (decimal?)-8967.65625, (decimal?)102.15625, (decimal?)16123.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22854, Nebula.NebulaType.Planetary, "Iowhairld SI-T e3-122", 9, true, "Iowhairld SI-T e3-122", (decimal?)-7972.15625, (decimal?)438.5625, (decimal?)16239.40625, (int)10 )); + AllOfThem.Add(new Nebula( 22855, Nebula.NebulaType.Planetary, "Iowhairld WP-P e5-294", 9, true, "Iowhairld WP-P e5-294", (decimal?)-8979.125, (decimal?)173.65625, (decimal?)16584.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22856, Nebula.NebulaType.Planetary, "Iowhairld ZE-R e4-1096", 9, true, "Iowhairld ZE-R e4-1096", (decimal?)-8207.40625, (decimal?)83.375, (decimal?)16393.9375, (int)10 )); + AllOfThem.Add(new Nebula( 22857, Nebula.NebulaType.Planetary, "Iowhairld ZE-R e4-598", 9, true, "Iowhairld ZE-R e4-598", (decimal?)-8221.0625, (decimal?)-11.75, (decimal?)16380.0625, (int)10 )); + AllOfThem.Add(new Nebula( 22983, Nebula.NebulaType.Planetary, "Kyloagh RN-T e3-46", 9, true, "Kyloagh RN-T e3-46", (decimal?)-13012, (decimal?)-780.1875, (decimal?)21421.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22985, Nebula.NebulaType.Planetary, "Kyloalks EH-U e3-210", 9, true, "Kyloalks EH-U e3-210", (decimal?)-12460.5625, (decimal?)-146.53125, (decimal?)21358.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23046, Nebula.NebulaType.Planetary, "Kyloasly IC-U e3-698", 9, true, "Kyloasly IC-U e3-698", (decimal?)-10875.1875, (decimal?)-223.34375, (decimal?)21420.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23047, Nebula.NebulaType.Planetary, "Kyloasly IN-S e4-391", 9, true, "Kyloasly IN-S e4-391", (decimal?)-11243.375, (decimal?)-77.0625, (decimal?)21601, (int)10 )); + AllOfThem.Add(new Nebula( 23112, Nebula.NebulaType.Planetary, "Leamae BG-X e1-623", 9, true, "Leamae BG-X e1-623", (decimal?)-12644.75, (decimal?)-599.4375, (decimal?)19752.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23113, Nebula.NebulaType.Planetary, "Leamae HW-N e6-56", 9, true, "Leamae HW-N e6-56", (decimal?)-11614.5625, (decimal?)-1008.03125, (decimal?)20536.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23114, Nebula.NebulaType.Planetary, "Leamae VE-Z e2798", 9, true, "Leamae VE-Z e2798", (decimal?)-12574.4375, (decimal?)-362.9375, (decimal?)19637.25, (int)10 )); + AllOfThem.Add(new Nebula( 23308, Nebula.NebulaType.Planetary, "Mylaifaa FC-U e3-3501", 9, true, "Mylaifaa FC-U e3-3501", (decimal?)-11296.6875, (decimal?)-224, (decimal?)18789, (int)10 )); + AllOfThem.Add(new Nebula( 23309, Nebula.NebulaType.Planetary, "Mylaifaa HC-U e3-584", 9, true, "Mylaifaa HC-U e3-584", (decimal?)-11066.3125, (decimal?)-311.3125, (decimal?)18815.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23310, Nebula.NebulaType.Planetary, "Mylaifaa NX-T e3-1278", 9, true, "Mylaifaa NX-T e3-1278", (decimal?)-10429.75, (decimal?)-391.25, (decimal?)18841.0625, (int)10 )); + AllOfThem.Add(new Nebula( 23311, Nebula.NebulaType.Planetary, "Mylaifaa OI-S e4-8384", 9, true, "Mylaifaa OI-S e4-8384", (decimal?)-10478.09375, (decimal?)-221.28125, (decimal?)19002.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23312, Nebula.NebulaType.Planetary, "Mylaifaa QD-B e353", 9, true, "Mylaifaa QD-B e353", (decimal?)-11215.375, (decimal?)-237.6875, (decimal?)18194.125, (int)10 )); + AllOfThem.Add(new Nebula( 23313, Nebula.NebulaType.Planetary, "Mylaifaa VK-O e6-1244", 9, true, "Mylaifaa VK-O e6-1244", (decimal?)-11286.53125, (decimal?)-578.21875, (decimal?)19351.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23314, Nebula.NebulaType.Planetary, "Mylaifaa YA-W e2-394", 9, true, "Mylaifaa YA-W e2-394", (decimal?)-11451.6875, (decimal?)-178.4375, (decimal?)18743.21875, (int)10 )); + AllOfThem.Add(new Nebula( 23325, Nebula.NebulaType.Planetary, "Mylaifoi UJ-Z e923", 9, true, "Mylaifoi UJ-Z e923", (decimal?)-12464.0625, (decimal?)-247.25, (decimal?)18394.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23398, Nebula.NebulaType.Planetary, "Nuekau AA-A e4", 9, true, "Nuekau AA-A e4", (decimal?)-2519.625, (decimal?)-1296.21875, (decimal?)13137.96875, (int)10 )); + AllOfThem.Add(new Nebula( 23400, Nebula.NebulaType.Planetary, "Nuekuae TO-Z e45", 9, true, "Nuekuae TO-Z e45", (decimal?)-5864.625, (decimal?)-65, (decimal?)13212.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23417, Nebula.NebulaType.Planetary, "Oephaidst JC-U e3-1001", 9, true, "Oephaidst JC-U e3-1001", (decimal?)-8105.03125, (decimal?)1063.625, (decimal?)17545.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23418, Nebula.NebulaType.Planetary, "Oephaidst JM-W e1-1312", 9, true, "Oephaidst JM-W e1-1312", (decimal?)-8795.5, (decimal?)16.4375, (decimal?)17221.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23419, Nebula.NebulaType.Planetary, "Oephaidst LR-W e1-8262", 9, true, "Oephaidst LR-W e1-8262", (decimal?)-8116.75, (decimal?)194.125, (decimal?)17325.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23420, Nebula.NebulaType.Planetary, "Oephaidst RX-U e2-1372", 9, true, "Oephaidst RX-U e2-1372", (decimal?)-7873.0625, (decimal?)187.71875, (decimal?)17455.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23421, Nebula.NebulaType.Planetary, "Oephaidst SS-U e2-2950", 9, true, "Oephaidst SS-U e2-2950", (decimal?)-7973.34375, (decimal?)89.15625, (decimal?)17385.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23422, Nebula.NebulaType.Planetary, "Oephaidst XE-R e4-1643", 9, true, "Oephaidst XE-R e4-1643", (decimal?)-8489.6875, (decimal?)-17.0625, (decimal?)17811.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23423, Nebula.NebulaType.Planetary, "Oephaif LR-W e1-135", 9, true, "Oephaif LR-W e1-135", (decimal?)-10729.28125, (decimal?)191.90625, (decimal?)17266.46875, (int)10 )); + AllOfThem.Add(new Nebula( 23488, Nebula.NebulaType.Planetary, "Ogaicy QD-B e1481", 9, true, "Ogaicy QD-B e1481", (decimal?)-8634.125, (decimal?)1084, (decimal?)19451.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23567, Nebula.NebulaType.Planetary, "Oob Freau BG-X e1-548", 9, true, "Oob Freau BG-X e1-548", (decimal?)-11339.125, (decimal?)700.90625, (decimal?)19876.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23568, Nebula.NebulaType.Planetary, "Oob Freau CV-Y e630", 9, true, "Oob Freau CV-Y e630", (decimal?)-10880.90625, (decimal?)493.5, (decimal?)19583.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23569, Nebula.NebulaType.Planetary, "Oob Freau DL-P e5-983", 9, true, "Oob Freau DL-P e5-983", (decimal?)-10771.34375, (decimal?)34.28125, (decimal?)20394.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23570, Nebula.NebulaType.Planetary, "Oob Freau EL-Y e4717", 9, true, "Oob Freau EL-Y e4717", (decimal?)-11184.53125, (decimal?)247.40625, (decimal?)19719.78125, (int)10 )); + AllOfThem.Add(new Nebula( 23571, Nebula.NebulaType.Planetary, "Oob Freau MX-U e2-578", 9, true, "Oob Freau MX-U e2-578", (decimal?)-11194.6875, (decimal?)168.28125, (decimal?)19991.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23572, Nebula.NebulaType.Planetary, "Ooscs Aob CF-A e477", 9, true, "Ooscs Aob CF-A e477", (decimal?)-9597, (decimal?)260.6875, (decimal?)16875.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23573, Nebula.NebulaType.Planetary, "Ooscs Aob FR-N e6-188", 9, true, "Ooscs Aob FR-N e6-188", (decimal?)-9732.03125, (decimal?)59.78125, (decimal?)18093.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23574, Nebula.NebulaType.Planetary, "Ooscs Aob FR-N e6-29", 9, true, "Ooscs Aob FR-N e6-29", (decimal?)-9783.65625, (decimal?)96.5, (decimal?)18097.6875, (int)10 )); + AllOfThem.Add(new Nebula( 23575, Nebula.NebulaType.Planetary, "Ooscs Aob RO-Q e5-667", 9, true, "Ooscs Aob RO-Q e5-667", (decimal?)-9407.03125, (decimal?)1053.21875, (decimal?)17924.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23576, Nebula.NebulaType.Planetary, "Ooscs Aob XE-R e4-1132", 9, true, "Ooscs Aob XE-R e4-1132", (decimal?)-9675.03125, (decimal?)105.28125, (decimal?)17772.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23578, Nebula.NebulaType.Planetary, "Ooscs Auf YJ-R e4-461", 9, true, "Ooscs Auf YJ-R e4-461", (decimal?)-9233.28125, (decimal?)1426, (decimal?)20284.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23585, Nebula.NebulaType.Planetary, "Ooscs Fraae QY-S e3-274", 9, true, "Ooscs Fraae QY-S e3-274", (decimal?)-12737.03125, (decimal?)51.53125, (decimal?)20089.71875, (int)10 )); + AllOfThem.Add(new Nebula( 23586, Nebula.NebulaType.Planetary, "Ooscs Freau AF-R e4-641", 9, true, "Ooscs Freau AF-R e4-641", (decimal?)-9290.6875, (decimal?)16.5, (decimal?)20273.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23587, Nebula.NebulaType.Planetary, "Ooscs Freau IL-Y e239", 9, true, "Ooscs Freau IL-Y e239", (decimal?)-9282.34375, (decimal?)157.96875, (decimal?)19645.4375, (int)10 )); + AllOfThem.Add(new Nebula( 23588, Nebula.NebulaType.Planetary, "Ooscs Freau LX-U e2-56", 9, true, "Ooscs Freau LX-U e2-56", (decimal?)-10014, (decimal?)151.28125, (decimal?)20032.8125, (int)10 )); + AllOfThem.Add(new Nebula( 23589, Nebula.NebulaType.Planetary, "Ooscs Freau MM-W e1-1446", 9, true, "Ooscs Freau MM-W e1-1446", (decimal?)-9593.28125, (decimal?)-20.71875, (decimal?)19751.5625, (int)10 )); + AllOfThem.Add(new Nebula( 23590, Nebula.NebulaType.Planetary, "Ooscs Freau PX-U e2-670", 9, true, "Ooscs Freau PX-U e2-670", (decimal?)-9455.15625, (decimal?)177.1875, (decimal?)19966.09375, (int)10 )); + AllOfThem.Add(new Nebula( 23591, Nebula.NebulaType.Planetary, "Ooscs Freau WK-O e6-140", 9, true, "Ooscs Freau WK-O e6-140", (decimal?)-9896.5, (decimal?)642, (decimal?)20604.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23612, Nebula.NebulaType.Planetary, "Pha Flee JW-W e1-184", 9, true, "Pha Flee JW-W e1-184", (decimal?)-11961.4375, (decimal?)314.34375, (decimal?)23714.90625, (int)10 )); + AllOfThem.Add(new Nebula( 23896, Nebula.NebulaType.Planetary, "Phoo Aob AL-X e1-526", 9, true, "Phoo Aob AL-X e1-526", (decimal?)-11136.96875, (decimal?)887.65625, (decimal?)23689.15625, (int)10 )); + AllOfThem.Add(new Nebula( 23898, Nebula.NebulaType.Planetary, "Phoo Aob CF-A e464", 9, true, "Phoo Aob CF-A e464", (decimal?)-10938.40625, (decimal?)144.4375, (decimal?)23369.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23900, Nebula.NebulaType.Planetary, "Phoo Aob GW-W e1-249", 9, true, "Phoo Aob GW-W e1-249", (decimal?)-11166.34375, (decimal?)322.25, (decimal?)23575.25, (int)10 )); + AllOfThem.Add(new Nebula( 23901, Nebula.NebulaType.Planetary, "Phoo Aob KR-W e1-8501", 9, true, "Phoo Aob KR-W e1-8501", (decimal?)-10913.6875, (decimal?)170.8125, (decimal?)23720.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23904, Nebula.NebulaType.Planetary, "Phoo Aob UJ-R e4-5259", 9, true, "Phoo Aob UJ-R e4-5259", (decimal?)-11260.90625, (decimal?)261.65625, (decimal?)24144.9375, (int)10 )); + AllOfThem.Add(new Nebula( 23954, Nebula.NebulaType.Planetary, "Phrae Flyou JN-S e4-382", 9, true, "Phrae Flyou JN-S e4-382", (decimal?)-10979.375, (decimal?)-83.25, (decimal?)24085, (int)10 )); + AllOfThem.Add(new Nebula( 23955, Nebula.NebulaType.Planetary, "Phrae Flyou UJ-Z e408", 9, true, "Phrae Flyou UJ-Z e408", (decimal?)-11161.4375, (decimal?)-316.0625, (decimal?)23431.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24147, Nebula.NebulaType.Planetary, "Phrooe Flyoae EW-V e2-61", 9, true, "Phrooe Flyoae EW-V e2-61", (decimal?)-12098.15625, (decimal?)-235.0625, (decimal?)23832.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24221, Nebula.NebulaType.Planetary, "Ploea Aim BA-A e42", 9, true, "Ploea Aim BA-A e42", (decimal?)-7574.21875, (decimal?)59.21875, (decimal?)9186.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24227, Nebula.NebulaType.Planetary, "Ploi Aim KX-U e2-10", 9, true, "Ploi Aim KX-U e2-10", (decimal?)-3810.59375, (decimal?)150.625, (decimal?)9712.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24246, Nebula.NebulaType.Planetary, "Preae Ain VE-R E4-35", 9, true, "Preae Ain VE-R e4-35", (decimal?)-5013.875, (decimal?)80.21875, (decimal?)11406.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24250, Nebula.NebulaType.Planetary, "Preia Phoe GH-U e3-37", 9, true, "Preia Phoe GH-U e3-37", (decimal?)-4530.3125, (decimal?)-85.21875, (decimal?)11176.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24251, Nebula.NebulaType.Planetary, "Preia Phoe IS-T e3-79", 9, true, "Preia Phoe IS-T e3-79", (decimal?)-5083.78125, (decimal?)-541.59375, (decimal?)11124.34375, (int)10 )); + AllOfThem.Add(new Nebula( 24252, Nebula.NebulaType.Planetary, "Preia Phoe MH-V e2-23", 9, true, "Preia Phoe MH-V e2-23", (decimal?)-4186.0625, (decimal?)-669.03125, (decimal?)10936.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24253, Nebula.NebulaType.Planetary, "Preia Phoe NI-B e53", 9, true, "Preia Phoe NI-B e53", (decimal?)-4893.625, (decimal?)-82.4375, (decimal?)10482.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24254, Nebula.NebulaType.Planetary, "Preia Phoe NT-Q e5-2807", 9, true, "Preia Phoe NT-Q e5-2807", (decimal?)-4629.59375, (decimal?)-72.125, (decimal?)11421.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24264, Nebula.NebulaType.Planetary, "Pru Aim DR-N e6-181", 9, true, "Pru Aim DR-N e6-181", (decimal?)-3706.40625, (decimal?)108.96875, (decimal?)11642.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24266, Nebula.NebulaType.Planetary, "Prua Eaec RJ-Q e5-14", 9, true, "Prua Eaec RJ-Q e5-14", (decimal?)-8488.625, (decimal?)-452.90625, (decimal?)11448.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24270, Nebula.NebulaType.Planetary, "Prua Phoe KN-S e4-113", 9, true, "Prua Phoe KN-S e4-113", (decimal?)-5712.21875, (decimal?)-57.15625, (decimal?)11301.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24271, Nebula.NebulaType.Planetary, "Prua Phoe VU-P e5-15", 9, true, "Prua Phoe VU-P e5-15", (decimal?)-6226.90625, (decimal?)-862.59375, (decimal?)11424.875, (int)10 )); + AllOfThem.Add(new Nebula( 24276, Nebula.NebulaType.Planetary, "Puekaae CF-A e153", 9, true, "Puekaae CF-A e153", (decimal?)-3132.71875, (decimal?)241.6875, (decimal?)13025.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24278, Nebula.NebulaType.Planetary, "Puekaei EC-U e3-35", 9, true, "Puekaei EC-U e3-35", (decimal?)-8978.40625, (decimal?)943.46875, (decimal?)13782.25, (int)10 )); + AllOfThem.Add(new Nebula( 24279, Nebula.NebulaType.Planetary, "Puekaei XP-P e5-86", 9, true, "Puekaei XP-P e5-86", (decimal?)-8740.84375, (decimal?)276.8125, (decimal?)14025.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24280, Nebula.NebulaType.Planetary, "Puekaei ZK-P e5-2741", 9, true, "Puekaei ZK-P e5-2741", (decimal?)-8745.5, (decimal?)24.5625, (decimal?)14117.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24281, Nebula.NebulaType.Planetary, "Puekea DR-N e6-398", 9, true, "Puekea DR-N e6-398", (decimal?)-7435.28125, (decimal?)15.3125, (decimal?)14270.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24282, Nebula.NebulaType.Planetary, "Puekea ER-N e6-2228", 9, true, "Puekea ER-N e6-2228", (decimal?)-7364.125, (decimal?)97.21875, (decimal?)14241.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24283, Nebula.NebulaType.Planetary, "Puekeau FG-Y e28", 9, true, "Puekeau FG-Y e28", (decimal?)-2403.8125, (decimal?)83.96875, (decimal?)13180.5, (int)10 )); + AllOfThem.Add(new Nebula( 24284, Nebula.NebulaType.Planetary, "Puekie WK-O e6-4", 9, true, "Puekie WK-O e6-4", (decimal?)-11226.78125, (decimal?)699.1875, (decimal?)14199.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24285, Nebula.NebulaType.Planetary, "Puekoa HG-Y e115", 9, true, "Puekoa HG-Y e115", (decimal?)-4690.96875, (decimal?)-17.75, (decimal?)13215.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24286, Nebula.NebulaType.Planetary, "Puekoa OC-V e2-53", 9, true, "Puekoa OC-V e2-53", (decimal?)-4073.6875, (decimal?)442.84375, (decimal?)13632.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24287, Nebula.NebulaType.Planetary, "Puekoa PS-U e2-136", 9, true, "Puekoa PS-U e2-136", (decimal?)-4637.5, (decimal?)38.78125, (decimal?)13570.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24547, Nebula.NebulaType.Planetary, "Screakai DG-O e6-278", 9, true, "Screakai DG-O e6-278", (decimal?)-10307.15625, (decimal?)486.78125, (decimal?)21846, (int)10 )); + AllOfThem.Add(new Nebula( 24548, Nebula.NebulaType.Planetary, "Screakai HM-V e2-1765", 9, true, "Screakai HM-V e2-1765", (decimal?)-10992.625, (decimal?)703.875, (decimal?)21318.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24549, Nebula.NebulaType.Planetary, "Screakai IR-N e6-655", 9, true, "Screakai IR-N e6-655", (decimal?)-10508.84375, (decimal?)127.8125, (decimal?)21948.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24550, Nebula.NebulaType.Planetary, "Screakai JR-W e1-153", 9, true, "Screakai JR-W e1-153", (decimal?)-11072.21875, (decimal?)213.03125, (decimal?)21036.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24551, Nebula.NebulaType.Planetary, "Screakai LR-W e1-8837", 9, true, "Screakai LR-W e1-8837", (decimal?)-10650.3125, (decimal?)269.875, (decimal?)21028.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24552, Nebula.NebulaType.Planetary, "Screakai RS-U e2-1019", 9, true, "Screakai RS-U e2-1019", (decimal?)-10723.25, (decimal?)110.4375, (decimal?)21261.65625, (int)10 )); + AllOfThem.Add(new Nebula( 24553, Nebula.NebulaType.Planetary, "Screakai TS-U e2-871", 9, true, "Screakai TS-U e2-871", (decimal?)-10454.96875, (decimal?)101.0625, (decimal?)21247.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24554, Nebula.NebulaType.Planetary, "Screakai WJ-R e4-418", 9, true, "Screakai WJ-R e4-418", (decimal?)-10940, (decimal?)291, (decimal?)21647.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24555, Nebula.NebulaType.Planetary, "Screakai YE-R e4-831", 9, true, "Screakai YE-R e4-831", (decimal?)-10859, (decimal?)67.5, (decimal?)21583.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24556, Nebula.NebulaType.Planetary, "Screakai ZP-P e5-6346", 9, true, "Screakai ZP-P e5-6346", (decimal?)-10968.65625, (decimal?)179.03125, (decimal?)21676.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24576, Nebula.NebulaType.Planetary, "Screake KC-V e2-264", 9, true, "Screake KC-V e2-264", (decimal?)-9935.59375, (decimal?)309.28125, (decimal?)21190.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24621, Nebula.NebulaType.Planetary, "Screakue YK-O e6-64", 9, true, "Screakue YK-O e6-64", (decimal?)-12132.1875, (decimal?)628.125, (decimal?)21822.75, (int)10 )); + AllOfThem.Add(new Nebula( 24622, Nebula.NebulaType.Planetary, "Screakue ZE-R e4-1264", 9, true, "Screakue ZE-R e4-1264", (decimal?)-12038.65625, (decimal?)4.65625, (decimal?)21607.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24694, Nebula.NebulaType.Planetary, "Skaude AL-X e1-28", 9, true, "Skaude AL-X e1-28", (decimal?)-4708.625, (decimal?)-381.3125, (decimal?)9571.75, (int)10 )); + AllOfThem.Add(new Nebula( 24747, Nebula.NebulaType.Planetary, "Spoihaae LN-S E4-111", 9, true, "Spoihaae LN-S e4-111", (decimal?)-9348.4375, (decimal?)-1393.625, (decimal?)20247, (int)10 )); + AllOfThem.Add(new Nebula( 24779, Nebula.NebulaType.Planetary, "Stuelou BL-X E1-134", 9, true, "Stuelou BL-X e1-134", (decimal?)-7155.28125, (decimal?)-503.65625, (decimal?)13386.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24780, Nebula.NebulaType.Planetary, "Stuelou OJ-Q e5-2121", 9, true, "Stuelou OJ-Q e5-2121", (decimal?)-7665.71875, (decimal?)-483.375, (decimal?)14063.125, (int)10 )); + AllOfThem.Add(new Nebula( 24781, Nebula.NebulaType.Planetary, "Stuelou TO-Z e895", 9, true, "Stuelou TO-Z e895", (decimal?)-7179.03125, (decimal?)-155.75, (decimal?)13242.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24782, Nebula.NebulaType.Planetary, "Stuelou UJ-R e4-62", 9, true, "Stuelou UJ-R e4-62", (decimal?)-7373.375, (decimal?)-1037.96875, (decimal?)13931.5, (int)10 )); + AllOfThem.Add(new Nebula( 25259, Nebula.NebulaType.Planetary, "Whanee OD-B e3519", 9, true, "Whanee OD-B e3519", (decimal?)-7641, (decimal?)1001.90625, (decimal?)18280.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25261, Nebula.NebulaType.Planetary, "Whanee SJ-Z e73", 9, true, "Whanee SJ-Z e73", (decimal?)-7740.4375, (decimal?)1072.25, (decimal?)18295.71875, (int)10 )); + AllOfThem.Add(new Nebula( 25264, Nebula.NebulaType.Planetary, "Whanoa YT-A e122", 9, true, "Whanoa YT-A e122", (decimal?)-10593.59375, (decimal?)649.875, (decimal?)18213.09375, (int)10 )); + AllOfThem.Add(new Nebula( 30011, Nebula.NebulaType.Real, "Box Nebula", 9, true, "CSI-12-17112", (decimal?)-1759.34375, (decimal?)2758.8125, (decimal?)10292.40625, (int)100 )); + AllOfThem.Add(new Nebula( 30060, Nebula.NebulaType.Real, "IC 4846", 9, true, "BD-09 5069", null, null, null, (int)100 )); + AllOfThem.Add(new Nebula( 30121, Nebula.NebulaType.Real, "NGC 6644", 9, true, "CD-25 13223", (decimal?)-1420.03125, (decimal?)-1245.25, (decimal?)9616.28125, (int)100 )); + } + public static void init_Region_10() { + AllOfThem.Add(new Nebula( 10127, Nebula.NebulaType.Standard, "Blaa Hypai AA-A h55", 10, true, "Blaa Hypai UO-L b10-0", (decimal?)1775.90625, (decimal?)-783.9375, (decimal?)11957.8125, (int)100 )); + AllOfThem.Add(new Nebula( 10128, Nebula.NebulaType.Standard, "Blaa Hypai AA-A h68", 10, true, "Blaa Hypai PI-N b9-1", (decimal?)1771.4375, (decimal?)-774.78125, (decimal?)11944.40625, (int)100 )); + AllOfThem.Add(new Nebula( 10129, Nebula.NebulaType.Standard, "Clookuia AA-A h35", 10, true, "Clookuia MI-K d8-10", (decimal?)2890.0625, (decimal?)-1215.96875, (decimal?)12461.28125, (int)100 )); + AllOfThem.Add(new Nebula( 10130, Nebula.NebulaType.Standard, "Puelaa AA-A h4", 10, true, "Puelaa OD-V b8-0", (decimal?)5375.0625, (decimal?)1137.3125, (decimal?)13200.5625, (int)100 )); + AllOfThem.Add(new Nebula( 20265, Nebula.NebulaType.Planetary, "Blaa Hypai DR-V e2-16", 10, true, "Blaa Hypai DR-V e2-16", (decimal?)1496.125, (decimal?)-397.96875, (decimal?)12226.71875, (int)10 )); + AllOfThem.Add(new Nebula( 20273, Nebula.NebulaType.Planetary, "Blae Hypai WO-Z e6", 10, true, "Blae Hypai WO-Z e6", (decimal?)8584, (decimal?)-170.4375, (decimal?)11912.03125, (int)10 )); + AllOfThem.Add(new Nebula( 20759, Nebula.NebulaType.Planetary, "Clookuia UJ-Z e14", 10, true, "Clookuia UJ-Z e14", (decimal?)2914.3125, (decimal?)-273.53125, (decimal?)11984.5, (int)10 )); + AllOfThem.Add(new Nebula( 20771, Nebula.NebulaType.Planetary, "Coerns WP-X e1-14", 10, true, "Coerns WP-X e1-14", (decimal?)15351.4375, (decimal?)-289.25, (decimal?)16003.40625, (int)10 )); + AllOfThem.Add(new Nebula( 21445, Nebula.NebulaType.Planetary, "Dumbeae SU-O e6-0", 10, true, "Dumbeae SU-O e6-0", (decimal?)18210.09375, (decimal?)1082.5, (decimal?)23210.8125, (int)10 )); + AllOfThem.Add(new Nebula( 21775, Nebula.NebulaType.Planetary, "Eodgovvy GW-W e1-17", 10, true, "Eodgovvy GW-W e1-17", (decimal?)1670.71875, (decimal?)429.3125, (decimal?)10888.25, (int)10 )); + AllOfThem.Add(new Nebula( 21776, Nebula.NebulaType.Planetary, "Eodgovvy ZP-P e5-1", 10, true, "Eodgovvy ZP-P e5-1", (decimal?)1762.9375, (decimal?)197.71875, (decimal?)11483.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22183, Nebula.NebulaType.Planetary, "Eorld Ploe BV-X e1-9", 10, true, "Eorld Ploe BV-X e1-9", (decimal?)10130.65625, (decimal?)-129.5625, (decimal?)17260.25, (int)10 )); + AllOfThem.Add(new Nebula( 22333, Nebula.NebulaType.Planetary, "Floadoae OD-B e19", 10, true, "Floadoae OD-B e19", (decimal?)11514.78125, (decimal?)-246, (decimal?)14312.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22378, Nebula.NebulaType.Planetary, "Flyua Phoea RI-T e3-0", 10, true, "Flyua Phoea RI-T e3-0", (decimal?)4587.53125, (decimal?)-979.40625, (decimal?)9842.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22460, Nebula.NebulaType.Planetary, "Grie Hypue RS-U e2-0", 10, true, "Grie Hypue RS-U e2-0", (decimal?)14818.96875, (decimal?)-1292.25, (decimal?)13524.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22461, Nebula.NebulaType.Planetary, "Grie Phoe NN-S e4-1", 10, true, "Grie Phoe NN-S e4-1", (decimal?)15187.9375, (decimal?)-144.5625, (decimal?)16438.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22463, Nebula.NebulaType.Planetary, "Gru Hypai DL-X e1-20", 10, true, "Gru Hypai DL-X e1-20", (decimal?)3384.125, (decimal?)-364.15625, (decimal?)13444.4375, (int)10 )); + AllOfThem.Add(new Nebula( 22475, Nebula.NebulaType.Planetary, "Hypaa Flyi CH-U e3-25", 10, true, "Hypaa Flyi CH-U e3-25", (decimal?)19146.4375, (decimal?)-83.9375, (decimal?)22633.5625, (int)10 )); + AllOfThem.Add(new Nebula( 22754, Nebula.NebulaType.Planetary, "Hypua Pruae JX-T e3-5", 10, true, "Hypua Pruae JX-T e3-5", (decimal?)18447.125, (decimal?)-355.75, (decimal?)25289.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23399, Nebula.NebulaType.Planetary, "Nuekie RO-Z e16", 10, true, "Nuekie RO-Z e16", (decimal?)5316.4375, (decimal?)-103.4375, (decimal?)13294.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24213, Nebula.NebulaType.Planetary, "Pliele YA-O e6-0", 10, true, "Pliele YA-O e6-0", (decimal?)3870.34375, (decimal?)-875.5625, (decimal?)9089.375, (int)10 )); + AllOfThem.Add(new Nebula( 24267, Nebula.NebulaType.Planetary, "Prua Phio AB-W e2-36", 10, true, "Prua Phio AB-W e2-36", (decimal?)1574.8125, (decimal?)-181.40625, (decimal?)10977.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24268, Nebula.NebulaType.Planetary, "Prua Phio EC-U e3-20", 10, true, "Prua Phio EC-U e3-20", (decimal?)1306.96875, (decimal?)-230.96875, (decimal?)11207.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24269, Nebula.NebulaType.Planetary, "Prua Phio YT-A e12", 10, true, "Prua Phio YT-A e12", (decimal?)2282.84375, (decimal?)-637.65625, (decimal?)10540.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24289, Nebula.NebulaType.Planetary, "Puelio HG-X e1-6", 10, true, "Puelio HG-X e1-6", (decimal?)2381.6875, (decimal?)713.96875, (decimal?)13370.875, (int)10 )); + AllOfThem.Add(new Nebula( 24290, Nebula.NebulaType.Planetary, "Pueloea HB-X e1-2", 10, true, "Pueloea HB-X e1-2", (decimal?)3370.9375, (decimal?)568.5625, (decimal?)13470.90625, (int)10 )); + AllOfThem.Add(new Nebula( 24291, Nebula.NebulaType.Planetary, "Pueloi KM-W e1-46", 10, true, "Pueloi KM-W e1-46", (decimal?)4218.78125, (decimal?)73.9375, (decimal?)13431.125, (int)10 )); + AllOfThem.Add(new Nebula( 24546, Nebula.NebulaType.Planetary, "Schreang PD-B e24", 10, true, "Schreang PD-B e24", (decimal?)15549.0625, (decimal?)-310.1875, (decimal?)23284.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24692, Nebula.NebulaType.Planetary, "Skaudaea NT-Q e5-4", 10, true, "Skaudaea NT-Q e5-4", (decimal?)9378.375, (decimal?)-97.375, (decimal?)10283.125, (int)10 )); + AllOfThem.Add(new Nebula( 24693, Nebula.NebulaType.Planetary, "Skaudao RO-Z e28", 10, true, "Skaudao RO-Z e28", (decimal?)2729.4375, (decimal?)-87.1875, (decimal?)9475.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24697, Nebula.NebulaType.Planetary, "Slenguia LC-V e2-4", 10, true, "Slenguia LC-V e2-4", (decimal?)8096, (decimal?)296.84375, (decimal?)9665.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25330, Nebula.NebulaType.Planetary, "Zunoa SY-A e0", 10, true, "Zunoa SY-A e0", (decimal?)16964.78125, (decimal?)921.25, (decimal?)23320.625, (int)10 )); + AllOfThem.Add(new Nebula( 30057, Nebula.NebulaType.Real, "IC 4673", 10, true, "HEN 2-333", (decimal?)-840.65625, (decimal?)-561.15625, (decimal?)13361.8125, (int)100 )); + AllOfThem.Add(new Nebula( 30112, Nebula.NebulaType.Real, "NGC 6326", 10, true, "CD-51 10820", (decimal?)4041.21875, (decimal?)-1606.9375, (decimal?)10103.75, (int)100 )); + } + public static void init_Region_11() { + AllOfThem.Add(new Nebula( 10131, Nebula.NebulaType.Standard, "Eock Bluae AA-A h36", 11, true, "Eock Bluae JQ-Y d1", (decimal?)16045.75, (decimal?)-1070.625, (decimal?)27193.71875, (int)100 )); + AllOfThem.Add(new Nebula( 20141, Nebula.NebulaType.Planetary, "Assaipy FA-A e18", 11, true, "Assaipy FA-A e18", (decimal?)20007.46875, (decimal?)43.84375, (decimal?)34915.34375, (int)10 )); + AllOfThem.Add(new Nebula( 20249, Nebula.NebulaType.Planetary, "Baulae VO-R e4-0", 11, true, "Baulae VO-R e4-0", (decimal?)17413.90625, (decimal?)415.96875, (decimal?)29186.21875, (int)10 )); + AllOfThem.Add(new Nebula( 20254, Nebula.NebulaType.Planetary, "Baulue YU-Y e0", 11, true, "Baulue YU-Y e0", (decimal?)21709.6875, (decimal?)469.71875, (decimal?)28562.875, (int)10 )); + AllOfThem.Add(new Nebula( 21337, Nebula.NebulaType.Planetary, "Dryu Bre FL-P e5-51", 11, true, "Dryu Bre FL-P e5-51", (decimal?)17728.9375, (decimal?)131.75, (decimal?)31935.625, (int)10 )); + AllOfThem.Add(new Nebula( 22329, Nebula.NebulaType.Planetary, "Flimbuae CA-A e2", 11, true, "Flimbuae CA-A e2", (decimal?)18265.09375, (decimal?)31.40625, (decimal?)27124.125, (int)10 )); + AllOfThem.Add(new Nebula( 23762, Nebula.NebulaType.Planetary, "Phipoae JW-W e1-4", 11, true, "Phipoae JW-W e1-4", (decimal?)16194.28125, (decimal?)413.78125, (decimal?)27543.96875, (int)10 )); + } + public static void init_Region_12() { + AllOfThem.Add(new Nebula( 10132, Nebula.NebulaType.Standard, "Flyai Flyuae AA-A h20", 12, true, "Flyai Flyuae XJ-A c2", (decimal?)17926.28125, (decimal?)-1201, (decimal?)37360.59375, (int)100 )); + AllOfThem.Add(new Nebula( 20495, Nebula.NebulaType.Planetary, "Byeethiae RI-T e3-4", 12, true, "Byeethiae RI-T e3-4", (decimal?)18751.96875, (decimal?)317.65625, (decimal?)38032.0625, (int)10 )); + AllOfThem.Add(new Nebula( 20649, Nebula.NebulaType.Planetary, "Byua Auwsy EL-P e5-31", 12, true, "Byua Auwsy EL-P e5-31", (decimal?)10002.03125, (decimal?)66.03125, (decimal?)47304.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21173, Nebula.NebulaType.Planetary, "Dryiqeau OZ-O e6-5", 12, true, "Dryiqeau OZ-O e6-5", (decimal?)15428.90625, (decimal?)-108.5625, (decimal?)41115.53125, (int)10 )); + AllOfThem.Add(new Nebula( 21174, Nebula.NebulaType.Planetary, "Dryiqee ZT-A e2", 12, true, "Dryiqee ZT-A e2", (decimal?)17784.0625, (decimal?)-619.375, (decimal?)39933.875, (int)10 )); + AllOfThem.Add(new Nebula( 21175, Nebula.NebulaType.Planetary, "Dryiqoa FB-W e2-0", 12, true, "Dryiqoa FB-W e2-0", (decimal?)13862.78125, (decimal?)-167.3125, (decimal?)40392.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22459, Nebula.NebulaType.Planetary, "Grie Flyi NS-T e3-6", 12, true, "Grie Flyi NS-T e3-6", (decimal?)14817.875, (decimal?)-577.03125, (decimal?)44383.625, (int)10 )); + AllOfThem.Add(new Nebula( 22885, Nebula.NebulaType.Planetary, "Joorai HW-N e6-7", 12, true, "Joorai HW-N e6-7", (decimal?)17854.40625, (decimal?)288.9375, (decimal?)39749.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24245, Nebula.NebulaType.Planetary, "Prai Pruae TZ-O e6-3", 12, true, "Prai Pruae TZ-O e6-3", (decimal?)18683.09375, (decimal?)-68, (decimal?)42434.96875, (int)10 )); + AllOfThem.Add(new Nebula( 24274, Nebula.NebulaType.Planetary, "Prue Flyuae ZK-O e6-4", 12, true, "Prue Flyuae ZK-O e6-4", (decimal?)17534.59375, (decimal?)-543.03125, (decimal?)39836.28125, (int)10 )); + } + public static void init_Region_13() { + AllOfThem.Add(new Nebula( 10133, Nebula.NebulaType.Standard, "Myoangooe AA-A h2", 13, true, "Myoangooe KD-S e4-2", (decimal?)-11535.96875, (decimal?)839.15625, (decimal?)42045.90625, (int)100 )); + AllOfThem.Add(new Nebula( 20295, Nebula.NebulaType.Planetary, "Bleia Flyuae DH-U e3-26", 13, true, "Bleia Flyuae DH-U e3-26", (decimal?)-3676.53125, (decimal?)-181.65625, (decimal?)43236.09375, (int)10 )); + AllOfThem.Add(new Nebula( 20296, Nebula.NebulaType.Planetary, "Bleia Flyuae EB-W e2-1", 13, true, "Bleia Flyuae EB-W e2-1", (decimal?)-2901.34375, (decimal?)-162.34375, (decimal?)42936.75, (int)10 )); + AllOfThem.Add(new Nebula( 20783, Nebula.NebulaType.Planetary, "Cyoagou SZ-O e6-42", 13, true, "Cyoagou SZ-O e6-42", (decimal?)-10809.15625, (decimal?)-120.71875, (decimal?)42346.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21531, Nebula.NebulaType.Planetary, "Eactaift BA-A e37", 13, true, "Eactaift BA-A e37", (decimal?)-9992.40625, (decimal?)12.15625, (decimal?)42539.125, (int)10 )); + AllOfThem.Add(new Nebula( 21532, Nebula.NebulaType.Planetary, "Eactaipp TS-U e2-21", 13, true, "Eactaipp TS-U e2-21", (decimal?)-10421.40625, (decimal?)6.59375, (decimal?)42968.25, (int)10 )); + AllOfThem.Add(new Nebula( 24235, Nebula.NebulaType.Planetary, "Ploi Aub NS-U e2-78", 13, true, "Ploi Aub NS-U e2-78", (decimal?)-1169.21875, (decimal?)6.34375, (decimal?)40415.125, (int)10 )); + AllOfThem.Add(new Nebula( 24236, Nebula.NebulaType.Planetary, "Plooe Freau HR-N e6-5", 13, true, "Plooe Freau HR-N e6-5", (decimal?)-9452.71875, (decimal?)101.46875, (decimal?)41106.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24241, Nebula.NebulaType.Planetary, "Prae Pruae GX-T e3-7", 13, true, "Prae Pruae GX-T e3-7", (decimal?)-3868.15625, (decimal?)-452.09375, (decimal?)41922.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24302, Nebula.NebulaType.Planetary, "Pyuefoea EB-W e2-13", 13, true, "Pyuefoea EB-W e2-13", (decimal?)-2885.625, (decimal?)-178.09375, (decimal?)44289.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24696, Nebula.NebulaType.Planetary, "Slatchaa OO-Q e5-1", 13, true, "Slatchaa OO-Q e5-1", (decimal?)-13680.1875, (decimal?)-262.21875, (decimal?)46035.375, (int)10 )); + } + public static void init_Region_14() { + AllOfThem.Add(new Nebula( 21533, Nebula.NebulaType.Planetary, "Eactaisky IR-N e6-2", 14, true, "Eactaisky IR-N e6-2", (decimal?)-19483.84375, (decimal?)8, (decimal?)43610.375, (int)10 )); + AllOfThem.Add(new Nebula( 24210, Nebula.NebulaType.Planetary, "Plae Fleau CB-O e6-2", 14, true, "Plae Fleau CB-O e6-2", (decimal?)-21178.40625, (decimal?)321.5625, (decimal?)38499.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24211, Nebula.NebulaType.Planetary, "Plae Fleau KM-W e1-53", 14, true, "Plae Fleau KM-W e1-53", (decimal?)-21376.25, (decimal?)36.8125, (decimal?)37748.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24237, Nebula.NebulaType.Planetary, "Plua Flee FL-Y e2", 14, true, "Plua Flee FL-Y e2", (decimal?)-18633.71875, (decimal?)167.71875, (decimal?)37537.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24244, Nebula.NebulaType.Planetary, "Prai Pre HC-U e3-3", 14, true, "Prai Pre HC-U e3-3", (decimal?)-22552.78125, (decimal?)-269.625, (decimal?)41867.9375, (int)10 )); + AllOfThem.Add(new Nebula( 25018, Nebula.NebulaType.Planetary, "Trignai MT-Q e5-28", 14, true, "Trignai MT-Q e5-28", (decimal?)-16355.875, (decimal?)-70.25, (decimal?)40895.34375, (int)10 )); + } + public static void init_Region_15() { + AllOfThem.Add(new Nebula( 10134, Nebula.NebulaType.Standard, "Aiphaisty AA-A h3", 15, true, "Aiphaisty DP-C b27-2", (decimal?)-17789.15625, (decimal?)157.40625, (decimal?)34094.96875, (int)100 )); + AllOfThem.Add(new Nebula( 10135, Nebula.NebulaType.Standard, "Eolls Graae AA-A h31", 15, true, "Eolls Graae PG-E b15-4", (decimal?)-18874.84375, (decimal?)-613.625, (decimal?)29977.375, (int)100 )); + AllOfThem.Add(new Nebula( 10136, Nebula.NebulaType.Standard, "Glaiseae AA-A h29", 15, true, "Glaiseae SO-G c27-5", (decimal?)-16115.65625, (decimal?)-86.0625, (decimal?)32121.40625, (int)100 )); + AllOfThem.Add(new Nebula( 10137, Nebula.NebulaType.Standard, "Hypao Brai AA-A h6", 15, true, "Hypao Brai XJ-R c20-2", (decimal?)-15202.75, (decimal?)883.84375, (decimal?)35677.59375, (int)100 )); + AllOfThem.Add(new Nebula( 10138, Nebula.NebulaType.Standard, "Vegnaa AA-A h5", 15, true, "Vegnaa FD-H b40-1", (decimal?)-15117.625, (decimal?)506.75, (decimal?)36925.4375, (int)100 )); + AllOfThem.Add(new Nebula( 10139, Nebula.NebulaType.Standard, "Vegneia AA-A h4", 15, true, "Vegneia ZO-I d9-234", (decimal?)-11765.90625, (decimal?)62.6875, (decimal?)36907.53125, (int)100 )); + AllOfThem.Add(new Nebula( 21177, Nebula.NebulaType.Planetary, "Dryo Brai MM-W e1-59", 15, true, "Dryo Brai MM-W e1-59", (decimal?)-16027.53125, (decimal?)120.78125, (decimal?)31275.5, (int)10 )); + AllOfThem.Add(new Nebula( 21771, Nebula.NebulaType.Planetary, "Eocs Brue YA-O e6-14", 15, true, "Eocs Brue YA-O e6-14", (decimal?)-19264.71875, (decimal?)307.25, (decimal?)30895.1875, (int)10 )); + AllOfThem.Add(new Nebula( 21888, Nebula.NebulaType.Planetary, "Eol Groa DG-X e1-14", 15, true, "Eol Groa DG-X e1-14", (decimal?)-20003.53125, (decimal?)-539.4375, (decimal?)30020.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22080, Nebula.NebulaType.Planetary, "Eorgh Ble XE-Z e12", 15, true, "Eorgh Ble XE-Z e12", (decimal?)-21202.125, (decimal?)-407.71875, (decimal?)27262.1875, (int)10 )); + AllOfThem.Add(new Nebula( 22353, Nebula.NebulaType.Planetary, "Flya Flyou ZJ-Z e6", 15, true, "Flya Flyou ZJ-Z e6", (decimal?)-14208.1875, (decimal?)-231.21875, (decimal?)37615.96875, (int)10 )); + AllOfThem.Add(new Nebula( 22424, Nebula.NebulaType.Planetary, "Gooroea UT-A e6", 15, true, "Gooroea UT-A e6", (decimal?)-11231.0625, (decimal?)-660.03125, (decimal?)38757.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22425, Nebula.NebulaType.Planetary, "Goothee TO-Z e0", 15, true, "Goothee TO-Z e0", (decimal?)-14933.28125, (decimal?)-171.21875, (decimal?)38792.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22449, Nebula.NebulaType.Planetary, "Greetheou XP-X e1-89", 15, true, "Greetheou XP-X e1-89", (decimal?)-10138.65625, (decimal?)997.78125, (decimal?)37707.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22450, Nebula.NebulaType.Planetary, "Greethia MY-R e4-2", 15, true, "Greethia MY-R e4-2", (decimal?)-12837.59375, (decimal?)655.4375, (decimal?)38218.375, (int)10 )); + AllOfThem.Add(new Nebula( 22451, Nebula.NebulaType.Planetary, "Greethia SS-U e2-48", 15, true, "Greethia SS-U e2-48", (decimal?)-11818.75, (decimal?)60.1875, (decimal?)37864.3125, (int)10 )); + AllOfThem.Add(new Nebula( 22694, Nebula.NebulaType.Planetary, "Hypoea Greau DB-W e2-16", 15, true, "Hypoea Greau DB-W e2-16", (decimal?)-15791.28125, (decimal?)-117.125, (decimal?)35321.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22695, Nebula.NebulaType.Planetary, "Hypoea Gria UU-X e1-0", 15, true, "Hypoea Gria UU-X e1-0", (decimal?)-16698.03125, (decimal?)-1447.40625, (decimal?)35106.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22696, Nebula.NebulaType.Planetary, "Hypoi Graae IH-U e3-31", 15, true, "Hypoi Graae IH-U e3-31", (decimal?)-16948.90625, (decimal?)-176.46875, (decimal?)35574.375, (int)10 )); + AllOfThem.Add(new Nebula( 22900, Nebula.NebulaType.Planetary, "Juemeou GN-S e4-18", 15, true, "Juemeou GN-S e4-18", (decimal?)-19204.5, (decimal?)-154.5625, (decimal?)26659.84375, (int)10 )); + AllOfThem.Add(new Nebula( 23809, Nebula.NebulaType.Planetary, "Phleefoa WJ-Z e24", 15, true, "Phleefoa WJ-Z e24", (decimal?)-16020.46875, (decimal?)-302.21875, (decimal?)33706.3125, (int)10 )); + AllOfThem.Add(new Nebula( 23952, Nebula.NebulaType.Planetary, "Phrae Bliae NI-B e56", 15, true, "Phrae Bliae NI-B e56", (decimal?)-13930.3125, (decimal?)-111.3125, (decimal?)33639.875, (int)10 )); + AllOfThem.Add(new Nebula( 23957, Nebula.NebulaType.Planetary, "Phrae Gria QY-A e1", 15, true, "Phrae Gria QY-A e1", (decimal?)-11584.0625, (decimal?)-1771.78125, (decimal?)36061.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24209, Nebula.NebulaType.Planetary, "Plae Aob FF-A e213", 15, true, "Plae Aob FF-A e213", (decimal?)-10423.34375, (decimal?)285.4375, (decimal?)37483.59375, (int)10 )); + AllOfThem.Add(new Nebula( 24273, Nebula.NebulaType.Planetary, "Prue Flyoae WU-P e5-1", 15, true, "Prue Flyoae WU-P e5-1", (decimal?)-13683.625, (decimal?)-875.875, (decimal?)39643.625, (int)10 )); + AllOfThem.Add(new Nebula( 24315, Nebula.NebulaType.Planetary, "Scaulae SO-Z e22", 15, true, "Scaulae SO-Z e22", (decimal?)-18835.6875, (decimal?)-66.46875, (decimal?)28606.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24625, Nebula.NebulaType.Planetary, "Shaulai UY-A e4", 15, true, "Shaulai UY-A e4", (decimal?)-21172.46875, (decimal?)806.875, (decimal?)28398.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24626, Nebula.NebulaType.Planetary, "Shaule AQ-P e5-20", 15, true, "Shaule AQ-P e5-20", (decimal?)-19878.625, (decimal?)140.71875, (decimal?)29454.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24704, Nebula.NebulaType.Planetary, "Sphuqea UU-P e5-1", 15, true, "Sphuqea UU-P e5-1", (decimal?)-14082.5, (decimal?)340.3125, (decimal?)35797.0625, (int)10 )); + AllOfThem.Add(new Nebula( 24705, Nebula.NebulaType.Planetary, "Sphuquia WE-R e4-119", 15, true, "Sphuquia WE-R e4-119", (decimal?)-12393.0625, (decimal?)78.40625, (decimal?)35679.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25021, Nebula.NebulaType.Planetary, "Tyreanaae TT-R e4-4", 15, true, "Tyreanaae TT-R e4-4", (decimal?)-11992.25, (decimal?)-820.875, (decimal?)38202.28125, (int)10 )); + AllOfThem.Add(new Nebula( 25075, Nebula.NebulaType.Planetary, "Vegnae YE-R e4-121", 15, true, "Vegnae YE-R e4-121", (decimal?)-10916.96875, (decimal?)128.34375, (decimal?)36858.625, (int)10 )); + AllOfThem.Add(new Nebula( 25076, Nebula.NebulaType.Planetary, "Vegneia FM-V e2-7", 15, true, "Vegneia FM-V e2-7", (decimal?)-12573.78125, (decimal?)617.59375, (decimal?)36662.5625, (int)10 )); + } + public static void init_Region_16() { + AllOfThem.Add(new Nebula( 10140, Nebula.NebulaType.Standard, "Agnaix AA-A h41", 16, true, "Agnaix QD-A d1-71", (decimal?)-14919.96875, (decimal?)-456.4375, (decimal?)22117.15625, (int)100 )); + AllOfThem.Add(new Nebula( 10141, Nebula.NebulaType.Standard, "Boeppy AA-A h62", 16, true, "Boeppy NU-Q b8-2", (decimal?)-14992.96875, (decimal?)-600.40625, (decimal?)15772.6875, (int)100 )); + AllOfThem.Add(new Nebula( 10142, Nebula.NebulaType.Standard, "Dryo Aob AA-A h29", 16, true, "Dryo Aob VP-W b45-0", (decimal?)-15513.375, (decimal?)498.15625, (decimal?)19121.9375, (int)100 )); + AllOfThem.Add(new Nebula( 10143, Nebula.NebulaType.Standard, "Floaln AA-A h43", 16, true, "Floaln BR-W b56-0", (decimal?)-12466.15625, (decimal?)-1269.71875, (decimal?)15531, (int)100 )); + AllOfThem.Add(new Nebula( 10144, Nebula.NebulaType.Standard, "Floarph AA-A h49", 16, true, "Floarph OY-Z d13-3", (decimal?)-13270.46875, (decimal?)-1092.46875, (decimal?)15569.34375, (int)100 )); + AllOfThem.Add(new Nebula( 10145, Nebula.NebulaType.Standard, "Iowhaih AA-A h42", 16, true, "Iowhaih GY-B c16-0", (decimal?)-13067.1875, (decimal?)1237.625, (decimal?)16284.125, (int)100 )); + AllOfThem.Add(new Nebula( 10146, Nebula.NebulaType.Standard, "Leameia AA-A h52", 16, true, "Leameia CQ-A b6-18", (decimal?)-13779.34375, (decimal?)-123.40625, (decimal?)19538.21875, (int)100 )); + AllOfThem.Add(new Nebula( 10147, Nebula.NebulaType.Standard, "Phooe Aob AA-A h32", 16, true, "Phooe Aob LO-X b6-0", (decimal?)-14718.8125, (decimal?)1025.4375, (decimal?)23413.9375, (int)100 )); + AllOfThem.Add(new Nebula( 10148, Nebula.NebulaType.Standard, "Ploadaea AA-A h1", 16, true, "Ploadaea KA-S c6-0", (decimal?)-19175.21875, (decimal?)908.375, (decimal?)14582.5, (int)100 )); + AllOfThem.Add(new Nebula( 10149, Nebula.NebulaType.Standard, "Zejoo AA-A h38", 16, true, "Zejoo TZ-O e6-8", (decimal?)-15782.75, (decimal?)-99.28125, (decimal?)11581.40625, (int)100 )); + AllOfThem.Add(new Nebula( 20625, Nebula.NebulaType.Planetary, "Byoomoi UJ-Q e5-6", 16, true, "Byoomoi UJ-Q e5-6", (decimal?)-20829, (decimal?)-348.8125, (decimal?)25557.59375, (int)10 )); + AllOfThem.Add(new Nebula( 20775, Nebula.NebulaType.Planetary, "Crooku NX-U e2-8", 16, true, "Crooku NX-U e2-8", (decimal?)-16128.78125, (decimal?)193.34375, (decimal?)12361.46875, (int)10 )); + AllOfThem.Add(new Nebula( 21176, Nebula.NebulaType.Planetary, "Dryo Aob DW-N e6-9", 16, true, "Dryo Aob DW-N e6-9", (decimal?)-16136.40625, (decimal?)183.53125, (decimal?)19311.3125, (int)10 )); + AllOfThem.Add(new Nebula( 21563, Nebula.NebulaType.Planetary, "Eephaih AW-V e2-10", 16, true, "Eephaih AW-V e2-10", (decimal?)-19198.8125, (decimal?)-212.8125, (decimal?)17407.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22838, Nebula.NebulaType.Planetary, "Iowhaih HW-N e6-11", 16, true, "Iowhaih HW-N e6-11", (decimal?)-12990.21875, (decimal?)172.28125, (decimal?)16838.46875, (int)10 )); + AllOfThem.Add(new Nebula( 22839, Nebula.NebulaType.Planetary, "Iowhaih ZK-P e5-28", 16, true, "Iowhaih ZK-P e5-28", (decimal?)-13901.84375, (decimal?)14.9375, (decimal?)16557.34375, (int)10 )); + AllOfThem.Add(new Nebula( 23021, Nebula.NebulaType.Planetary, "Kyloanns OZ-O e6-28", 16, true, "Kyloanns OZ-O e6-28", (decimal?)-17981.125, (decimal?)-97.34375, (decimal?)21858.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23122, Nebula.NebulaType.Planetary, "Leameia VP-O e6-42", 16, true, "Leameia VP-O e6-42", (decimal?)-13548.71875, (decimal?)-496.03125, (decimal?)20615.65625, (int)10 )); + AllOfThem.Add(new Nebula( 23592, Nebula.NebulaType.Planetary, "Ooscs Froa XE-R e4-5", 16, true, "Ooscs Froa XE-R e4-5", (decimal?)-19982.71875, (decimal?)31.15625, (decimal?)20350, (int)10 )); + AllOfThem.Add(new Nebula( 23908, Nebula.NebulaType.Planetary, "Phooe Fraae OM-W e1-75", 16, true, "Phooe Fraae OM-W e1-75", (decimal?)-16946.3125, (decimal?)14.375, (decimal?)26285.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24153, Nebula.NebulaType.Planetary, "Phrua Flyou FW-W e1-76", 16, true, "Phrua Flyou FW-W e1-76", (decimal?)-16471.15625, (decimal?)-891.4375, (decimal?)23692.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24154, Nebula.NebulaType.Planetary, "Phrua Prou QJ-Q e5-3", 16, true, "Phrua Prou QJ-Q e5-3", (decimal?)-16295.5, (decimal?)-483.28125, (decimal?)26888.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24543, Nebula.NebulaType.Planetary, "Schieniae ZE-Z e0", 16, true, "Schieniae ZE-Z e0", (decimal?)-15859.90625, (decimal?)-1777.0625, (decimal?)20957.71875, (int)10 )); + AllOfThem.Add(new Nebula( 24777, Nebula.NebulaType.Planetary, "Stuela VU-O e6-12", 16, true, "Stuela VU-O e6-12", (decimal?)-14539.625, (decimal?)-340.375, (decimal?)14252.09375, (int)10 )); + AllOfThem.Add(new Nebula( 24778, Nebula.NebulaType.Planetary, "Stueloo RJ-Q e5-11", 16, true, "Stueloo RJ-Q e5-11", (decimal?)-16161.75, (decimal?)-449.25, (decimal?)13994.15625, (int)10 )); + AllOfThem.Add(new Nebula( 24783, Nebula.NebulaType.Planetary, "Stuelue DH-U e3-34", 16, true, "Stuelue DH-U e3-34", (decimal?)-13881.53125, (decimal?)-174.84375, (decimal?)13682.125, (int)10 )); + AllOfThem.Add(new Nebula( 25103, Nebula.NebulaType.Planetary, "Wembeau KM-V e2-12", 16, true, "Wembeau KM-V e2-12", (decimal?)-16947.1875, (decimal?)-529.65625, (decimal?)23808.46875, (int)10 )); + } + public static void init_Region_17() { + AllOfThem.Add(new Nebula( 10150, Nebula.NebulaType.Standard, "Dehoae AA-A h56", 17, true, "Dehoae FL-W d2-0", (decimal?)-15796.75, (decimal?)-533.8125, (decimal?)9459.46875, (int)100 )); + AllOfThem.Add(new Nebula( 10151, Nebula.NebulaType.Standard, "Eodgosly AA-A h38", 17, true, "Eodgosly TL-S c5-3", (decimal?)-10244.15625, (decimal?)653.625, (decimal?)10703.9375, (int)100 )); + AllOfThem.Add(new Nebula( 10152, Nebula.NebulaType.Standard, "Flyai Eaescs AA-A h45", 17, true, "Flyai Eaescs BG-N d7-8", (decimal?)-12143.09375, (decimal?)-709.65625, (decimal?)9864.78125, (int)100 )); + AllOfThem.Add(new Nebula( 10153, Nebula.NebulaType.Standard, "Mycawsy AA-A h0", 17, true, "Mycawsy NE-D c1-0", (decimal?)-12503.59375, (decimal?)-1544.25, (decimal?)11780.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10154, Nebula.NebulaType.Standard, "Pra Eaewsy AA-A h56", 17, true, "Pra Eaewsy RD-D c27-6", (decimal?)-15298.75, (decimal?)-823.1875, (decimal?)11618, (int)100 )); + AllOfThem.Add(new Nebula( 10155, Nebula.NebulaType.Standard, "Prai Hypoo AA-A h60", 17, true, "Prai Hypoo QC-C d20", (decimal?)-9294.53125, (decimal?)-405.0625, (decimal?)7915.71875, (int)100 )); + AllOfThem.Add(new Nebula( 10156, Nebula.NebulaType.Standard, "Thraikai AA-A h3", 17, true, "Thraikai XL-A c15-0", (decimal?)-14901.125, (decimal?)535.71875, (decimal?)7256.8125, (int)100 )); + AllOfThem.Add(new Nebula( 20752, Nebula.NebulaType.Planetary, "Clookao BB-W e2-20", 17, true, "Clookao BB-W e2-20", (decimal?)-10959.59375, (decimal?)-140.125, (decimal?)12248.4375, (int)10 )); + AllOfThem.Add(new Nebula( 20785, Nebula.NebulaType.Planetary, "Dehou FV-Y e5", 17, true, "Dehou FV-Y e5", (decimal?)-14294.375, (decimal?)-710.65625, (decimal?)9385.78125, (int)10 )); + AllOfThem.Add(new Nebula( 21772, Nebula.NebulaType.Planetary, "Eodgold ER-N e6-53", 17, true, "Eodgold ER-N e6-53", (decimal?)-15092.21875, (decimal?)53.5, (decimal?)11732.25, (int)10 )); + AllOfThem.Add(new Nebula( 22360, Nebula.NebulaType.Planetary, "Flyai Eaescs DH-U e3-21", 17, true, "Flyai Eaescs DH-U e3-21", (decimal?)-12571.96875, (decimal?)-116.0625, (decimal?)9930, (int)10 )); + AllOfThem.Add(new Nebula( 22367, Nebula.NebulaType.Planetary, "Flyiedgae RJ-Q e5-0", 17, true, "Flyiedgae RJ-Q e5-0", (decimal?)-12371.75, (decimal?)-489.3125, (decimal?)8877.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22376, Nebula.NebulaType.Planetary, "Flyua Eaec DH-U e3-3", 17, true, "Flyua Eaec DH-U e3-3", (decimal?)-8776.40625, (decimal?)-113.53125, (decimal?)9910.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24238, Nebula.NebulaType.Planetary, "Pra Hypoo JW-W e1-0", 17, true, "Pra Hypoo JW-W e1-0", (decimal?)-14553.0625, (decimal?)-885.15625, (decimal?)8252.75, (int)10 )); + AllOfThem.Add(new Nebula( 24256, Nebula.NebulaType.Planetary, "Prielu TS-U e2-23", 17, true, "Prielu TS-U e2-23", (decimal?)-7781.90625, (decimal?)70.59375, (decimal?)8469.71875, (int)10 )); + } + public static void init_Region_18() { + AllOfThem.Add(new Nebula( 10157, Nebula.NebulaType.Standard, "Traikaae AA-A h2", 18, true, "Traikaae KT-P d6-10", (decimal?)-969.375, (decimal?)900.8125, (decimal?)4637.34375, (int)100 )); + AllOfThem.Add(new Nebula( 10158, Nebula.NebulaType.Standard, "Traikeou AA-A h2", 18, true, "Traikeou KO-E c13-1", (decimal?)-7161.25, (decimal?)677.1875, (decimal?)4648.5625, (int)100 )); + AllOfThem.Add(new Nebula( 20290, Nebula.NebulaType.Planetary, "Bleae Thaa RY-S e3-17", 18, true, "Bleae Thaa RY-S e3-17", (decimal?)-3585.3125, (decimal?)33.09375, (decimal?)2139.375, (int)10 )); + AllOfThem.Add(new Nebula( 20490, Nebula.NebulaType.Planetary, "Bya Thoi GL-Y e0", 18, true, "Bya Thoi GL-Y e0", (decimal?)-9637.5625, (decimal?)152.5, (decimal?)2955.625, (int)10 )); + AllOfThem.Add(new Nebula( 20515, Nebula.NebulaType.Planetary, "Byoi Euq YP-P e5-5", 18, true, "Byoi Euq YP-P e5-5", (decimal?)-6043.9375, (decimal?)280.65625, (decimal?)6307.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22370, Nebula.NebulaType.Planetary, "Flyiedgiae EB-W e2-37", 18, true, "Flyiedgiae EB-W e2-37", (decimal?)-2826.75, (decimal?)-142.46875, (decimal?)8437.25, (int)10 )); + AllOfThem.Add(new Nebula( 22371, Nebula.NebulaType.Planetary, "Flyiedgiae MX-T e3-23", 18, true, "Flyiedgiae MX-T e3-23", (decimal?)-2909.875, (decimal?)-504.5, (decimal?)8619.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23391, Nebula.NebulaType.Planetary, "NGC 4463 Sector RY-R e4-5", 18, true, "NGC 4463 Sector RY-R e4-5", (decimal?)3252.46875, (decimal?)-4.625, (decimal?)2009, (int)10 )); + AllOfThem.Add(new Nebula( 24201, Nebula.NebulaType.Planetary, "Phylur BV-Y e0", 18, true, "Phylur BV-Y e0", (decimal?)-2062.4375, (decimal?)610.46875, (decimal?)1754.125, (int)10 )); + AllOfThem.Add(new Nebula( 24258, Nebula.NebulaType.Planetary, "Pro Aec SS-U e2-1", 18, true, "Pro Aec SS-U e2-1", (decimal?)2183.90625, (decimal?)-16.46875, (decimal?)8379.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24293, Nebula.NebulaType.Planetary, "Pyramio JX-T e3-11", 18, true, "Pyramio JX-T e3-11", (decimal?)556.90625, (decimal?)-421.90625, (decimal?)6040.59375, (int)10 )); + AllOfThem.Add(new Nebula( 25011, Nebula.NebulaType.Planetary, "Thraikuae TI-T e3-1", 18, true, "Thraikuae TI-T e3-1", (decimal?)-7788.53125, (decimal?)391.1875, (decimal?)7316.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25016, Nebula.NebulaType.Planetary, "Traikoa FL-P e5-4", 18, true, "Traikoa FL-P e5-4", (decimal?)-1504.375, (decimal?)-18.53125, (decimal?)5040.96875, (int)10 )); + AllOfThem.Add(new Nebula( 30001, Nebula.NebulaType.Real, "Aquila Dark Region", 18, false, "Aquila Dark Region PD-S b4-9", (decimal?)-722.84375, (decimal?)-13.4375, (decimal?)689.59375, (int)100 )); + AllOfThem.Add(new Nebula( 30002, Nebula.NebulaType.Real, "B133", 18, false, "B133 Sector HR-W d1-67", (decimal?)-476.1875, (decimal?)-115.625, (decimal?)873.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30003, Nebula.NebulaType.Real, "B352", 18, false, "North America Sector FB-X c1-6", (decimal?)-1900.8125, (decimal?)8.125, (decimal?)123.125, (int)100 )); + AllOfThem.Add(new Nebula( 30004, Nebula.NebulaType.Real, "B92", 18, false, "B92 Sector TJ-Q b5-7", (decimal?)-143.0625, (decimal?)-12.21875, (decimal?)637.71875, (int)100 )); + AllOfThem.Add(new Nebula( 30005, Nebula.NebulaType.Real, "Barnard's Loop", 18, false, "Trapezium Sector AF-Z c0", (decimal?)617.03125, (decimal?)-421.625, (decimal?)-1224.5625, (int)300 )); + AllOfThem.Add(new Nebula( 30006, Nebula.NebulaType.Real, "Blinking Nebula", 18, true, "BD+50 2869", (decimal?)-1938.15625, (decimal?)443.09375, (decimal?)217.375, (int)100 )); + AllOfThem.Add(new Nebula( 30007, Nebula.NebulaType.Real, "Blue Flash Nebula", 18, true, "Csi+19-20201", (decimal?)-2599.53125, (decimal?)500.28125, (decimal?)1411.40625, (int)100 )); + AllOfThem.Add(new Nebula( 30013, Nebula.NebulaType.Real, "Bug Nebula", 18, true, "CD-36 11341", (decimal?)619.46875, (decimal?)65.25, (decimal?)3342.4375, (int)100 )); + AllOfThem.Add(new Nebula( 30015, Nebula.NebulaType.Real, "California Nebula", 18, false, "California Sector DL-Y d25", (decimal?)-335.84375, (decimal?)-203.71875, (decimal?)-915.9375, (int)100 )); + AllOfThem.Add(new Nebula( 30016, Nebula.NebulaType.Real, "Cat's Eye Nebula", 18, true, "BD+66 1066", (decimal?)-2842.375, (decimal?)1645, (decimal?)-323.875, (int)100 )); + AllOfThem.Add(new Nebula( 30017, Nebula.NebulaType.Real, "Cat's Paw Nebula", 18, false, "Cat's Paw Sector PD-S b4-7", (decimal?)852, (decimal?)59, (decimal?)5426.75, (int)100 )); + AllOfThem.Add(new Nebula( 30018, Nebula.NebulaType.Real, "Cave Nebula", 18, false, "Cave Sector FB-X c1-5", (decimal?)-2244.84375, (decimal?)110.125, (decimal?)-825.78125, (int)100 )); + AllOfThem.Add(new Nebula( 30019, Nebula.NebulaType.Real, "Cepheus Dark Region", 18, false, "HD 239486", (decimal?)-1366.625, (decimal?)242.625, (decimal?)-127.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30020, Nebula.NebulaType.Real, "Chamaeleon", 18, false, "Chamaeleon Sector PD-S b4-7", (decimal?)488.53125, (decimal?)-148.90625, (decimal?)303.40625, (int)100 )); + AllOfThem.Add(new Nebula( 30021, Nebula.NebulaType.Real, "Coalsack Dark Region", 18, false, "Musca Dark Region OY-Q b5-12", (decimal?)448.84375, (decimal?)-14.15625, (decimal?)258.53125, (int)100 )); + AllOfThem.Add(new Nebula( 30022, Nebula.NebulaType.Real, "Cocoon Nebula", 18, false, "Cocoon Sector EL-Y d19", (decimal?)-3175.21875, (decimal?)-308.625, (decimal?)-244.96875, (int)100 )); + AllOfThem.Add(new Nebula( 30024, Nebula.NebulaType.Real, "Corona Australis Dark Region", 18, false, "Corona Austr. Dark Region PD-S b4-3", (decimal?)-9.4375, (decimal?)-178.9375, (decimal?)490.1875, (int)100 )); + AllOfThem.Add(new Nebula( 30026, Nebula.NebulaType.Real, "Crescent Nebula", 18, false, "Crescent Sector KC-V c2-10", (decimal?)-4834.65625, (decimal?)212.03125, (decimal?)1255.625, (int)100 )); + AllOfThem.Add(new Nebula( 30027, Nebula.NebulaType.Real, "Dumbbell Nebula", 18, true, "BD+22 3878", (decimal?)-958.21875, (decimal?)-71, (decimal?)535.5, (int)100 )); + AllOfThem.Add(new Nebula( 30028, Nebula.NebulaType.Real, "Eagle Nebula", 18, false, "Eagle Sector RY-R b4-10", (decimal?)-2050.8125, (decimal?)94.90625, (decimal?)6691.9375, (int)140 )); + AllOfThem.Add(new Nebula( 30029, Nebula.NebulaType.Real, "Eight Burst Nebula", 18, true, "CD-39 6137", (decimal?)2049.625, (decimal?)450.9375, (decimal?)75.15625, (int)100 )); + AllOfThem.Add(new Nebula( 30030, Nebula.NebulaType.Real, "Elephant's Trunk Nebula", 18, false, "GM Cephei", (decimal?)-2660.96875, (decimal?)180.15625, (decimal?)-433.15625, (int)100 )); + AllOfThem.Add(new Nebula( 30032, Nebula.NebulaType.Real, "Fetus Nebula", 18, true, "Lan 111", (decimal?)-2881.59375, (decimal?)277.9375, (decimal?)-171.21875, (int)100 )); + AllOfThem.Add(new Nebula( 30033, Nebula.NebulaType.Real, "Fine Ring Nebula", 18, true, "Shapley 1", (decimal?)513.21875, (decimal?)34.875, (decimal?)857.53125, (int)100 )); + AllOfThem.Add(new Nebula( 30034, Nebula.NebulaType.Real, "Flame Nebula", 18, false, "Trapezium Sector AF-Z c5", (decimal?)625.75, (decimal?)-401.53125, (decimal?)-1198.53125, (int)100 )); + AllOfThem.Add(new Nebula( 30037, Nebula.NebulaType.Real, "Ghost of Jupiter", 18, true, "BD-17 3140", (decimal?)1171.6875, (decimal?)743.9375, (decimal?)-183.5, (int)100 )); + AllOfThem.Add(new Nebula( 30039, Nebula.NebulaType.Real, "Helix Nebula", 18, false, "CSI-21-22270", (decimal?)-224.5625, (decimal?)-587.75, (decimal?)306.8125, (int)100 )); + AllOfThem.Add(new Nebula( 30040, Nebula.NebulaType.Real, "Hind Nebula", 18, true, "T Tauri", (decimal?)-32.96875, (decimal?)-206.40625, (decimal?)-557.3125, (int)100 )); + AllOfThem.Add(new Nebula( 30041, Nebula.NebulaType.Real, "Horsehead Dark Region", 18, false, "Trapezium Sector BV-W b2-0", (decimal?)618.53125, (decimal?)-399.1875, (decimal?)-1200.09375, (int)100 )); + AllOfThem.Add(new Nebula( 30042, Nebula.NebulaType.Real, "Horsehead Nebula", 18, false, "Horsehead Dark Region IR-V c2-9", (decimal?)649.625, (decimal?)-423.53125, (decimal?)-1281.1875, (int)100 )); + AllOfThem.Add(new Nebula( 30044, Nebula.NebulaType.Real, "IC 1287", 18, true, "Mammon", (decimal?)-358.375, (decimal?)-8.75, (decimal?)933.53125, (int)100 )); + AllOfThem.Add(new Nebula( 30045, Nebula.NebulaType.Real, "IC 1297", 18, true, "CD-39 13207", null, null, null, (int)100 )); + AllOfThem.Add(new Nebula( 30052, Nebula.NebulaType.Real, "IC 289", 18, true, "NSV 1056", (decimal?)-1118.4375, (decimal?)83.03125, (decimal?)-1277.59375, (int)100 )); + AllOfThem.Add(new Nebula( 30054, Nebula.NebulaType.Real, "IC 4604", 18, false, "Sheron", (decimal?)61.40625, (decimal?)182.1875, (decimal?)566, (int)100 )); + AllOfThem.Add(new Nebula( 30055, Nebula.NebulaType.Real, "IC 4634", 18, true, "BD-21 4483", (decimal?)-51.1875, (decimal?)1584.90625, (decimal?)7330.4375, (int)100 )); + AllOfThem.Add(new Nebula( 30056, Nebula.NebulaType.Real, "IC 4663", 18, true, "CSI-44-17417", (decimal?)1523.6875, (decimal?)-927.09375, (decimal?)6250.5, (int)100 )); + AllOfThem.Add(new Nebula( 30061, Nebula.NebulaType.Real, "IC 4997", 18, true, "Csi+16-20178", (decimal?)-6681.4375, (decimal?)-1526.5, (decimal?)4126.53125, (int)100 )); + AllOfThem.Add(new Nebula( 30062, Nebula.NebulaType.Real, "IC 5117", 18, true, "Csi+44-21305", (decimal?)-2988.125, (decimal?)-266.6875, (decimal?)5.1875, (int)100 )); + AllOfThem.Add(new Nebula( 30063, Nebula.NebulaType.Real, "IC 5148", 18, true, "IRAS 21565-3937", (decimal?)-86.25, (decimal?)-2376.875, (decimal?)1828.375, (int)100 )); + AllOfThem.Add(new Nebula( 30065, Nebula.NebulaType.Real, "Iris Nebula", 18, false, "PW Cephei", (decimal?)-1413.6875, (decimal?)368.125, (decimal?)-353.5625, (int)100 )); + AllOfThem.Add(new Nebula( 30067, Nebula.NebulaType.Real, "Lagoon Nebula", 18, false, "Herschel 36", (decimal?)-468, (decimal?)-92.1875, (decimal?)4474.625, (int)110 )); + AllOfThem.Add(new Nebula( 30068, Nebula.NebulaType.Real, "LBN 623", 18, false, "LBN 623 Sector PD-S b4-5", (decimal?)-499.90625, (decimal?)-16.4375, (decimal?)-332.5625, (int)100 )); + AllOfThem.Add(new Nebula( 30070, Nebula.NebulaType.Real, "Little Dumbbell Nebula", 18, true, "GCRV 950", (decimal?)-1560.71875, (decimal?)-382.71875, (decimal?)-1351.9375, (int)100 )); + AllOfThem.Add(new Nebula( 30071, Nebula.NebulaType.Real, "Little Gem Nebula", 18, true, "BD-14 5523", (decimal?)-2493.96875, (decimal?)-1844.15625, (decimal?)5136.0625, (int)100 )); + AllOfThem.Add(new Nebula( 30072, Nebula.NebulaType.Real, "Little Ghost Nebula", 18, true, "CD-23 13397", (decimal?)-204.125, (decimal?)503.65625, (decimal?)4869.75, (int)100 )); + AllOfThem.Add(new Nebula( 30073, Nebula.NebulaType.Real, "Lupus Dark Region", 18, false, "Lupus Dark Region B Sector IH-V c2-3", (decimal?)157.21875, (decimal?)129.6875, (decimal?)416.8125, (int)100 )); + AllOfThem.Add(new Nebula( 30074, Nebula.NebulaType.Real, "Lupus Dark Region B", 18, false, "Lupus Dark Region B Sector PD-S b4-4", (decimal?)165.75, (decimal?)79.90625, (decimal?)424.34375, (int)100 )); + AllOfThem.Add(new Nebula( 30075, Nebula.NebulaType.Real, "Messier 78", 18, false, "Trapezium Sector CB-W c2-3", (decimal?)538.53125, (decimal?)-321.5, (decimal?)-1139.25, (int)100 )); + AllOfThem.Add(new Nebula( 30077, Nebula.NebulaType.Real, "Musca Dark Region", 18, false, "Musca Dark Region HW-W c1-15", (decimal?)420.71875, (decimal?)-71.96875, (decimal?)244.25, (int)100 )); + AllOfThem.Add(new Nebula( 30078, Nebula.NebulaType.Real, "NGC 1333", 18, false, "NGC 1333 Sector FB-X c1-4", (decimal?)-382.15625, (decimal?)-383.4375, (decimal?)-958.28125, (int)100 )); + AllOfThem.Add(new Nebula( 30079, Nebula.NebulaType.Real, "NGC 1360", 18, true, "CD-26 1339", (decimal?)437.21875, (decimal?)-925.15625, (decimal?)-513.78125, (int)100 )); + AllOfThem.Add(new Nebula( 30082, Nebula.NebulaType.Real, "NGC 1514", 18, true, "BD+30 623", (decimal?)-202.25, (decimal?)-218.6875, (decimal?)-807.40625, (int)100 )); + AllOfThem.Add(new Nebula( 30085, Nebula.NebulaType.Real, "NGC 1999", 18, true, "V380 Orionis", (decimal?)549.34375, (decimal?)-374.53125, (decimal?)-926.59375, (int)100 )); + AllOfThem.Add(new Nebula( 30088, Nebula.NebulaType.Real, "NGC 2392", 18, true, "GCRV 4981", (decimal?)234.625, (decimal?)239.21875, (decimal?)-726.46875, (int)100 )); + AllOfThem.Add(new Nebula( 30101, Nebula.NebulaType.Real, "NGC 4361", 18, true, "BD-17 3614", null, null, null, (int)100 )); + AllOfThem.Add(new Nebula( 30104, Nebula.NebulaType.Real, "NGC 5367", 18, false, "NGC 5367 Sector RY-R b4-0", (decimal?)1348.46875, (decimal?)751.34375, (decimal?)1418.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30108, Nebula.NebulaType.Real, "NGC 6058", 18, true, "Csi+40-16027", (decimal?)-5472.96875, (decimal?)6794.40625, (decimal?)2587.03125, (int)100 )); + AllOfThem.Add(new Nebula( 30109, Nebula.NebulaType.Real, "NGC 6153", 18, true, "CD-39 10464", (decimal?)1670.1875, (decimal?)508.15625, (decimal?)5110, (int)100 )); + AllOfThem.Add(new Nebula( 30110, Nebula.NebulaType.Real, "NGC 6188", 18, false, "NGC 6188 Sector LC-V c2-28", (decimal?)1706.1875, (decimal?)-87.625, (decimal?)4057.15625, (int)600 )); + AllOfThem.Add(new Nebula( 30111, Nebula.NebulaType.Real, "NGC 6210", 18, true, "BD+24 3048", (decimal?)-2861.4375, (decimal?)3248.40625, (decimal?)3057.78125, (int)100 )); + AllOfThem.Add(new Nebula( 30113, Nebula.NebulaType.Real, "NGC 6337", 18, true, "Hen 2-215", (decimal?)901.1875, (decimal?)-94.09375, (decimal?)4815.46875, (int)100 )); + AllOfThem.Add(new Nebula( 30114, Nebula.NebulaType.Real, "NGC 6357", 18, false, "CL Pismis 16", (decimal?)965.1875, (decimal?)142.28125, (decimal?)8094.40625, (int)100 )); + AllOfThem.Add(new Nebula( 30115, Nebula.NebulaType.Real, "NGC 6445", 18, true, "CSI-20-17462", (decimal?)-632.59375, (decimal?)306.0625, (decimal?)4444.78125, (int)100 )); + AllOfThem.Add(new Nebula( 30116, Nebula.NebulaType.Real, "NGC 6563", 18, true, "CD-33 12935", (decimal?)80.46875, (decimal?)-393.90625, (decimal?)3073.8125, (int)100 )); + AllOfThem.Add(new Nebula( 30117, Nebula.NebulaType.Real, "NGC 6565", 18, true, "CD-28 14266", (decimal?)-359.03125, (decimal?)-473.1875, (decimal?)5870, (int)100 )); + AllOfThem.Add(new Nebula( 30118, Nebula.NebulaType.Real, "NGC 6567", 18, true, "CSI-19-18107", (decimal?)-851.65625, (decimal?)-51.3125, (decimal?)4112.40625, (int)100 )); + AllOfThem.Add(new Nebula( 30119, Nebula.NebulaType.Real, "NGC 6572", 18, true, "BD+06 3649", (decimal?)-4334, (decimal?)1608.375, (decimal?)6282.46875, (int)100 )); + AllOfThem.Add(new Nebula( 30120, Nebula.NebulaType.Real, "NGC 6629", 18, true, "CD-23 14350", (decimal?)-1041.15625, (decimal?)-568.9375, (decimal?)6289.0625, (int)100 )); + AllOfThem.Add(new Nebula( 30122, Nebula.NebulaType.Real, "NGC 6751", 18, true, "CSI-06-19031", (decimal?)-3105.78125, (decimal?)-657.875, (decimal?)5557.09375, (int)100 )); + AllOfThem.Add(new Nebula( 30123, Nebula.NebulaType.Real, "NGC 6781", 18, true, "IRAS 19160+0626", (decimal?)-3394.6875, (decimal?)-266.9375, (decimal?)3796.6875, (int)100 )); + AllOfThem.Add(new Nebula( 30124, Nebula.NebulaType.Real, "NGC 6790", 18, true, "BD+01 3979", (decimal?)-2014.90625, (decimal?)-362.125, (decimal?)2588.25, (int)100 )); + AllOfThem.Add(new Nebula( 30125, Nebula.NebulaType.Real, "NGC 6803", 18, true, "Csi+09-19289", (decimal?)-4117.21875, (decimal?)-407.5625, (decimal?)3920.75, (int)100 )); + AllOfThem.Add(new Nebula( 30126, Nebula.NebulaType.Real, "NGC 6804", 18, true, "Csi+09-19291", (decimal?)-3573.03125, (decimal?)-401, (decimal?)3474.59375, (int)100 )); + AllOfThem.Add(new Nebula( 30127, Nebula.NebulaType.Real, "NGC 6820", 18, false, "NGC 6820 Sector PD-S b4-3", (decimal?)-5577.25, (decimal?)-10.0625, (decimal?)3341.15625, (int)100 )); + AllOfThem.Add(new Nebula( 30128, Nebula.NebulaType.Real, "NGC 6842", 18, true, "Csi+29-19529", (decimal?)-5476.71875, (decimal?)62.8125, (decimal?)2449.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30129, Nebula.NebulaType.Real, "NGC 6852", 18, true, "IRAS 19581+0135", (decimal?)-3276.59375, (decimal?)-1251.90625, (decimal?)3563.25, (int)100 )); + AllOfThem.Add(new Nebula( 30131, Nebula.NebulaType.Real, "NGC 6884", 18, true, "Csi+46-20087", (decimal?)-2457.3125, (decimal?)309, (decimal?)340.96875, (int)100 )); + AllOfThem.Add(new Nebula( 30132, Nebula.NebulaType.Real, "NGC 6886", 18, true, "Csi+19-20105", (decimal?)-7731.75, (decimal?)-1205.90625, (decimal?)4445.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30133, Nebula.NebulaType.Real, "NGC 6891", 18, true, "BD+12 4266", (decimal?)-6740.90625, (decimal?)-1781.78125, (decimal?)4861.65625, (int)100 )); + AllOfThem.Add(new Nebula( 30134, Nebula.NebulaType.Real, "NGC 7026", 18, true, "Csi+47-21046", (decimal?)-5998.96875, (decimal?)41.875, (decimal?)104.6875, (int)100 )); + AllOfThem.Add(new Nebula( 30135, Nebula.NebulaType.Real, "NGC 7027", 18, true, "BD+41 4004", (decimal?)-3380.25, (decimal?)-207.59375, (decimal?)301.65625, (int)100 )); + AllOfThem.Add(new Nebula( 30136, Nebula.NebulaType.Real, "NGC 7048", 18, true, "IRAS 21124+4604", (decimal?)-5596.3125, (decimal?)-166.15625, (decimal?)117.21875, (int)100 )); + AllOfThem.Add(new Nebula( 30140, Nebula.NebulaType.Real, "North America Nebula", 18, false, "North America Sector LC-V c2-4", (decimal?)-1894.4375, (decimal?)-28.09375, (decimal?)147.5625, (int)100 )); + AllOfThem.Add(new Nebula( 30141, Nebula.NebulaType.Real, "Omega Nebula", 18, false, "Omega Sector PD-S b4-0", (decimal?)-1432.0625, (decimal?)-75.46875, (decimal?)5308.125, (int)100 )); + AllOfThem.Add(new Nebula( 30142, Nebula.NebulaType.Real, "Ophiuchus Dark Region", 18, false, "IC 4604 Sector EG-X b1-0", (decimal?)39.21875, (decimal?)156.9375, (decimal?)498.5, (int)100 )); + AllOfThem.Add(new Nebula( 30143, Nebula.NebulaType.Real, "Ophiuchus Dark Region B", 18, false, "Ophiuchus Dark Region B Sector PD-S b4-2", (decimal?)-44.40625, (decimal?)170, (decimal?)487.625, (int)100 )); + AllOfThem.Add(new Nebula( 30144, Nebula.NebulaType.Real, "Ophiuchus Dark Region C", 18, false, "Pipe (Stem) Sector IH-V c2-7", (decimal?)-11, (decimal?)68.59375, (decimal?)516.65625, (int)100 )); + AllOfThem.Add(new Nebula( 30145, Nebula.NebulaType.Real, "Orion Dark Region", 18, false, "Orion Dark Region KC-V c2-0", (decimal?)603.3125, (decimal?)-312.15625, (decimal?)-1337.6875, (int)100 )); + AllOfThem.Add(new Nebula( 30146, Nebula.NebulaType.Real, "Orion Nebula", 18, false, "V2338 Orionis", (decimal?)593.125, (decimal?)-430.25, (decimal?)-1073.5, (int)100 )); + AllOfThem.Add(new Nebula( 30147, Nebula.NebulaType.Real, "Owl Nebula", 18, true, "GCRV 6897", (decimal?)-624.40625, (decimal?)1847.15625, (decimal?)-1018.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30148, Nebula.NebulaType.Real, "Parrot's Head", 18, false, "Parrot's Head Sector FB-X c1-2", (decimal?)22.6875, (decimal?)-87.84375, (decimal?)989.75, (int)100 )); + AllOfThem.Add(new Nebula( 30149, Nebula.NebulaType.Real, "Pelican Nebula", 18, false, "North America Sector TZ-O b6-4", (decimal?)-1886.875, (decimal?)5.40625, (decimal?)176.3125, (int)100 )); + AllOfThem.Add(new Nebula( 30150, Nebula.NebulaType.Real, "Pencil Nebula", 18, false, "Pencil Sector EL-Y d5", (decimal?)816.3125, (decimal?)2, (decimal?)-44.03125, (int)100 )); + AllOfThem.Add(new Nebula( 30151, Nebula.NebulaType.Real, "Perseus Dark Region", 18, false, "Perseus Dark Region KC-V c2-2", (decimal?)-368.03125, (decimal?)-321.6875, (decimal?)-1047.625, (int)100 )); + AllOfThem.Add(new Nebula( 30152, Nebula.NebulaType.Real, "Phantom Streak", 18, true, "BD-00 3630", (decimal?)-3611.9375, (decimal?)-306.21875, (decimal?)5395.375, (int)100 )); + AllOfThem.Add(new Nebula( 30153, Nebula.NebulaType.Real, "Pipe (Bowl)", 18, false, "Pipe (Stem) Sector OD-S b4-4", (decimal?)-6.25, (decimal?)37.15625, (decimal?)497.59375, (int)100 )); + AllOfThem.Add(new Nebula( 30154, Nebula.NebulaType.Real, "Pipe (Stem)", 18, false, "Pipe (Stem) Sector GW-W c1-25", (decimal?)8.375, (decimal?)51.625, (decimal?)490.15625, (int)100 )); + AllOfThem.Add(new Nebula( 30155, Nebula.NebulaType.Real, "Pleiades", 18, false, "Maia", (decimal?)-81.78125, (decimal?)-149.4375, (decimal?)-343.375, (int)100 )); + AllOfThem.Add(new Nebula( 30156, Nebula.NebulaType.Real, "Puppis Dark Region", 18, false, "Puppis Dark Region DL-Y d24", (decimal?)1438.8125, (decimal?)-286.3125, (decimal?)-310.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30157, Nebula.NebulaType.Real, "Puppis Dark Region B", 18, false, "Puppis Dark Region B Sector PD-S b4-8", (decimal?)1348.75, (decimal?)-0.90625, (decimal?)-360.75, (int)100 )); + AllOfThem.Add(new Nebula( 30158, Nebula.NebulaType.Real, "R Cra", 18, true, "BrsO 14", (decimal?)0, (decimal?)-128.40625, (decimal?)399.875, (int)100 )); + AllOfThem.Add(new Nebula( 30159, Nebula.NebulaType.Real, "Red Spider Nebula", 18, true, "Red Spider Sector UJ-Q b5-0", (decimal?)-524.5625, (decimal?)40.0625, (decimal?)2957.53125, (int)100 )); + AllOfThem.Add(new Nebula( 30160, Nebula.NebulaType.Real, "Retina Nebula", 18, true, "CD-43 9005", (decimal?)1867.96875, (decimal?)811.78125, (decimal?)2202.625, (int)100 )); + AllOfThem.Add(new Nebula( 30161, Nebula.NebulaType.Real, "Rho Ophiuchi", 18, false, "HIP 80126", (decimal?)55.46875, (decimal?)148.9375, (decimal?)464.75, (int)100 )); + AllOfThem.Add(new Nebula( 30162, Nebula.NebulaType.Real, "Ring Nebula", 18, false, "Ring Sector NI-S b4-0", (decimal?)-1984.59375, (decimal?)556.375, (decimal?)999.875, (int)100 )); + AllOfThem.Add(new Nebula( 30164, Nebula.NebulaType.Real, "Running Man Nebula", 18, false, "Running Man Sector CQ-Y d14", (decimal?)586.09375, (decimal?)-422.09375, (decimal?)-1080.78125, (int)100 )); + AllOfThem.Add(new Nebula( 30165, Nebula.NebulaType.Real, "Sadr Region", 18, true, "Sadr", (decimal?)-1794.6875, (decimal?)53.6875, (decimal?)365.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30166, Nebula.NebulaType.Real, "Saturn Nebula", 18, true, "BD-11 5511", (decimal?)-2623.4375, (decimal?)-2952.8125, (decimal?)3382.09375, (int)100 )); + AllOfThem.Add(new Nebula( 30167, Nebula.NebulaType.Real, "Scorpius Dark Region", 18, false, "Scorpius Dark Region PD-S b4-2", (decimal?)106.21875, (decimal?)4.28125, (decimal?)480.21875, (int)100 )); + AllOfThem.Add(new Nebula( 30168, Nebula.NebulaType.Real, "Scutum Dark Region", 18, false, "Scutum Dark Region KC-V c2-23", (decimal?)-272.0625, (decimal?)10.90625, (decimal?)594.03125, (int)100 )); + AllOfThem.Add(new Nebula( 30171, Nebula.NebulaType.Real, "Skull Nebula", 18, false, "Skull Sector GW-W d1-0", (decimal?)-370.1875, (decimal?)-1537.90625, (decimal?)-181.71875, (int)100 )); + AllOfThem.Add(new Nebula( 30172, Nebula.NebulaType.Real, "Snake", 18, false, "Snake Sector PD-S b4-6", (decimal?)-17.5, (decimal?)74.6875, (decimal?)599.0625, (int)100 )); + AllOfThem.Add(new Nebula( 30174, Nebula.NebulaType.Real, "Spiral Planetary Nebula", 18, true, "KN Muscae", (decimal?)1415.3125, (decimal?)-105.59375, (decimal?)1074.28125, (int)100 )); + AllOfThem.Add(new Nebula( 30175, Nebula.NebulaType.Real, "Spirograph Nebula", 18, true, "BD-12 1172", (decimal?)577.875, (decimal?)-452.6875, (decimal?)-819.25, (int)100 )); + AllOfThem.Add(new Nebula( 30177, Nebula.NebulaType.Real, "Struve's Lost Nebula", 18, false, "Hind Sector FS-J b9-1", (decimal?)-35.3125, (decimal?)-179.6875, (decimal?)-463.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30178, Nebula.NebulaType.Real, "Taurus Dark Region", 18, false, "Taurus Dark Region BQ-Y d49", (decimal?)-71.8125, (decimal?)-99.5, (decimal?)-450.3125, (int)100 )); + AllOfThem.Add(new Nebula( 30180, Nebula.NebulaType.Real, "Trifid Nebula", 18, false, "Trifid Sector DH-K a9-5", (decimal?)-635.75, (decimal?)-25.59375, (decimal?)5163.5, (int)100 )); + AllOfThem.Add(new Nebula( 30182, Nebula.NebulaType.Real, "Veil Nebula East", 18, false, "Veil East Sector RO-Q b5-2", (decimal?)-1914.46875, (decimal?)-301.84375, (decimal?)496.8125, (int)75 )); + AllOfThem.Add(new Nebula( 30183, Nebula.NebulaType.Real, "Veil Nebula West", 18, false, "Veil West Sector DL-Y d68", (decimal?)-1398.25, (decimal?)-193.5625, (decimal?)418.90625, (int)75 )); + AllOfThem.Add(new Nebula( 30184, Nebula.NebulaType.Real, "Vela Dark Region", 18, false, "Vela Dark Region LC-V c2-29", (decimal?)991.0625, (decimal?)-123.53125, (decimal?)-48.96875, (int)100 )); + AllOfThem.Add(new Nebula( 30185, Nebula.NebulaType.Real, "Vulpecula Dark Region", 18, false, "Vulpecula Dark Region EL-Y d131", (decimal?)-543.03125, (decimal?)42.84375, (decimal?)352, (int)100 )); + AllOfThem.Add(new Nebula( 30186, Nebula.NebulaType.Real, "White Eyed Pea", 18, true, "BD+12 2966", (decimal?)-3882.09375, (decimal?)7841.03125, (decimal?)8212.625, (int)100 )); + AllOfThem.Add(new Nebula( 30187, Nebula.NebulaType.Real, "Witch Head Nebula", 18, false, "Witch Head Sector RY-R b4-0", (decimal?)365.0625, (decimal?)-413.8125, (decimal?)-711.1875, (int)100 )); + } + public static void init_Region_19() { + AllOfThem.Add(new Nebula( 10159, Nebula.NebulaType.Standard, "Pueliae AA-A h0", 19, true, "Pueliae IT-H d10-1", (decimal?)18026.15625, (decimal?)468.375, (decimal?)13907.5625, (int)100 )); + AllOfThem.Add(new Nebula( 20277, Nebula.NebulaType.Planetary, "Blaea Aip NX-U e2-3", 19, true, "Blaea Aip NX-U e2-3", (decimal?)24790.9375, (decimal?)182.59375, (decimal?)14811.875, (int)10 )); + AllOfThem.Add(new Nebula( 20517, Nebula.NebulaType.Planetary, "Byooe Aec DL-Y e7", 19, true, "Byooe Aec DL-Y e7", (decimal?)23247.03125, (decimal?)173.71875, (decimal?)13251.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20518, Nebula.NebulaType.Planetary, "Byooe Euq HW-N e6-0", 19, true, "Byooe Euq HW-N e6-0", (decimal?)16432.5625, (decimal?)159.125, (decimal?)6484.6875, (int)10 )); + AllOfThem.Add(new Nebula( 20772, Nebula.NebulaType.Planetary, "Cralou RZ-O e6-1", 19, true, "Cralou RZ-O e6-1", (decimal?)19725.03125, (decimal?)-87.5, (decimal?)6519.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22454, Nebula.NebulaType.Planetary, "Greou Hypai XU-O e6-0", 19, true, "Greou Hypai XU-O e6-0", (decimal?)24108.375, (decimal?)-329.28125, (decimal?)14150.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22462, Nebula.NebulaType.Planetary, "Gru Dryou AP-A e3", 19, true, "Gru Dryou AP-A e3", (decimal?)6111.3125, (decimal?)-697.5, (decimal?)5402.1875, (int)10 )); + AllOfThem.Add(new Nebula( 24212, Nebula.NebulaType.Planetary, "Pleia Aewsy WJ-A e9", 19, true, "Pleia Aewsy WJ-A e9", (decimal?)15329.4375, (decimal?)401.40625, (decimal?)6753.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24257, Nebula.NebulaType.Planetary, "Priemoe TT-R e4-3", 19, true, "Priemoe TT-R e4-3", (decimal?)7219.84375, (decimal?)462.40625, (decimal?)8816.625, (int)10 )); + AllOfThem.Add(new Nebula( 24275, Nebula.NebulaType.Planetary, "Prungoa EF-A e5", 19, true, "Prungoa EF-A e5", (decimal?)16290.71875, (decimal?)231.34375, (decimal?)7937.3125, (int)10 )); + AllOfThem.Add(new Nebula( 24296, Nebula.NebulaType.Planetary, "Pyroifooe UO-Z e34", 19, true, "Pyroifooe UO-Z e34", (decimal?)10841.0625, (decimal?)-108.34375, (decimal?)5600.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25002, Nebula.NebulaType.Planetary, "Thaile HW-V e2-7", 19, true, "Thaile HW-V e2-7", (decimal?)10124.09375, (decimal?)-339.15625, (decimal?)4641.09375, (int)10 )); + AllOfThem.Add(new Nebula( 25017, Nebula.NebulaType.Planetary, "Trailua PN-T e3-4", 19, true, "Trailua PN-T e3-4", (decimal?)9697.40625, (decimal?)464.1875, (decimal?)4800.8125, (int)10 )); + AllOfThem.Add(new Nebula( 30050, Nebula.NebulaType.Real, "IC 2553", 19, true, "GCRV 6432", (decimal?)12855.3125, (decimal?)-1261.0625, (decimal?)3565.09375, (int)100 )); + AllOfThem.Add(new Nebula( 30051, Nebula.NebulaType.Real, "IC 2621", 19, true, "GCRV 6807", (decimal?)14360.96875, (decimal?)-1297.03125, (decimal?)5685.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30053, Nebula.NebulaType.Real, "IC 4191", 19, true, "GCRV 7815", (decimal?)11811.5625, (decimal?)-1204.96875, (decimal?)8148.25, (int)100 )); + AllOfThem.Add(new Nebula( 30102, Nebula.NebulaType.Real, "NGC 5307", 19, true, "CD-50 8073", (decimal?)5879.40625, (decimal?)1490, (decimal?)5368.625, (int)100 )); + AllOfThem.Add(new Nebula( 30103, Nebula.NebulaType.Real, "NGC 5315", 19, true, "CPD-65 2513", (decimal?)6499.5625, (decimal?)-644.46875, (decimal?)5282.0625, (int)100 )); + AllOfThem.Add(new Nebula( 30106, Nebula.NebulaType.Real, "NGC 5882", 19, true, "CD-45 9789", (decimal?)4616.625, (decimal?)1543.21875, (decimal?)7331.09375, (int)100 )); + AllOfThem.Add(new Nebula( 30107, Nebula.NebulaType.Real, "NGC 5979", 19, true, "CSI-61-15434", (decimal?)5443, (decimal?)-831.34375, (decimal?)7119.15625, (int)100 )); + } + public static void init_Region_20() { + AllOfThem.Add(new Nebula( 10160, Nebula.NebulaType.Standard, "Eock Prau AA-A h31", 20, true, "Eock Prau WD-T d3-6", (decimal?)26237.75, (decimal?)-1163.28125, (decimal?)19745.75, (int)100 )); + AllOfThem.Add(new Nebula( 21339, Nebula.NebulaType.Planetary, "Dryua Prau UZ-O e6-1", 20, true, "Dryua Prau UZ-O e6-1", (decimal?)25262.0625, (decimal?)-131.4375, (decimal?)21895.03125, (int)10 )); + AllOfThem.Add(new Nebula( 23566, Nebula.NebulaType.Planetary, "Oob Chruia EF-A e6", 20, true, "Oob Chruia EF-A e6", (decimal?)27912.25, (decimal?)274.6875, (decimal?)27222.5, (int)10 )); + AllOfThem.Add(new Nebula( 23959, Nebula.NebulaType.Planetary, "Phreia Ploe PT-Q e5-28", 20, true, "Phreia Ploe PT-Q e5-28", (decimal?)26445.53125, (decimal?)-143.96875, (decimal?)24250.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24145, Nebula.NebulaType.Planetary, "Phrooe Flyao WZ-Y e0", 20, true, "Phrooe Flyao WZ-Y e0", (decimal?)28124.25, (decimal?)-660.59375, (decimal?)23415.25, (int)10 )); + } + public static void init_Region_21() { + AllOfThem.Add(new Nebula( 20455, Nebula.NebulaType.Planetary, "Braiso RO-Z e5", 21, true, "Braiso RO-Z e5", (decimal?)27024.25, (decimal?)-79.09375, (decimal?)31208.71875, (int)10 )); + AllOfThem.Add(new Nebula( 22886, Nebula.NebulaType.Planetary, "Joori XO-A e0", 21, true, "Joori XO-A e0", (decimal?)24762.9375, (decimal?)468.09375, (decimal?)38641.03125, (int)10 )); + AllOfThem.Add(new Nebula( 24152, Nebula.NebulaType.Planetary, "Phrua Byoea RE-Q e5-0", 21, true, "Phrua Byoea RE-Q e5-0", (decimal?)24439.125, (decimal?)-656.40625, (decimal?)37033.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24700, Nebula.NebulaType.Planetary, "Spasau YU-X e1-13", 21, true, "Spasau YU-X e1-13", (decimal?)27552.125, (decimal?)-134.8125, (decimal?)32575.84375, (int)10 )); + } + public static void init_Region_22() { + AllOfThem.Add(new Nebula( 25022, Nebula.NebulaType.Planetary, "Tyroersts NS-U e2-2", 22, true, "Tyroersts NS-U e2-2", (decimal?)23211.53125, (decimal?)27.9375, (decimal?)50622.21875, (int)10 )); + } + public static void init_Region_23() { + AllOfThem.Add(new Nebula( 24898, Nebula.NebulaType.Planetary, "Syrivu GG-X e1-0", 23, true, "Syrivu GG-X e1-0", (decimal?)16276.21875, (decimal?)619.71875, (decimal?)54315.75, (int)10 )); + } + public static void init_Region_24() { + AllOfThem.Add(new Nebula( 20189, Nebula.NebulaType.Planetary, "Auphails QI-B e12", 24, true, "Auphails QI-B e12", (decimal?)3264.375, (decimal?)-119, (decimal?)50292.84375, (int)10 )); + AllOfThem.Add(new Nebula( 20190, Nebula.NebulaType.Planetary, "Auphairks AF-Z e2", 24, true, "Auphairks AF-Z e2", (decimal?)7407.03125, (decimal?)-488.875, (decimal?)50356.5, (int)10 )); + AllOfThem.Add(new Nebula( 20285, Nebula.NebulaType.Planetary, "Blau Chrea CG-O e6-3", 24, true, "Blau Chrea CG-O e6-3", (decimal?)-5376.75, (decimal?)473.21875, (decimal?)53972.5625, (int)10 )); + AllOfThem.Add(new Nebula( 20304, Nebula.NebulaType.Planetary, "Blo Chroa UE-R e4-18", 24, true, "Blo Chroa UE-R e4-18", (decimal?)5165.375, (decimal?)65.75, (decimal?)53585.9375, (int)10 )); + AllOfThem.Add(new Nebula( 20305, Nebula.NebulaType.Planetary, "Blo Chroa ZE-R e4-6", 24, true, "Blo Chroa ZE-R e4-6", (decimal?)5966.34375, (decimal?)78.46875, (decimal?)53517.5, (int)10 )); + AllOfThem.Add(new Nebula( 20650, Nebula.NebulaType.Planetary, "Byua Chraei TD-T e3-10", 24, true, "Byua Chraei TD-T e3-10", (decimal?)-3091.03125, (decimal?)208.21875, (decimal?)54749.3125, (int)10 )); + AllOfThem.Add(new Nebula( 20787, Nebula.NebulaType.Planetary, "Drootie KC-V e2-2", 24, true, "Drootie KC-V e2-2", (decimal?)-1022.125, (decimal?)-967.78125, (decimal?)51928.53125, (int)10 )); + AllOfThem.Add(new Nebula( 22374, Nebula.NebulaType.Planetary, "Flyua Byio PI-B e16", 24, true, "Flyua Byio PI-B e16", (decimal?)1704.03125, (decimal?)-141.125, (decimal?)50153.625, (int)10 )); + AllOfThem.Add(new Nebula( 22375, Nebula.NebulaType.Planetary, "Flyua Byio TI-B e21", 24, true, "Flyua Byio TI-B e21", (decimal?)2407.625, (decimal?)-69.25, (decimal?)50187.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24248, Nebula.NebulaType.Planetary, "Preia Blou LT-Q e5-0", 24, true, "Preia Blou LT-Q e5-0", (decimal?)-7580.21875, (decimal?)-167.1875, (decimal?)49842.9375, (int)10 )); + AllOfThem.Add(new Nebula( 24249, Nebula.NebulaType.Planetary, "Preia Byoea VU-X e1-42", 24, true, "Preia Byoea VU-X e1-42", (decimal?)5278.1875, (decimal?)-98.625, (decimal?)51740.6875, (int)10 )); + AllOfThem.Add(new Nebula( 24260, Nebula.NebulaType.Planetary, "Pro Broae HR-N e6-21", 24, true, "Pro Broae HR-N e6-21", (decimal?)2085.875, (decimal?)32, (decimal?)52560.21875, (int)10 )); + AllOfThem.Add(new Nebula( 24265, Nebula.NebulaType.Planetary, "Pru Bre PM-W e1-11", 24, true, "Pru Bre PM-W e1-11", (decimal?)-2719.8125, (decimal?)31.6875, (decimal?)51799.84375, (int)10 )); + AllOfThem.Add(new Nebula( 24295, Nebula.NebulaType.Planetary, "Pyrivo HW-V e2-8", 24, true, "Pyrivo HW-V e2-8", (decimal?)-1498.25, (decimal?)-285.78125, (decimal?)54503, (int)10 )); + AllOfThem.Add(new Nebula( 24896, Nebula.NebulaType.Planetary, "Syriveia IL-Y e4", 24, true, "Syriveia IL-Y e4", (decimal?)-5392.84375, (decimal?)283.09375, (decimal?)54215.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25014, Nebula.NebulaType.Planetary, "Thuecheae MT-Q e5-8", 24, true, "Thuecheae MT-Q e5-8", (decimal?)-2270.5, (decimal?)-62.9375, (decimal?)53714.3125, (int)10 )); + AllOfThem.Add(new Nebula( 25019, Nebula.NebulaType.Planetary, "Truecha ZK-P e5-25", 24, true, "Truecha ZK-P e5-25", (decimal?)-7584.78125, (decimal?)-2.0625, (decimal?)53765.46875, (int)10 )); + AllOfThem.Add(new Nebula( 25020, Nebula.NebulaType.Planetary, "Trueche ZO-A e3", 24, true, "Trueche ZO-A e3", (decimal?)-3028.21875, (decimal?)485, (decimal?)52758.46875, (int)10 )); + } + public static void init_Region_25() { + AllOfThem.Add(new Nebula( 10161, Nebula.NebulaType.Standard, "Thueche AA-A h16", 25, true, "Thueche LS-A d1-54", (decimal?)-13538.625, (decimal?)-253.15625, (decimal?)52795.25, (int)100 )); + AllOfThem.Add(new Nebula( 24897, Nebula.NebulaType.Planetary, "Syrivoea XE-R e4-28", 25, true, "Syrivoea XE-R e4-28", (decimal?)-11071.03125, (decimal?)54.9375, (decimal?)54830.53125, (int)10 )); + AllOfThem.Add(new Nebula( 25015, Nebula.NebulaType.Planetary, "Thuechoo VY-A e1", 25, true, "Thuechoo VY-A e1", (decimal?)-18454, (decimal?)-401.40625, (decimal?)52775.21875, (int)10 )); + } + public static void init_Region_26() { + AllOfThem.Add(new Nebula( 22373, Nebula.NebulaType.Planetary, "Flyoo Groa SO-Z e0", 26, true, "Flyoo Groa SO-Z e0", (decimal?)-26482.4375, (decimal?)-78.78125, (decimal?)50335.125, (int)10 )); + } + public static void init_Region_27() { + AllOfThem.Add(new Nebula( 20852, Nebula.NebulaType.Planetary, "Dryaa Proae IH-U e3-9", 27, true, "Dryaa Proae IH-U e3-9", (decimal?)-32304.53125, (decimal?)-104.125, (decimal?)21352.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22247, Nebula.NebulaType.Planetary, "Eos Brai KR-W e1-4", 27, true, "Eos Brai KR-W e1-4", (decimal?)-30002.125, (decimal?)171.3125, (decimal?)30002.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22485, Nebula.NebulaType.Planetary, "Hypao Chraea RY-S e3-18", 27, true, "Hypao Chraea RY-S e3-18", (decimal?)-27945.71875, (decimal?)63.96875, (decimal?)32890.15625, (int)10 )); + AllOfThem.Add(new Nebula( 22493, Nebula.NebulaType.Planetary, "Hypi Chria KM-W e1-6", 27, true, "Hypi Chria KM-W e1-6", (decimal?)-26580.40625, (decimal?)82.03125, (decimal?)32561.03125, (int)10 )); + AllOfThem.Add(new Nebula( 22691, Nebula.NebulaType.Planetary, "Hypoea Ble VZ-O e6-1", 27, true, "Hypoea Ble VZ-O e6-1", (decimal?)-25823.0625, (decimal?)-164.59375, (decimal?)33361.09375, (int)10 )); + AllOfThem.Add(new Nebula( 22887, Nebula.NebulaType.Planetary, "Juemao DA-Z e0", 27, true, "Juemao DA-Z e0", (decimal?)-28289.4375, (decimal?)-654.75, (decimal?)25984.1875, (int)10 )); + AllOfThem.Add(new Nebula( 23909, Nebula.NebulaType.Planetary, "Phraa Bloae IX-T e3-0", 27, true, "Phraa Bloae IX-T e3-0", (decimal?)-30306.03125, (decimal?)-354.90625, (decimal?)34175.78125, (int)10 )); + AllOfThem.Add(new Nebula( 25101, Nebula.NebulaType.Planetary, "Vequia XE-R e4-10", 27, true, "Vequia XE-R e4-10", (decimal?)-26349.15625, (decimal?)104.9375, (decimal?)36889, (int)10 )); + } + public static void init_Region_28() { + + } + public static void init_Region_29() { + + } + public static void init_Region_30() { + AllOfThem.Add(new Nebula( 21562, Nebula.NebulaType.Planetary, "Eephaidst SU-O e6-14", 30, true, "Eephaidst SU-O e6-14", (decimal?)-22675.59375, (decimal?)-300.03125, (decimal?)18122.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21889, Nebula.NebulaType.Planetary, "Eol Gruia MX-T e3-14", 30, true, "Eol Gruia MX-T e3-14", (decimal?)-22063.375, (decimal?)-442.0625, (decimal?)30390.78125, (int)10 )); + AllOfThem.Add(new Nebula( 22082, Nebula.NebulaType.Planetary, "Eorgh Priae TZ-O e6-11", 30, true, "Eorgh Priae TZ-O e6-11", (decimal?)-20917.1875, (decimal?)-149.8125, (decimal?)20596.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22613, Nebula.NebulaType.Planetary, "Hypo Fruia AL-P e5-19", 30, true, "Hypo Fruia AL-P e5-19", (decimal?)-22678.875, (decimal?)51.71875, (decimal?)25554.28125, (int)10 )); + AllOfThem.Add(new Nebula( 22693, Nebula.NebulaType.Planetary, "Hypoea Flyiae CW-V e2-0", 30, true, "Hypoea Flyiae CW-V e2-0", (decimal?)-26612, (decimal?)-337.28125, (decimal?)22475.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22749, Nebula.NebulaType.Planetary, "Hypua Blai HW-V e2-2", 30, true, "Hypua Blai HW-V e2-2", (decimal?)-21950.46875, (decimal?)-320.34375, (decimal?)32719.8125, (int)10 )); + AllOfThem.Add(new Nebula( 22795, Nebula.NebulaType.Planetary, "Hypuehuia VT-A e4", 30, true, "Hypuehuia VT-A e4", (decimal?)-23860.03125, (decimal?)-542.34375, (decimal?)27192.5625, (int)10 )); + AllOfThem.Add(new Nebula( 24629, Nebula.NebulaType.Planetary, "Shaulue GA-A e20", 30, true, "Shaulue GA-A e20", (decimal?)-22005.03125, (decimal?)22.28125, (decimal?)28508.625, (int)10 )); + } + public static void init_Region_31() { + AllOfThem.Add(new Nebula( 22492, Nebula.NebulaType.Planetary, "Hypau Phlai DV-Y e0", 31, true, "Hypau Phlai DV-Y e0", (decimal?)-13315.46875, (decimal?)480.375, (decimal?)-8555.5, (int)10 )); + AllOfThem.Add(new Nebula( 24749, Nebula.NebulaType.Planetary, "Spongou FA-A e2", 31, true, "Spongou FA-A e2", (decimal?)-18345.625, (decimal?)-15.46875, (decimal?)-9967.59375, (int)10 )); + AllOfThem.Add(new Nebula( 30080, Nebula.NebulaType.Real, "NGC 1491", 31, false, "NGC 1491 Sector EB-X c1-3", (decimal?)-4909.25, (decimal?)-175.34375, (decimal?)-8708.53125, (int)100 )); + } + public static void init_Region_32() { + AllOfThem.Add(new Nebula( 10162, Nebula.NebulaType.Standard, "Crooki AA-A h1", 32, true, "Crooki EV-R b35-1", (decimal?)-23057.65625, (decimal?)705.5, (decimal?)12510.0625, (int)100 )); + AllOfThem.Add(new Nebula( 10163, Nebula.NebulaType.Standard, "Floagh AA-A h56", 32, true, "Floagh JO-Z d13-0", (decimal?)-20455.5, (decimal?)-1300.1875, (decimal?)15506.5, (int)100 )); + AllOfThem.Add(new Nebula( 20300, Nebula.NebulaType.Planetary, "Blie Phlue LX-U e2-14", 32, true, "Blie Phlue LX-U e2-14", (decimal?)-21646.375, (decimal?)171.40625, (decimal?)12289.90625, (int)10 )); + AllOfThem.Add(new Nebula( 20306, Nebula.NebulaType.Planetary, "Bloo Eaeb UY-A e8", 32, true, "Bloo Eaeb UY-A e8", (decimal?)-25023.625, (decimal?)-389.75, (decimal?)14380.375, (int)10 )); + AllOfThem.Add(new Nebula( 20308, Nebula.NebulaType.Planetary, "Blooe Dryue AQ-X e1-11", 32, true, "Blooe Dryue AQ-X e1-11", (decimal?)-18593.75, (decimal?)-206.75, (decimal?)4390.625, (int)10 )); + AllOfThem.Add(new Nebula( 20489, Nebula.NebulaType.Planetary, "Bya Phla WP-P e5-8", 32, true, "Bya Phla WP-P e5-8", (decimal?)-22972.3125, (decimal?)181.96875, (decimal?)14086.34375, (int)10 )); + AllOfThem.Add(new Nebula( 21645, Nebula.NebulaType.Planetary, "Ellogy DF-A e14", 32, true, "Ellogy DF-A e14", (decimal?)-21008.59375, (decimal?)140, (decimal?)9228.21875, (int)10 )); + AllOfThem.Add(new Nebula( 22372, Nebula.NebulaType.Planetary, "Flyiedgoe XJ-A e1", 32, true, "Flyiedgoe XJ-A e1", (decimal?)-21580.09375, (decimal?)-934.6875, (decimal?)7959.84375, (int)10 )); + AllOfThem.Add(new Nebula( 22379, Nebula.NebulaType.Planetary, "Flyue Hypae OI-S e4-10", 32, true, "Flyue Hypae OI-S e4-10", (decimal?)-20709.4375, (decimal?)-317.9375, (decimal?)7481.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22384, Nebula.NebulaType.Planetary, "Fojaae IL-Y e14", 32, true, "Fojaae IL-Y e14", (decimal?)-18183.0625, (decimal?)203.875, (decimal?)3068.53125, (int)10 )); + AllOfThem.Add(new Nebula( 23283, Nebula.NebulaType.Planetary, "Lyruelks FL-P e5-41", 32, true, "Lyruelks FL-P e5-41", (decimal?)-24507.46875, (decimal?)-6.15625, (decimal?)14047.125, (int)10 )); + AllOfThem.Add(new Nebula( 24243, Nebula.NebulaType.Planetary, "Prai Hypae NX-T e3-7", 32, true, "Prai Hypae NX-T e3-7", (decimal?)-19419.71875, (decimal?)-497.9375, (decimal?)8583.53125, (int)10 )); + AllOfThem.Add(new Nebula( 24255, Nebula.NebulaType.Planetary, "Pria Phlai ON-T e3-2", 32, true, "Pria Phlai ON-T e3-2", (decimal?)-18604.5625, (decimal?)508.03125, (decimal?)8612.125, (int)10 )); + AllOfThem.Add(new Nebula( 24272, Nebula.NebulaType.Planetary, "Prue Eaeb SO-Z e31", 32, true, "Prue Eaeb SO-Z e31", (decimal?)-21398.0625, (decimal?)-143.5625, (decimal?)10703.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24292, Nebula.NebulaType.Planetary, "Pyralau IX-T e3-18", 32, true, "Pyralau IX-T e3-18", (decimal?)-20124.09375, (decimal?)-363.9375, (decimal?)6015.46875, (int)10 )); + AllOfThem.Add(new Nebula( 24774, Nebula.NebulaType.Planetary, "Stroifooe QD-S e4-0", 32, true, "Stroifooe QD-S e4-0", (decimal?)-18291.875, (decimal?)802.40625, (decimal?)6145.25, (int)10 )); + AllOfThem.Add(new Nebula( 25010, Nebula.NebulaType.Planetary, "Thraikoo PS-U e2-4", 32, true, "Thraikoo PS-U e2-4", (decimal?)-18646, (decimal?)-6.0625, (decimal?)7135.9375, (int)10 )); + AllOfThem.Add(new Nebula( 30130, Nebula.NebulaType.Real, "NGC 6879", 32, true, "CSI+16-20082", null, null, null, (int)100 )); + } + public static void init_Region_33() { + AllOfThem.Add(new Nebula( 22833, Nebula.NebulaType.Planetary, "IC 1805 Sector DQ-Y e3", 33, true, "IC 1805 Sector DQ-Y e3", (decimal?)-4337.375, (decimal?)12.3125, (decimal?)-4425.40625, (int)10 )); + AllOfThem.Add(new Nebula( 23598, Nebula.NebulaType.Planetary, "Outords HG-Y e7", 33, true, "Outords HG-Y e7", (decimal?)-12331.53125, (decimal?)57.53125, (decimal?)-2075.75, (int)10 )); + AllOfThem.Add(new Nebula( 23599, Nebula.NebulaType.Planetary, "Outotl TO-R e4-0", 33, true, "Outotl TO-R e4-0", (decimal?)-14933.0625, (decimal?)308.625, (decimal?)-1537.4375, (int)10 )); + AllOfThem.Add(new Nebula( 30009, Nebula.NebulaType.Real, "Blue Snowball Nebula", 33, true, "BD+41 4773", (decimal?)-5024.0625, (decimal?)-1663.0625, (decimal?)-1497.75, (int)100 )); + AllOfThem.Add(new Nebula( 30010, Nebula.NebulaType.Real, "Bow-Tie Nebula", 33, true, "NGC 40 star", (decimal?)-2985.96875, (decimal?)601.75, (decimal?)-1723.96875, (int)100 )); + AllOfThem.Add(new Nebula( 30012, Nebula.NebulaType.Real, "Bubble Nebula", 33, false, "Bubble Sector LX-T b3-1", (decimal?)-6568.375, (decimal?)24.6875, (decimal?)-2687.28125, (int)758 )); + AllOfThem.Add(new Nebula( 30038, Nebula.NebulaType.Real, "Heart Nebula", 33, false, "Heart Sector NS-T b3-1", (decimal?)-5319.25, (decimal?)112.34375, (decimal?)-5287.15625, (int)330 )); + AllOfThem.Add(new Nebula( 30046, Nebula.NebulaType.Real, "IC 2149", 33, true, "BD+46 1067", (decimal?)-1688.6875, (decimal?)1312.09375, (decimal?)-6875.09375, (int)100 )); + AllOfThem.Add(new Nebula( 30064, Nebula.NebulaType.Real, "IC 5217", 33, true, "Csi+50-22218", (decimal?)-9198.59375, (decimal?)-884.625, (decimal?)-1721.46875, (int)100 )); + AllOfThem.Add(new Nebula( 30069, Nebula.NebulaType.Real, "Lemon Slice Nebula", 33, true, "BD+83 357", (decimal?)-3085.375, (decimal?)2548.8125, (decimal?)-2057.6875, (int)100 )); + AllOfThem.Add(new Nebula( 30081, Nebula.NebulaType.Real, "NGC 1501", 33, true, "GCRV 2334", (decimal?)-2071.59375, (decimal?)413.75, (decimal?)-2915.03125, (int)100 )); + AllOfThem.Add(new Nebula( 30084, Nebula.NebulaType.Real, "NGC 1931", 33, false, "NGC 1931 Sector PD-S b4-0", (decimal?)-743.84375, (decimal?)37.4375, (decimal?)-6959.15625, (int)100 )); + AllOfThem.Add(new Nebula( 30093, Nebula.NebulaType.Real, "NGC 281", 33, false, "BD+55 191", (decimal?)-6660.25, (decimal?)-870.0625, (decimal?)-4345.59375, (int)100 )); + AllOfThem.Add(new Nebula( 30137, Nebula.NebulaType.Real, "NGC 7354", 33, true, "Csi+61-22385", (decimal?)-3995.75, (decimal?)168.53125, (decimal?)-1282.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30138, Nebula.NebulaType.Real, "NGC 7538", 33, false, "NGC 7538 Sector LC-V c2-17", (decimal?)-8375.84375, (decimal?)127.375, (decimal?)-3298.3125, (int)100 )); + AllOfThem.Add(new Nebula( 30139, Nebula.NebulaType.Real, "NGC 7822", 33, false, "S171 29", (decimal?)-2443.5625, (decimal?)301.4375, (decimal?)-1333.5, (int)150 )); + AllOfThem.Add(new Nebula( 30173, Nebula.NebulaType.Real, "Soul Nebula", 33, false, "Soul Sector RY-R b4-1", (decimal?)-5097.03125, (decimal?)110.53125, (decimal?)-5499.0625, (int)100 )); + } + public static void init_Region_34() { + AllOfThem.Add(new Nebula( 20784, Nebula.NebulaType.Planetary, "Cyoidai GH-U e3-3", 34, true, "Cyoidai GH-U e3-3", (decimal?)663.1875, (decimal?)-160.9375, (decimal?)-6773.4375, (int)10 )); + AllOfThem.Add(new Nebula( 21341, Nebula.NebulaType.Planetary, "Dryuae Aip DR-N e6-0", 34, true, "Dryuae Aip DR-N e6-0", (decimal?)3959.6875, (decimal?)-15.625, (decimal?)-8903.34375, (int)10 )); + AllOfThem.Add(new Nebula( 22419, Nebula.NebulaType.Planetary, "Gludge IS-T e3-0", 34, true, "Gludge IS-T e3-0", (decimal?)10193.1875, (decimal?)626.125, (decimal?)-4238.65625, (int)10 )); + AllOfThem.Add(new Nebula( 22420, Nebula.NebulaType.Planetary, "Gludgoo QN-T e3-0", 34, true, "Gludgoo QN-T e3-0", (decimal?)6136.9375, (decimal?)585.84375, (decimal?)-4252.59375, (int)10 )); + AllOfThem.Add(new Nebula( 23958, Nebula.NebulaType.Planetary, "Phreia Hypa KI-S e4-1", 34, true, "Phreia Hypa KI-S e4-1", (decimal?)13103.0625, (decimal?)-280.46875, (decimal?)-6576.8125, (int)10 )); + AllOfThem.Add(new Nebula( 24116, Nebula.NebulaType.Planetary, "Phroi Phoe RZ-O e6-3", 34, true, "Phroi Phoe RZ-O e6-3", (decimal?)-785.21875, (decimal?)-41.40625, (decimal?)-3744.78125, (int)10 )); + AllOfThem.Add(new Nebula( 24303, Nebula.NebulaType.Planetary, "Qiefoea ZU-X e1-4", 34, true, "Qiefoea ZU-X e1-4", (decimal?)5898.65625, (decimal?)-100.84375, (decimal?)-5838.75, (int)10 )); + AllOfThem.Add(new Nebula( 30014, Nebula.NebulaType.Real, "Butterfly Nebula", 34, true, "V651 Monoceros", (decimal?)1747.15625, (decimal?)188.34375, (decimal?)-2431.46875, (int)100 )); + AllOfThem.Add(new Nebula( 30023, Nebula.NebulaType.Real, "Cone Nebula", 34, false, "Cone Sector GW-W c1-5", (decimal?)854.71875, (decimal?)83.875, (decimal?)-2025.75, (int)100 )); + AllOfThem.Add(new Nebula( 30025, Nebula.NebulaType.Real, "Crab Nebula", 34, false, "Crab Pulsar", (decimal?)558.5, (decimal?)-707.40625, (decimal?)-6941.75, (int)100 )); + AllOfThem.Add(new Nebula( 30035, Nebula.NebulaType.Real, "Flaming Star Nebula", 34, false, "Flaming Star Sector GW-W c1-4", (decimal?)-233.5, (decimal?)-67.1875, (decimal?)-1681.3125, (int)100 )); + AllOfThem.Add(new Nebula( 30043, Nebula.NebulaType.Real, "Hubble's Variable", 34, true, "R Monocerotis", (decimal?)1210.3125, (decimal?)68.03125, (decimal?)-2744.1875, (int)100 )); + AllOfThem.Add(new Nebula( 30066, Nebula.NebulaType.Real, "Jellyfish Nebula", 34, false, "Jellyfish Sector BA-A e3", (decimal?)785.1875, (decimal?)251.625, (decimal?)-4922.15625, (int)100 )); + AllOfThem.Add(new Nebula( 30076, Nebula.NebulaType.Real, "Monkey Head Nebula", 34, false, "Monkey Head Sector KC-V c2-11", (decimal?)1129.25, (decimal?)43.4375, (decimal?)-6301.34375, (int)100 )); + AllOfThem.Add(new Nebula( 30083, Nebula.NebulaType.Real, "NGC 1535", 34, true, "BD-13 842", (decimal?)1422.875, (decimal?)-2733.28125, (decimal?)-2853.90625, (int)100 )); + AllOfThem.Add(new Nebula( 30087, Nebula.NebulaType.Real, "NGC 2371", 34, true, "GCRV 4925", (decimal?)661.46875, (decimal?)1497.65625, (decimal?)-4084.0625, (int)100 )); + AllOfThem.Add(new Nebula( 30089, Nebula.NebulaType.Real, "NGC 2438", 34, true, "BD-14 2129", (decimal?)2508.28125, (decimal?)228.78125, (decimal?)-1973.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30090, Nebula.NebulaType.Real, "NGC 2440", 34, true, "FAUST 1521", (decimal?)4653.625, (decimal?)238.6875, (decimal?)-3282.8125, (int)100 )); + AllOfThem.Add(new Nebula( 30091, Nebula.NebulaType.Real, "NGC 2452", 34, true, "GCRV 5190", (decimal?)9387.1875, (decimal?)-183.28125, (decimal?)-4700.78125, (int)100 )); + AllOfThem.Add(new Nebula( 30163, Nebula.NebulaType.Real, "Rosette Nebula", 34, false, "Rosette Sector PD-S b4-0", (decimal?)2348.3125, (decimal?)-168.375, (decimal?)-4753.09375, (int)130 )); + AllOfThem.Add(new Nebula( 30169, Nebula.NebulaType.Real, "Seagull Nebula", 34, false, "BD-10 1848", (decimal?)2656.375, (decimal?)-159.15625, (decimal?)-2712.625, (int)100 )); + AllOfThem.Add(new Nebula( 30170, Nebula.NebulaType.Real, "Skull and Crossbones Nebula", 34, false, "2MASS J07523444-2626347", (decimal?)13389.375, (decimal?)105.09375, (decimal?)-6765.28125, (int)100 )); + AllOfThem.Add(new Nebula( 30179, Nebula.NebulaType.Real, "Thor's Helmet", 34, true, "ALS 299", (decimal?)2704.15625, (decimal?)-19.1875, (decimal?)-2469.28125, (int)100 )); + AllOfThem.Add(new Nebula( 30181, Nebula.NebulaType.Real, "Trifid of the North", 34, false, "Trifid of the North Sector HR-W d1-8", (decimal?)-640.4375, (decimal?)-400.28125, (decimal?)-2487.34375, (int)100 )); + } + public static void init_Region_35() { + AllOfThem.Add(new Nebula( 20786, Nebula.NebulaType.Planetary, "Drokoe LN-T e3-0", 35, true, "Drokoe LN-T e3-0", (decimal?)14235.09375, (decimal?)-679.46875, (decimal?)3424.21875, (int)10 )); + AllOfThem.Add(new Nebula( 30008, Nebula.NebulaType.Real, "Blue Planetary Nebula", 35, true, "GCRV 715", (decimal?)4527.25, (decimal?)409.6875, (decimal?)2082.28125, (int)100 )); + AllOfThem.Add(new Nebula( 30031, Nebula.NebulaType.Real, "Eta Carina Nebula", 35, false, "Eta Carina Sector JH-V c2-7", (decimal?)8579.96875, (decimal?)-138.96875, (decimal?)2701.375, (int)460 )); + AllOfThem.Add(new Nebula( 30048, Nebula.NebulaType.Real, "IC 2448", 35, true, "GCRV 5996", (decimal?)8457.8125, (decimal?)-2355.28125, (decimal?)2393.3125, (int)100 )); + AllOfThem.Add(new Nebula( 30049, Nebula.NebulaType.Real, "IC 2501", 35, true, "CD-59 2483", null, null, null, (int)100 )); + AllOfThem.Add(new Nebula( 30092, Nebula.NebulaType.Real, "NGC 2792", 35, true, "CD-41 4893", (decimal?)8157.03125, (decimal?)586.25, (decimal?)-599.03125, (int)100 )); + AllOfThem.Add(new Nebula( 30094, Nebula.NebulaType.Real, "NGC 2818", 35, true, "Hen 2-23", (decimal?)8322.625, (decimal?)1271.03125, (decimal?)-1169.6875, (int)100 )); + AllOfThem.Add(new Nebula( 30095, Nebula.NebulaType.Real, "NGC 2867", 35, true, "GCRV 6100", (decimal?)12208.1875, (decimal?)-1274.65625, (decimal?)1759.21875, (int)100 )); + AllOfThem.Add(new Nebula( 30096, Nebula.NebulaType.Real, "NGC 2899", 35, true, "GSC 8588-0317", (decimal?)6434.5625, (decimal?)-430.78125, (decimal?)812.84375, (int)100 )); + AllOfThem.Add(new Nebula( 30097, Nebula.NebulaType.Real, "NGC 3195", 35, true, "GSC 9409-1163", (decimal?)4656.53125, (decimal?)-1895.5, (decimal?)2331.8125, (int)100 )); + AllOfThem.Add(new Nebula( 30098, Nebula.NebulaType.Real, "NGC 3199", 35, false, "NGC 3199 Sector LC-V c2-5", (decimal?)14576.90625, (decimal?)-274.625, (decimal?)3541.375, (int)100 )); + AllOfThem.Add(new Nebula( 30099, Nebula.NebulaType.Real, "NGC 3211", 35, true, "GCRV 6493", (decimal?)8797.90625, (decimal?)-785.84375, (decimal?)2572.6875, (int)100 )); + AllOfThem.Add(new Nebula( 30100, Nebula.NebulaType.Real, "NGC 3699", 35, true, "Hen 2-65", (decimal?)4150.34375, (decimal?)102.0625, (decimal?)1736.125, (int)100 )); + AllOfThem.Add(new Nebula( 30176, Nebula.NebulaType.Real, "Statue of Liberty Nebula", 35, false, "Statue of Liberty Sector DL-Y d25", (decimal?)5590.8125, (decimal?)-70.5, (decimal?)2180.15625, (int)100 )); + } + public static void init_Region_36() { + AllOfThem.Add(new Nebula( 20307, Nebula.NebulaType.Planetary, "Blooe Dryou WU-X e1-1", 36, true, "Blooe Dryou WU-X e1-1", (decimal?)24626.9375, (decimal?)-145.9375, (decimal?)4446.6875, (int)10 )); + AllOfThem.Add(new Nebula( 25013, Nebula.NebulaType.Planetary, "Throofa HH-V e2-0", 36, true, "Throofa HH-V e2-0", (decimal?)21873.375, (decimal?)-818.03125, (decimal?)697.6875, (int)10 )); + } + public static void init_Region_37() { + + } + public static void init_Region_38() { + + } + public static void init_Region_39() { + + } + public static void init_Region_40() { + AllOfThem.Add(new Nebula( 24294, Nebula.NebulaType.Planetary, "Pyrie Eurk QX-U e2-0", 40, true, "Pyrie Eurk QX-U e2-0", (decimal?)-1643.875, (decimal?)136.8125, (decimal?)62150.1875, (int)10 )); + } + public static void init_Region_41() { + AllOfThem.Add(new Nebula( 30047, Nebula.NebulaType.Real, "IC 2165", 41, true, "BD-12 1453", null, null, null, (int)100 )); + AllOfThem.Add(new Nebula( 30086, Nebula.NebulaType.Real, "NGC 2022", 41, true, "GCRV 3533", (decimal?)2934.625, (decimal?)-1966.59375, (decimal?)-9781.65625, (int)100 )); + } + public static void init_Region_42() { + AllOfThem.Add(new Nebula( 22359, Nebula.NebulaType.Planetary, "Flyae Proae IN-S e4-1", 42, true, "Flyae Proae IN-S e4-1", (decimal?)-34295.625, (decimal?)-141.40625, (decimal?)40717.1875, (int)10 )); + } + + static NebulaDefinitions () + { + init_Region_1(); + init_Region_2(); + init_Region_3(); + init_Region_4(); + init_Region_5(); + init_Region_6(); + init_Region_7(); + init_Region_8(); + init_Region_9(); + init_Region_10(); + init_Region_11(); + init_Region_12(); + init_Region_13(); + init_Region_14(); + init_Region_15(); + init_Region_16(); + init_Region_17(); + init_Region_18(); + init_Region_19(); + init_Region_20(); + init_Region_21(); + init_Region_22(); + init_Region_23(); + init_Region_24(); + init_Region_25(); + init_Region_26(); + init_Region_27(); + init_Region_28(); + init_Region_29(); + init_Region_30(); + init_Region_31(); + init_Region_32(); + init_Region_33(); + init_Region_34(); + init_Region_35(); + init_Region_36(); + init_Region_37(); + init_Region_38(); + init_Region_39(); + init_Region_40(); + init_Region_41(); + init_Region_42(); + //GC.Collect(); + } + } +} diff --git a/DataDefinitions/Organic.cs b/DataDefinitions/Organic.cs new file mode 100644 index 0000000000..4f1a0ed7fd --- /dev/null +++ b/DataDefinitions/Organic.cs @@ -0,0 +1,112 @@ +using Utilities; +using Newtonsoft.Json; + +namespace EddiDataDefinitions +{ + public class Organic + { + [PublicAPI] + public OrganicGenus genus { get; set; } + + [PublicAPI] + public OrganicSpecies species { get; set; } + + [PublicAPI] + public OrganicVariant variant { get; set; } + + [JsonIgnore, PublicAPI ("The credit value for selling organic data for the species, or the predicted value, or else the maximum credit value for the genus if the species is not yet known" ) ] + public long value => valueOverride ?? + species?.value ?? + genus?.maximumValue ?? + 0; + + [JsonProperty] + internal long? genusPredictedMinimumValue = null; + public void SetPredictedMinimumValue(long? minimum) { + genusPredictedMinimumValue = minimum; + } + + [JsonProperty] + internal long? genusPredictedMaximumValue = null; + public void SetPredictedMaximumValue(long? maximum) { + genusPredictedMaximumValue = maximum; + } + + [JsonIgnore, PublicAPI ("The minimum value from all predictions of this genus.")] + public long predictedMinimumValue => valueOverride ?? + genusPredictedMinimumValue ?? + 0; + + [JsonIgnore, PublicAPI ("The maximum value from all predictions of this genus.")] + public long predictedMaximumValue => valueOverride ?? + genusPredictedMaximumValue ?? + 0; + + [JsonIgnore, PublicAPI( "The minimum distance that you must travel before you can collect a fresh sample of this genus" )] + public int minimumDistanceMeters => genus.minimumDistanceMeters; + + /// + /// Overrides the credit values from definitions when an actual value is indicated (as by the `OrganicDataSold` event) + /// + public long? valueOverride { get; set; } = null; + + /// + /// Sets the value from predictions, this could be the minimum value from several predicted species of the same genus. + /// + //public long? valuePredicted { get; set; } + + [PublicAPI ( "The bonus credit value, as awarded when selling organic data" ) ] + public decimal bonus { get; set; } + + public Organic() { + } + + /// + /// Populate the organic from variant data. Most preferred. + /// + public Organic ( OrganicVariant variant ) + { + if (variant is null) { return; } + this.variant = variant; + this.species = variant.species; + this.genus = variant.species?.genus; + } + + /// + /// Populate the organic from species data. Supplement using the {SetVariantData} method when variant data is available. + /// + public Organic ( OrganicSpecies species ) + { + if ( species is null ) { return; } + this.species = species; + this.genus = species.genus; + } + + /// + /// Populate the organic from genus data. Least preferred. Supplement using the {SetVariantData} method when variant data is available. + /// + public Organic ( OrganicGenus genus ) + { + if ( genus is null ) { return; } + this.genus = genus; + } + + /// Get all the biological data, this should be done at the first sample + [PublicAPI] + public static Organic Lookup ( long entryid, string variant ) + { + var organicVariant = OrganicVariant.Lookup( entryid, variant ); + return new Organic( organicVariant ); + } + + /// Get all the biological data, this should be done at the first sample + [PublicAPI] + public void SetVariantData ( OrganicVariant thisVariant ) + { + if ( thisVariant is null ) { return; } + this.variant = thisVariant; + this.species = this.variant?.species; + this.genus = this.variant?.species?.genus; + } + } +} \ No newline at end of file diff --git a/DataDefinitions/OrganicGenus.cs b/DataDefinitions/OrganicGenus.cs new file mode 100644 index 0000000000..f3b325b78a --- /dev/null +++ b/DataDefinitions/OrganicGenus.cs @@ -0,0 +1,113 @@ +using System.Linq; +using Utilities; +using Newtonsoft.Json; + +namespace EddiDataDefinitions +{ + public class OrganicGenus : ResourceBasedLocalizedEDName + { + static OrganicGenus () + { + resourceManager = Properties.OrganicGenus.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new OrganicGenus( NormalizeGenus( edname ) ); + } + + // So we can add a placeholder for missed predictions + public static readonly OrganicGenus Unknown = new OrganicGenus( "Unknown", 0 ); + + // Terrestrial Genuses + public static readonly OrganicGenus Aleoids = new OrganicGenus( "Aleoids", 150 ); + public static readonly OrganicGenus Vents = new OrganicGenus( "Vents", 100 ); + public static readonly OrganicGenus Sphere = new OrganicGenus( "Sphere", 100 ); + public static readonly OrganicGenus Bacterial = new OrganicGenus( "Bacterial", 500 ); + public static readonly OrganicGenus Cone = new OrganicGenus( "Cone", 100 ); + public static readonly OrganicGenus Brancae = new OrganicGenus( "Brancae", 100 ); + public static readonly OrganicGenus Cactoid = new OrganicGenus( "Cactoid", 300 ); + public static readonly OrganicGenus Clypeus = new OrganicGenus( "Clypeus", 150 ); + public static readonly OrganicGenus Conchas = new OrganicGenus( "Conchas", 150 ); + public static readonly OrganicGenus Ground_Struct_Ice = new OrganicGenus( "Ground_Struct_Ice", 100 ); + public static readonly OrganicGenus Electricae = new OrganicGenus( "Electricae", 1000 ); + public static readonly OrganicGenus Fonticulus = new OrganicGenus( "Fonticulus", 500 ); + public static readonly OrganicGenus Shrubs = new OrganicGenus( "Shrubs", 150 ); + public static readonly OrganicGenus Fumerolas = new OrganicGenus( "Fumerolas", 100 ); + public static readonly OrganicGenus Fungoids = new OrganicGenus( "Fungoids", 300 ); + public static readonly OrganicGenus Osseus = new OrganicGenus( "Osseus", 800 ); + public static readonly OrganicGenus Recepta = new OrganicGenus( "Recepta", 150 ); + public static readonly OrganicGenus Tubers = new OrganicGenus( "Tubers", 100 ); + public static readonly OrganicGenus Stratum = new OrganicGenus( "Stratum", 500 ); + public static readonly OrganicGenus Tubus = new OrganicGenus( "Tubus", 800 ); + public static readonly OrganicGenus Tussocks = new OrganicGenus( "Tussocks", 200 ); + + // Genuses without any known minimum distance (including non-terrestrial genuses) + public static readonly OrganicGenus MineralSpheres = new OrganicGenus( "MineralSpheres", 0 ); + public static readonly OrganicGenus MetallicCrystals = new OrganicGenus( "MetallicCrystals", 0 ); + public static readonly OrganicGenus SilicateCrystals = new OrganicGenus( "SilicateCrystals", 0 ); + public static readonly OrganicGenus IceCrystals = new OrganicGenus( "IceCrystals", 0 ); + public static readonly OrganicGenus MolluscReel = new OrganicGenus( "MolluscReel", 0 ); + public static readonly OrganicGenus MolluscGlobe = new OrganicGenus( "MolluscGlobe", 0 ); + public static readonly OrganicGenus MolluscBell = new OrganicGenus( "MolluscBell", 0 ); + public static readonly OrganicGenus MolluscUmbrella = new OrganicGenus( "MolluscUmbrella", 0 ); + public static readonly OrganicGenus MolluscGourd = new OrganicGenus( "MolluscGourd", 0 ); + public static readonly OrganicGenus MolluscTorus = new OrganicGenus( "MolluscTorus", 0 ); + public static readonly OrganicGenus MolluscBulb = new OrganicGenus( "MolluscBulb", 0 ); + public static readonly OrganicGenus MolluscParasol = new OrganicGenus( "MolluscParasol", 0 ); + public static readonly OrganicGenus MolluscSquid = new OrganicGenus( "MolluscSquid", 0 ); + public static readonly OrganicGenus MolluscBullet = new OrganicGenus( "MolluscBullet", 0 ); + public static readonly OrganicGenus MolluscCapsule = new OrganicGenus( "MolluscCapsule", 0 ); + public static readonly OrganicGenus CollaredPod = new OrganicGenus( "CollaredPod", 0 ); + public static readonly OrganicGenus StolonPod = new OrganicGenus( "StolonPod", 0 ); + public static readonly OrganicGenus StolonTree = new OrganicGenus( "StolonTree", 0 ); + public static readonly OrganicGenus AsterPod = new OrganicGenus( "AsterPod", 0 ); + public static readonly OrganicGenus ChalicePod = new OrganicGenus( "ChalicePod", 0 ); + public static readonly OrganicGenus PedunclePod = new OrganicGenus( "PedunclePod", 0 ); + public static readonly OrganicGenus RhizomePod = new OrganicGenus( "RhizomePod", 0 ); + public static readonly OrganicGenus QuadripartitePod = new OrganicGenus( "QuadripartitePod", 0 ); + public static readonly OrganicGenus VoidPod = new OrganicGenus( "VoidPod", 0 ); + public static readonly OrganicGenus AsterTree = new OrganicGenus( "AsterTree", 0 ); + public static readonly OrganicGenus PeduncleTree = new OrganicGenus( "PeduncleTree", 0 ); + public static readonly OrganicGenus GyreTree = new OrganicGenus( "GyreTree", 0 ); + public static readonly OrganicGenus GyrePod = new OrganicGenus( "GyrePod", 0 ); + public static readonly OrganicGenus VoidHeart = new OrganicGenus( "VoidHeart", 0 ); + public static readonly OrganicGenus CalcitePlates = new OrganicGenus( "CalcitePlates", 0 ); + public static readonly OrganicGenus ThargoidBarnacle = new OrganicGenus( "ThargoidBarnacle", 0 ); + + [JsonProperty] + public int minimumDistanceMeters { get; private set; } + + [JsonIgnore, PublicAPI( "The maximum credit value for this genus" )] + public long maximumValue => OrganicSpecies.AllOfThem.Where( s => s.genus == this )?.Max( s => s?.value ) ?? 0; + + [JsonIgnore, PublicAPI( "The minimum credit value for this genus" )] + public long minimumValue => OrganicSpecies.AllOfThem.Where( s => s.genus == this )?.Min( s => s?.value ) ?? 0; + + [JsonIgnore, PublicAPI] + public string localizedDescription => Properties.OrganicGenusDesc.ResourceManager.GetString( NormalizeGenus( edname ) ); + + // dummy used to ensure that the static constructor has run + public OrganicGenus () : this( "" ) + { } + + private OrganicGenus ( string edname, int minimumDistanceMeters = 0 ) : base( edname, edname ) + { + this.minimumDistanceMeters = minimumDistanceMeters; + } + + public static new OrganicGenus FromEDName ( string edname ) + { + return ResourceBasedLocalizedEDName.FromEDName( NormalizeGenus( edname ) ); + } + + public static string NormalizeGenus ( string edname ) + { + return edname? + .Replace( "Codex_Ent_", "" ) + .Replace( "$", "" ) + .Replace( "_Genus_Name", "" ) + .Replace( "_Genus", "" ) + .Replace( "_Name;", "" ) + .Replace( "_name;", "" ) + .Replace( ";", "" ); + } + } +} diff --git a/DataDefinitions/OrganicSpecies.cs b/DataDefinitions/OrganicSpecies.cs new file mode 100644 index 0000000000..fec11d3af0 --- /dev/null +++ b/DataDefinitions/OrganicSpecies.cs @@ -0,0 +1,343 @@ +using System.Collections.Generic; +using System.Linq; +using Utilities; +using Newtonsoft.Json; + +namespace EddiDataDefinitions +{ + public class OrganicSpecies : ResourceBasedLocalizedEDName + { + static OrganicSpecies () + { + resourceManager = Properties.OrganicSpecies.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new OrganicSpecies( NormalizeSpecies( edname ) ); + } + + // Terrestrial Species + // - Many of these ednames have been generated and assumed from the variant name and may not be correct + // - The prediction data here is old and not used anymore, will probably remove in future + public static readonly OrganicSpecies AleoidaArcus = new OrganicSpecies( "Aleoids_01", OrganicGenus.Aleoids, 7252500,(decimal?)0.3, (decimal?)175, (decimal?)180, "","CarbonDioxide","None","B;A;F;K;M;L;T;TTS;Y;N" ); + public static readonly OrganicSpecies AleoidaCoronamus = new OrganicSpecies( "Aleoids_02", OrganicGenus.Aleoids, 6284600,(decimal?)0.3, (decimal?)180, (decimal?)190, "","CarbonDioxide","None","B;A;F;K;M;L;T;TTS;Y;N" ); + public static readonly OrganicSpecies AleoidaGravis = new OrganicSpecies( "Aleoids_05", OrganicGenus.Aleoids, 12934900,(decimal?)0.3, (decimal?)190, (decimal?)195, "","CarbonDioxide","None","B;A;F;K;M;L;T;TTS;Y;N" ); + public static readonly OrganicSpecies AleoidaLaminiae = new OrganicSpecies( "Aleoids_04", OrganicGenus.Aleoids, 3385200,(decimal?)0.3, null, null, "","Ammonia","","B;A;F;K;M;L;T;TTS;Y;N" ); + public static readonly OrganicSpecies AleoidaSpica = new OrganicSpecies( "Aleoids_03", OrganicGenus.Aleoids, 3385200,(decimal?)0.3, null, null, "","Ammonia","","B;A;F;K;M;L;T;TTS;Y;N" ); + public static readonly OrganicSpecies AmphoraPlant = new OrganicSpecies( "Vents", OrganicGenus.Vents, 1628800,null, (decimal?)1000, null, "MetalRichBody","None","","A" ); + public static readonly OrganicSpecies BlatteumBioluminescentAnemone = new OrganicSpecies( "SphereEFGH", OrganicGenus.Sphere, 1499900,null, (decimal?)210, null, "MetalRichBody;HighMetalContentBody","Argon;CarbonDioxide;CarbonDioxideRich;HotSilicateVapour;None","","B" ); + public static readonly OrganicSpecies CroceumAnemone = new OrganicSpecies( "SphereABCD_01", OrganicGenus.Sphere, 1499900,(decimal?)0.42, (decimal?)200, (decimal?)440, "RockyBody","Water;SulphurDioxide;None","","B;A" ); + public static readonly OrganicSpecies LuteolumAnemone = new OrganicSpecies( "Sphere", OrganicGenus.Sphere, 1499900,(decimal?)1.32, (decimal?)200, (decimal?)440, "RockyBody","CarbonDioxide;Water;SulphurDioxide;None","","B" ); + public static readonly OrganicSpecies PrasinumBioluminescentAnemone = new OrganicSpecies( "SphereEFGH_02", OrganicGenus.Sphere, 1499900,null, (decimal?)20, null, "RockyBody;MetalRichBody;HighMetalContentBody","CarbonDioxide;Argon;Ammonia;Nitrogen;SulphurDioxide;NeonRich;HotSulphurDioxide;None","","O" ); + public static readonly OrganicSpecies PuniceumAnemone = new OrganicSpecies( "SphereABCD_02", OrganicGenus.Sphere, 1499900,(decimal?)2.61, (decimal?)65, (decimal?)860, "IceBody","Oxygen;Nitrogen;None","","O;W" ); + public static readonly OrganicSpecies RoseumAnemone = new OrganicSpecies( "SphereABCD_03", OrganicGenus.Sphere, 1499900,(decimal?)0.45, (decimal?)200, (decimal?)440, "RockyBody","SulphurDioxide;None","","B" ); + public static readonly OrganicSpecies RoseumBioluminescentAnemone = new OrganicSpecies( "SphereEFGH_03", OrganicGenus.Sphere, 1499900,null, (decimal?)190, null, "MetalRichBody;HighMetalContentBody","CarbonDioxide;SulphurDioxide;None","","B" ); + public static readonly OrganicSpecies RubeumBioluminescentAnemone = new OrganicSpecies( "SphereEFGH_01", OrganicGenus.Sphere, 1499900,null, (decimal?)160, null, "MetalRichBody;HighMetalContentBody","Argon;CarbonDioxide;SulphurDioxide;None","","B" ); + public static readonly OrganicSpecies BacteriumAcies = new OrganicSpecies( "Bacterial_04", OrganicGenus.Bacterial, 1000000,(decimal?)0.75, null, null, "IcyBody;RockyIceBody","Neon;NeonRich","","" ); + public static readonly OrganicSpecies BacteriumAlcyoneum = new OrganicSpecies( "Bacterial_06", OrganicGenus.Bacterial, 1658500,(decimal?)0.38, null, null, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody","Ammonia","","" ); + public static readonly OrganicSpecies BacteriumAurasus = new OrganicSpecies( "Bacterial_01", OrganicGenus.Bacterial, 1000000,(decimal?)1, null, null, "","CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies BacteriumBullaris = new OrganicSpecies( "Bacterial_10", OrganicGenus.Bacterial, 1152500,(decimal?)0.61, null, null, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody","Methane;MethaneRich","","" ); + public static readonly OrganicSpecies BacteriumCerbrus = new OrganicSpecies( "Bacterial_12", OrganicGenus.Bacterial, 1689800,(decimal?)1, null, null, "","Water;WaterRich;SulphurDioxide","","" ); + public static readonly OrganicSpecies BacteriumInformem = new OrganicSpecies( "Bacterial_08", OrganicGenus.Bacterial, 8418000,(decimal?)0.6, null, null, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody","Nitrogen","","" ); + public static readonly OrganicSpecies BacteriumNebulus = new OrganicSpecies( "Bacterial_02", OrganicGenus.Bacterial, 5289900,(decimal?)0.55, null, null, "IcyBody","Helium","","" ); + public static readonly OrganicSpecies BacteriumOmentum = new OrganicSpecies( "Bacterial_11", OrganicGenus.Bacterial, 4638900,(decimal?)0.61, null, null, "IcyBody","Neon;NeonRich","Nitrogen;Ammonia","" ); + public static readonly OrganicSpecies BacteriumScopulum = new OrganicSpecies( "Bacterial_03", OrganicGenus.Bacterial, 4934500,(decimal?)0.62, null, null, "IcyBody;RockyIceBody","Neon;NeonRich","Carbon;Methane","" ); + public static readonly OrganicSpecies BacteriumTela = new OrganicSpecies( "Bacterial_07", OrganicGenus.Bacterial, 1949000,(decimal?)0.62, null, null, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody","Any","Helium;Iron;Silicate","" ); + public static readonly OrganicSpecies BacteriumVerrata = new OrganicSpecies( "Bacterial_13", OrganicGenus.Bacterial, 3897000,(decimal?)0.61, null, null, "IcyBody;RockyBody;RockyIceBody","Neon;NeonRich","Water","" ); + public static readonly OrganicSpecies BacteriumVesicula = new OrganicSpecies( "Bacterial_05", OrganicGenus.Bacterial, 1000000,(decimal?)1, null, null, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody","Argon;ArgonRich","","" ); + public static readonly OrganicSpecies BacteriumVolu = new OrganicSpecies( "Bacterial_09", OrganicGenus.Bacterial, 7774700,(decimal?)0.61, null, null, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody","Oxygen","","" ); + public static readonly OrganicSpecies BarkMounds = new OrganicSpecies( "Cone", OrganicGenus.Cone, 1471900,null, (decimal?)88, (decimal?)440, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody","None;CarbonDioxide;CarbonDioxideRich;ArgonRich;SulphurDioxide;ThickArgonRich","","" ); + public static readonly OrganicSpecies AureumBrainTree = new OrganicSpecies( "SeedEFGH_01", OrganicGenus.Brancae, 1593700,null, (decimal?)300, (decimal?)500, "MetalRichBody;HighMetalContentBody","None;SulphurDioxide","Any","" ); + public static readonly OrganicSpecies GypseeumBrainTree = new OrganicSpecies( "SeedABCD_01", OrganicGenus.Brancae, 1593700,(decimal?)0.42, (decimal?)170, (decimal?)330, "RockyBody","Ammonia;None;Oxygen;SulphurDioxide","Any","" ); + public static readonly OrganicSpecies LindigoticumBrainTree = new OrganicSpecies( "SeedEFGH_03", OrganicGenus.Brancae, 1593700,null, (decimal?)300, (decimal?)500, "RockyBody;HighMetalContentBody","None","Any","" ); + public static readonly OrganicSpecies LividumBrainTree = new OrganicSpecies( "SeedEFGH", OrganicGenus.Brancae, 1593700,(decimal?)0.48, (decimal?)300, (decimal?)500, "RockyBody","None;Water;SulphurDioxide","Any","" ); + public static readonly OrganicSpecies OstrinumBrainTree = new OrganicSpecies( "SeedABCD_02", OrganicGenus.Brancae, 1593700,null, (decimal?)20, null, "MetalRichBody;HighMetalContentBody","None;CarbonDioxide;Ammonia;CarbonDioxideRich;ArgonRich;SulphurDioxide;Helium;NeonRich","Any","" ); + public static readonly OrganicSpecies PuniceumBrainTree = new OrganicSpecies( "SeedEFGH_02", OrganicGenus.Brancae, 1593700,null, (decimal?)20, null, "MetalRichBody;HighMetalContentBody","None;CarbonDioxide;Oxygen;SulphurDioxide;Helium;NeonRich","Any","" ); + public static readonly OrganicSpecies RoseumBrainTree = new OrganicSpecies( "Seed", OrganicGenus.Brancae, 1593700,null, (decimal?)115, (decimal?)500, "RockyBody;MetalRichBody;HighMetalContentBody;RockyIceBody","None;CarbonDioxide;Argon;Ammonia;CarbonDioxideRich;Oxygen;Water;SulphurDioxide;ArgonRich;WaterRich","Any","" ); + public static readonly OrganicSpecies VirideBrainTree = new OrganicSpecies( "SeedABCD_03", OrganicGenus.Brancae, 1593700,(decimal?)0.4, (decimal?)100, (decimal?)255, "RockyIceBody","Ammonia;None;SulphurDioxide","Any","" ); + public static readonly OrganicSpecies CactoidaCortexum = new OrganicSpecies( "Cactoid_01", OrganicGenus.Cactoid, 3667600,(decimal?)0.27, (decimal?)158, (decimal?)196, "RockyBody;HighMetalContentBody","CarbonDioxide","None","F;G;A;L;K;N;B;M;H" ); + public static readonly OrganicSpecies CactoidaLapis = new OrganicSpecies( "Cactoid_02", OrganicGenus.Cactoid, 2483600,(decimal?)0.28, (decimal?)160, (decimal?)225, "RockyBody;HighMetalContentBody","Ammonia","","F;G;H;A;K;N;B;A" ); + public static readonly OrganicSpecies CactoidaPeperatis = new OrganicSpecies( "Cactoid_05", OrganicGenus.Cactoid, 2483600,(decimal?)0.28, (decimal?)160, (decimal?)186, "RockyBody;HighMetalContentBody","Ammonia","","F;G;A;K;N;B;H" ); + public static readonly OrganicSpecies CactoidaPullulanta = new OrganicSpecies( "Cactoid_04", OrganicGenus.Cactoid, 3667600,(decimal?)0.27, (decimal?)127, (decimal?)195, "RockyBody;HighMetalContentBody","CarbonDioxide","None","F;G;H;A;K;N;B" ); + public static readonly OrganicSpecies CactoidaVermis = new OrganicSpecies( "Cactoid_03", OrganicGenus.Cactoid, 16202800,(decimal?)0.28, (decimal?)160, (decimal?)450, "RockyBody;HighMetalContentBody","Water;SulphurDioxide","","F;G;H;A;M;N;B;K" ); + public static readonly OrganicSpecies ClypeusLacrimam = new OrganicSpecies( "Clypeus_01", OrganicGenus.Clypeus, 8418000,(decimal?)0.28, (decimal?)190, null, "RockyBody;HighMetalContentBody","Water;CarbonDioxide","","A;F;G;K;M;L;N" ); + public static readonly OrganicSpecies ClypeusMargaritus = new OrganicSpecies( "Clypeus_02", OrganicGenus.Clypeus, 11873200,(decimal?)0.28, (decimal?)190, null, "RockyBody;HighMetalContentBody","Water;CarbonDioxide","None","A;F;G;K;M;L;N" ); + public static readonly OrganicSpecies ClypeusSpeculumi = new OrganicSpecies( "Clypeus_03", OrganicGenus.Clypeus, 16202800,(decimal?)0.28, (decimal?)190, null, "RockyBody;HighMetalContentBody","Water;CarbonDioxide","","A;F;G;K;M;L;N" ); + public static readonly OrganicSpecies ConchaAureolas = new OrganicSpecies( "Conchas_02", OrganicGenus.Conchas, 7774700,(decimal?)0.28, null, null, "","Ammonia","","" ); + public static readonly OrganicSpecies ConchaBiconcavis = new OrganicSpecies( "Conchas_04", OrganicGenus.Conchas, 19010800,(decimal?)0.28, null, null, "","Nitrogen","None","" ); + public static readonly OrganicSpecies ConchaLabiata = new OrganicSpecies( "Conchas_03", OrganicGenus.Conchas, 2352400,(decimal?)0.28, null, (decimal?)190, "","CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies ConchaRenibus = new OrganicSpecies( "Conchas_01", OrganicGenus.Conchas, 4572400,(decimal?)0.28, (decimal?)180, (decimal?)195, "","Water;WaterRich","","" ); + public static readonly OrganicSpecies CrystallineShards = new OrganicSpecies( "Ground_Struct_Ice", OrganicGenus.Ground_Struct_Ice, 1628800,(decimal?)2, null, (decimal?)266, "IcyBody;HighMetalContentBody;RockyIceBody;RockyBody","None;CarbonDioxide;Argon;CarbonDioxideRich;Methane;ArgonRich;Neon;Helium;NeonRich","","A;F;G;K;M;S" ); + public static readonly OrganicSpecies ElectricaePluma = new OrganicSpecies( "Electricae_01", OrganicGenus.Electricae, 6284600,(decimal?)0.28, null, (decimal?)150, "IcyBody","Neon;NeonRich;Argon;ArgonRich","","A;N" ); + public static readonly OrganicSpecies ElectricaeRadialem = new OrganicSpecies( "Electricae_02", OrganicGenus.Electricae, 6284600,(decimal?)0.28, null, (decimal?)150, "IcyBody","Neon;NeonRich;Argon;ArgonRich;Methane","","" ); + public static readonly OrganicSpecies FonticuluaCampestris = new OrganicSpecies( "Fonticulus_02", OrganicGenus.Fonticulus, 1000000,(decimal?)0.28, null, (decimal?)150, "IcyBody;RockyBody","Argon","","B;A;F;G;K;M;L;T;TTS;Y;D;N;AEBE" ); + public static readonly OrganicSpecies FonticuluaDigitos = new OrganicSpecies( "Fonticulus_06", OrganicGenus.Fonticulus, 1804100,(decimal?)0.28, null, null, "IcyBody;RockyBody","Methane;MethaneRich","","B;A;F;G;K;M;L;T;TTS;Y;D;N;AEBE" ); + public static readonly OrganicSpecies FonticuluaFluctus = new OrganicSpecies( "Fonticulus_05", OrganicGenus.Fonticulus, 20000000,(decimal?)0.28, null, null, "IcyBody;RockyBody","Oxygen","","B;A;F;G;K;M;L;T;TTS;Y;D;N;AEBE" ); + public static readonly OrganicSpecies FonticuluaLapida = new OrganicSpecies( "Fonticulus_04", OrganicGenus.Fonticulus, 3111000,(decimal?)0.28, null, null, "IcyBody;RockyBody","Nitrogen","","B;A;F;G;K;M;L;T;TTS;Y;D;N;AEBE" ); + public static readonly OrganicSpecies FonticuluaSegmentatus = new OrganicSpecies( "Fonticulus_01", OrganicGenus.Fonticulus, 19010800,(decimal?)0.28, null, null, "IcyBody;RockyBody","Neon;NeonRich","None","B;A;F;G;K;M;L;T;TTS;Y;D;N;AEBE" ); + public static readonly OrganicSpecies FonticuluaUpupam = new OrganicSpecies( "Fonticulus_03", OrganicGenus.Fonticulus, 5727600,(decimal?)0.28, null, null, "IcyBody;RockyBody","ArgonRich","","B;A;F;G;K;M;L;T;TTS;Y;D;N;AEBE" ); + public static readonly OrganicSpecies FrutexaAcus = new OrganicSpecies( "Shrubs_02", OrganicGenus.Shrubs, 7774700,(decimal?)0.28, null, (decimal?)195, "RockyBody","CarbonDioxide;CarbonDioxideRich","","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FrutexaCollum = new OrganicSpecies( "Shrubs_07", OrganicGenus.Shrubs, 1639800,(decimal?)0.28, null, null, "RockyBody","SulphurDioxide","","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FrutexaFera = new OrganicSpecies( "Shrubs_05", OrganicGenus.Shrubs, 1632500,(decimal?)0.28, null, (decimal?)195, "RockyBody","CarbonDioxide;CarbonDioxideRich","None","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FrutexaFlabellum = new OrganicSpecies( "Shrubs_01", OrganicGenus.Shrubs, 1808900,(decimal?)0.28, null, null, "RockyBody","Ammonia","","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FrutexaFlammasis = new OrganicSpecies( "Shrubs_04", OrganicGenus.Shrubs, 10326000,(decimal?)0.28, null, null, "RockyBody","Ammonia","","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FrutexaMetallicum = new OrganicSpecies( "Shrubs_03", OrganicGenus.Shrubs, 1632500,(decimal?)0.28, null, (decimal?)195, "HighMetalContentBody","CarbonDioxide;CarbonDioxideRich;Ammonia","None","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FrutexaSponsae = new OrganicSpecies( "Shrubs_06", OrganicGenus.Shrubs, 5988000,(decimal?)0.28, null, null, "RockyBody","Water;WaterRich","","B;F;G;M;L;TTS;D;N" ); + public static readonly OrganicSpecies FumerolaAquatis = new OrganicSpecies( "Fumerolas_04", OrganicGenus.Fumerolas, 6284600,(decimal?)0.28, null, (decimal?)450, "IcyBody;RockyIceBody","Any","Water","" ); + public static readonly OrganicSpecies FumerolaCarbosis = new OrganicSpecies( "Fumerolas_01", OrganicGenus.Fumerolas, 6284600,(decimal?)0.28, null, (decimal?)275, "IcyBody;RockyIceBody","Any","Carbon;Methane","" ); + public static readonly OrganicSpecies FumerolaExtremus = new OrganicSpecies( "Fumerolas_02", OrganicGenus.Fumerolas, 16202800,(decimal?)0.28, null, (decimal?)205, "RockyBody;HighMetalContentBody","Any","Silicate;Iron;Rocky","" ); + public static readonly OrganicSpecies FumerolaNitris = new OrganicSpecies( "Fumerolas_03", OrganicGenus.Fumerolas, 7500900,(decimal?)0.28, null, (decimal?)250, "IcyBody;RockyIceBody","Any","Nitrogen;Ammonia","" ); + public static readonly OrganicSpecies FungoidaBullarum = new OrganicSpecies( "Fungoids_03", OrganicGenus.Fungoids, 3703200,(decimal?)0.28, null, null, "RockyBody;HighMetalContentBody;RockyIceBody","Argon;ArgonRich","None","" ); + public static readonly OrganicSpecies FungoidaGelata = new OrganicSpecies( "Fungoids_04", OrganicGenus.Fungoids, 3330300,(decimal?)0.28, (decimal?)180, (decimal?)195, "RockyBody;HighMetalContentBody;RockyIceBody","Water;WaterRich;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies FungoidaSetisis = new OrganicSpecies( "Fungoids_01", OrganicGenus.Fungoids, 1670100,(decimal?)0.28, null, null, "RockyBody;HighMetalContentBody;RockyIceBody","Ammonia;Methane;MethaneRich","","" ); + public static readonly OrganicSpecies FungoidaStabitis = new OrganicSpecies( "Fungoids_02", OrganicGenus.Fungoids, 2680300,(decimal?)0.28, (decimal?)180, (decimal?)195, "RockyBody;HighMetalContentBody;RockyIceBody","Water;WaterRich;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies OsseusCornibus = new OrganicSpecies( "Osseus_05", OrganicGenus.Osseus, 1483000,(decimal?)0.28, (decimal?)180, (decimal?)195, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","" ); + public static readonly OrganicSpecies OsseusDiscus = new OrganicSpecies( "Osseus_02", OrganicGenus.Osseus, 12934900,(decimal?)0.28, null, (decimal?)455, "RockyBody;HighMetalContentBody","Water;WaterRich","","" ); + public static readonly OrganicSpecies OsseusFractus = new OrganicSpecies( "Osseus_01", OrganicGenus.Osseus, 4027800,(decimal?)0.28, (decimal?)180, (decimal?)190, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","" ); + public static readonly OrganicSpecies OsseusPellebantus = new OrganicSpecies( "Osseus_06", OrganicGenus.Osseus, 9739000,(decimal?)0.28, (decimal?)190, (decimal?)195, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","" ); + public static readonly OrganicSpecies OsseusPumice = new OrganicSpecies( "Osseus_04", OrganicGenus.Osseus, 3156300,(decimal?)0.28, null, (decimal?)135, "RockyBody;HighMetalContentBody;RockyIceBody","Argon;ArgonRich;Methane;MethaneRich;Nitrogen","","" ); + public static readonly OrganicSpecies OsseusSpiralis = new OrganicSpecies( "Osseus_03", OrganicGenus.Osseus, 2404700,(decimal?)0.28, (decimal?)160, null, "RockyBody;HighMetalContentBody","Ammonia","","" ); + public static readonly OrganicSpecies ReceptaConditivus = new OrganicSpecies( "Recepta_03", OrganicGenus.Recepta, 14313700,(decimal?)0.28, (decimal?)130, (decimal?)300, "IcyBody;RockyIceBody","SulphurDioxide","","" ); + public static readonly OrganicSpecies ReceptaDeltahedronix = new OrganicSpecies( "Recepta_02", OrganicGenus.Recepta, 16202800,(decimal?)0.28, (decimal?)130, (decimal?)300, "RockyBody;HighMetalContentBody","SulphurDioxide","","" ); + public static readonly OrganicSpecies ReceptaUmbrux = new OrganicSpecies( "Recepta_01", OrganicGenus.Recepta, 12934900,(decimal?)0.28, (decimal?)130, (decimal?)300, "IcyBody;RockyIceBody;RockyBody;HighMetalContentBody","SulphurDioxide","","" ); + public static readonly OrganicSpecies AlbidumSinuousTubers = new OrganicSpecies( "TubeABCD_02", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","None","Any","" ); + public static readonly OrganicSpecies BlatteumSinuousTubers = new OrganicSpecies( "TubeEFGH", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","SulphurDioxide;None","Any","" ); + public static readonly OrganicSpecies CaeruleumSinuousTubers = new OrganicSpecies( "TubeABCD_03", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","SulphurDioxide;None","Any","" ); + public static readonly OrganicSpecies LindigoticumSinuousTubers = new OrganicSpecies( "TubeEFGH_01", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","None","Any","" ); + public static readonly OrganicSpecies PrasinumSinuousTubers = new OrganicSpecies( "TubeABCD_01", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody;RockyIceBody","CarbonDioxideRich;None;CarbonDioxide;SulphurDioxide","Any","" ); + public static readonly OrganicSpecies RoseumSinuousTubers = new OrganicSpecies( "Tube", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich;ArgonRich;SulphurDioxide;None","Any","" ); + public static readonly OrganicSpecies ViolaceumSinuousTubers = new OrganicSpecies( "TubeEFGH_02", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","None","Any","" ); + public static readonly OrganicSpecies VirideSinuousTubers = new OrganicSpecies( "TubeEFGH_03", OrganicGenus.Tubers, 1514500,null, (decimal?)200, (decimal?)500, "RockyBody;HighMetalContentBody","SulphurDioxide;None","Any","" ); + public static readonly OrganicSpecies StratumAraneamus = new OrganicSpecies( "Stratum_04", OrganicGenus.Stratum, 2448900,(decimal?)0.55, (decimal?)165, null, "RockyBody","SulphurDioxide","","" ); + public static readonly OrganicSpecies StratumCucumisis = new OrganicSpecies( "Stratum_06", OrganicGenus.Stratum, 16202800,(decimal?)0.6, (decimal?)190, null, "RockyBody","SulphurDioxide;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies StratumExcutitus = new OrganicSpecies( "Stratum_01", OrganicGenus.Stratum, 2448900,(decimal?)0.48, (decimal?)165, (decimal?)190, "RockyBody","SulphurDioxide;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies StratumFrigus = new OrganicSpecies( "Stratum_08", OrganicGenus.Stratum, 2637500,(decimal?)0.55, (decimal?)190, null, "RockyBody","SulphurDioxide;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies StratumLaminamus = new OrganicSpecies( "Stratum_03", OrganicGenus.Stratum, 2788300,(decimal?)0.34, (decimal?)165, null, "RockyBody","Ammonia","","" ); + public static readonly OrganicSpecies StratumLimaxus = new OrganicSpecies( "Stratum_05", OrganicGenus.Stratum, 1362000,(decimal?)0.48, (decimal?)165, (decimal?)190, "RockyBody","SulphurDioxide;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies StratumPaleas = new OrganicSpecies( "Stratum_02", OrganicGenus.Stratum, 1362000,(decimal?)0.58, (decimal?)165, null, "RockyBody","Ammonia;Water;WaterRich;CarbonDioxide;CarbonDioxideRich","","" ); + public static readonly OrganicSpecies StratumTectonicas = new OrganicSpecies( "Stratum_07", OrganicGenus.Stratum, 19010800,(decimal?)0.9, (decimal?)165, null, "HighMetalContentBody","Oxygen;Ammonia;Water;WaterRich;CarbonDioxide;CarbonDioxideRich;SulphurDioxide","","" ); + public static readonly OrganicSpecies TubusCavas = new OrganicSpecies( "Tubus_03", OrganicGenus.Tubus, 11873200,(decimal?)0.16, (decimal?)160, (decimal?)200, "RockyBody","CarbonDioxide","None","F;G;H;A;K;N;M;B" ); + public static readonly OrganicSpecies TubusCompagibus = new OrganicSpecies( "Tubus_05", OrganicGenus.Tubus, 7774700,(decimal?)0.19, (decimal?)150, (decimal?)190, "RockyBody","CarbonDioxide","None","S;A;K;M;N;M;DC;H;K" ); + public static readonly OrganicSpecies TubusConifer = new OrganicSpecies( "Tubus_01", OrganicGenus.Tubus, 2415500,(decimal?)0.17, (decimal?)160, (decimal?)200, "RockyBody","CarbonDioxide","None","F;G;A;K;N;M;H" ); + public static readonly OrganicSpecies TubusRosarium = new OrganicSpecies( "Tubus_04", OrganicGenus.Tubus, 2637500,(decimal?)0.16, (decimal?)160, (decimal?)180, "RockyBody","Ammonia","","F;G;A;K;N;B;K" ); + public static readonly OrganicSpecies TubusSororibus = new OrganicSpecies( "Tubus_02", OrganicGenus.Tubus, 5727600,(decimal?)0.16, (decimal?)160, (decimal?)200, "HighMetalContentBody","Ammonia;CarbonDioxide","None","F;G;A;L;K;N;M;M;DC" ); + public static readonly OrganicSpecies TussockAlbata = new OrganicSpecies( "Tussocks_08", OrganicGenus.Tussocks, 3252500,(decimal?)0.28, (decimal?)175, (decimal?)180, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockCapillum = new OrganicSpecies( "Tussocks_15", OrganicGenus.Tussocks, 7025800,(decimal?)0.28, (decimal?)80, (decimal?)165, "RockyBody;RockyIceBody","Argon;ArgonRich;Methane;MethaneRich","","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockCaputus = new OrganicSpecies( "Tussocks_11", OrganicGenus.Tussocks, 3472400,(decimal?)0.28, (decimal?)180, (decimal?)190, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockCatena = new OrganicSpecies( "Tussocks_05", OrganicGenus.Tussocks, 1766600,(decimal?)0.28, (decimal?)150, (decimal?)190, "RockyBody;HighMetalContentBody","Ammonia","","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockCultro = new OrganicSpecies( "Tussocks_04", OrganicGenus.Tussocks, 1766600,(decimal?)0.28, null, null, "RockyBody;HighMetalContentBody","Ammonia","","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockDivisa = new OrganicSpecies( "Tussocks_10", OrganicGenus.Tussocks, 1766600,(decimal?)0.28, (decimal?)150, (decimal?)180, "RockyBody;HighMetalContentBody","Ammonia","","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockIgnis = new OrganicSpecies( "Tussocks_03", OrganicGenus.Tussocks, 1849000,(decimal?)0.28, (decimal?)160, (decimal?)170, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockPennata = new OrganicSpecies( "Tussocks_01", OrganicGenus.Tussocks, 5853800,(decimal?)0.28, (decimal?)145, (decimal?)155, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockPennatis = new OrganicSpecies( "Tussocks_06", OrganicGenus.Tussocks, 1000000,(decimal?)0.28, null, (decimal?)195, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockPropagito = new OrganicSpecies( "Tussocks_09", OrganicGenus.Tussocks, 1000000,(decimal?)0.28, null, (decimal?)195, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockSerrati = new OrganicSpecies( "Tussocks_07", OrganicGenus.Tussocks, 4447100,(decimal?)0.28, (decimal?)170, (decimal?)175, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockStigmasis = new OrganicSpecies( "Tussocks_13", OrganicGenus.Tussocks, 19010800,(decimal?)0.28, (decimal?)130, (decimal?)210, "RockyBody;HighMetalContentBody","SulphurDioxide","","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockTriticum = new OrganicSpecies( "Tussocks_12", OrganicGenus.Tussocks, 7774700,(decimal?)0.28, (decimal?)190, (decimal?)195, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","None","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockVentusa = new OrganicSpecies( "Tussocks_02", OrganicGenus.Tussocks, 3227700,(decimal?)0.28, (decimal?)155, (decimal?)160, "RockyBody;HighMetalContentBody","CarbonDioxide;CarbonDioxideRich","","F;G;K;M;L;T;D;H" ); + public static readonly OrganicSpecies TussockVirgam = new OrganicSpecies( "Tussocks_14", OrganicGenus.Tussocks, 14313700,(decimal?)0.28, (decimal?)390, (decimal?)450, "RockyBody;HighMetalContentBody","Water;WaterRich","","F;G;K;M;L;T;D;H" ); + + + // Species without any known criteria (including non-terrestrial species) + public static readonly OrganicSpecies SolidMineralSpheres = new OrganicSpecies( "SPOI", OrganicGenus.MineralSpheres, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LatticeMineralSpheres = new OrganicSpecies( "SPOI_Ball", OrganicGenus.MineralSpheres, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PrasinumMetallicCrystals = new OrganicSpecies( "L_Cry_MetCry", OrganicGenus.MetallicCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PurpureumMetallicCrystals = new OrganicSpecies( "L_Cry_MetCry", OrganicGenus.MetallicCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumMetallicCrystals = new OrganicSpecies( "L_Cry_MetCry", OrganicGenus.MetallicCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies FlavumMetallicCrystals = new OrganicSpecies( "L_Cry_MetCry", OrganicGenus.MetallicCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbidumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PrasinumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RoseumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PurpureumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies FlavumSilicateCrystals = new OrganicSpecies( "L_Cry_QtzCry", OrganicGenus.SilicateCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbidumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PrasinumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RoseumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PurpureumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies FlavumIceCrystals = new OrganicSpecies( "L_Cry_IcCry", OrganicGenus.IceCrystals, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumReelMollusc = new OrganicSpecies( "L_Org_Moll03_V6", OrganicGenus.MolluscReel, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumReelMollusc = new OrganicSpecies( "L_Org_Moll03_V6", OrganicGenus.MolluscReel, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideReelMollusc = new OrganicSpecies( "L_Org_Moll03_V6", OrganicGenus.MolluscReel, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CobalteumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies NiveumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PrasinumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RoseumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies OstrinumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RutulumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CroceumGlobeMollusc = new OrganicSpecies( "Small_Org_Moll01_V5", OrganicGenus.MolluscGlobe, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies GypseeumBellMollusc = new OrganicSpecies( "Small_Org_Moll01_V6", OrganicGenus.MolluscBell, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbensBellMollusc = new OrganicSpecies( "Small_Org_Moll01_V6", OrganicGenus.MolluscBell, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies BlatteumBellMollusc = new OrganicSpecies( "Small_Org_Moll01_V6", OrganicGenus.MolluscBell, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumBellMollusc = new OrganicSpecies( "Small_Org_Moll01_V6", OrganicGenus.MolluscBell, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumBellMollusc = new OrganicSpecies( "Small_Org_Moll01_V6", OrganicGenus.MolluscBell, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumUmbrellaMollusc = new OrganicSpecies( "L_Org_Moll03_V3", OrganicGenus.MolluscUmbrella, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumUmbrellaMollusc = new OrganicSpecies( "L_Org_Moll03_V3", OrganicGenus.MolluscUmbrella, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideUmbrellaMollusc = new OrganicSpecies( "L_Org_Moll03_V3", OrganicGenus.MolluscUmbrella, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbulumGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PhoeniceumGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PurpureumGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RufumGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CroceumGourdMollusc = new OrganicSpecies( "Small_Org_Moll01_V1", OrganicGenus.MolluscGourd, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideTorusMollusc = new OrganicSpecies( "Small_Org_Moll01_V2", OrganicGenus.MolluscTorus, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies BlatteumTorusMollusc = new OrganicSpecies( "Small_Org_Moll01_V2", OrganicGenus.MolluscTorus, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies FlavumTorusMollusc = new OrganicSpecies( "Small_Org_Moll01_V2", OrganicGenus.MolluscTorus, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumTorusMollusc = new OrganicSpecies( "Small_Org_Moll01_V2", OrganicGenus.MolluscTorus, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubellumTorusMollusc = new OrganicSpecies( "Small_Org_Moll01_V2", OrganicGenus.MolluscTorus, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumBulbMollusc = new OrganicSpecies( "L_Org_Moll03_V2", OrganicGenus.MolluscBulb, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumBulbMollusc = new OrganicSpecies( "L_Org_Moll03_V2", OrganicGenus.MolluscBulb, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideBulbMollusc = new OrganicSpecies( "L_Org_Moll03_V2", OrganicGenus.MolluscBulb, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumParasolMollusc = new OrganicSpecies( "L_Org_Moll03_V1", OrganicGenus.MolluscParasol, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumParasolMollusc = new OrganicSpecies( "L_Org_Moll03_V1", OrganicGenus.MolluscParasol, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideParasolMollusc = new OrganicSpecies( "L_Org_Moll03_V1", OrganicGenus.MolluscParasol, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbulumSquidMollusc = new OrganicSpecies( "Small_Org_Moll01_V3", OrganicGenus.MolluscSquid, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumSquidMollusc = new OrganicSpecies( "Small_Org_Moll01_V3", OrganicGenus.MolluscSquid, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PuniceumSquidMollusc = new OrganicSpecies( "Small_Org_Moll01_V3", OrganicGenus.MolluscSquid, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumSquidMollusc = new OrganicSpecies( "Small_Org_Moll01_V3", OrganicGenus.MolluscSquid, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RoseumSquidMollusc = new OrganicSpecies( "Small_Org_Moll01_V3", OrganicGenus.MolluscSquid, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CereumBulletMollusc = new OrganicSpecies( "Small_Org_Moll01_V4", OrganicGenus.MolluscBullet, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LividumBulletMollusc = new OrganicSpecies( "Small_Org_Moll01_V4", OrganicGenus.MolluscBullet, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideBulletMollusc = new OrganicSpecies( "Small_Org_Moll01_V4", OrganicGenus.MolluscBullet, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumBulletMollusc = new OrganicSpecies( "Small_Org_Moll01_V4", OrganicGenus.MolluscBullet, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies FlavumBulletMollusc = new OrganicSpecies( "Small_Org_Moll01_V4", OrganicGenus.MolluscBullet, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideCapsuleMollusc = new OrganicSpecies( "L_Org_Moll03_V4", OrganicGenus.MolluscCapsule, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumCapsuleMollusc = new OrganicSpecies( "L_Org_Moll03_V4", OrganicGenus.MolluscCapsule, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumCapsuleMollusc = new OrganicSpecies( "L_Org_Moll03_V4", OrganicGenus.MolluscCapsule, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbidumCollaredPod = new OrganicSpecies( "S_Seed_SdTp04", OrganicGenus.CollaredPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LividumCollaredPod = new OrganicSpecies( "S_Seed_SdTp04", OrganicGenus.CollaredPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies BlatteumCollaredPod = new OrganicSpecies( "S_Seed_SdTp04", OrganicGenus.CollaredPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubicundumCollaredPod = new OrganicSpecies( "S_Seed_SdTp04", OrganicGenus.CollaredPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies StolonPod = new OrganicSpecies( "SPOI_Root", OrganicGenus.StolonPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies StolonTree = new OrganicSpecies( "L_Seed_SdRt02", OrganicGenus.StolonTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CereumAsterPod = new OrganicSpecies( "S_Seed_SdTp02", OrganicGenus.AsterPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumAsterPod = new OrganicSpecies( "S_Seed_SdTp02", OrganicGenus.AsterPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PrasinumAsterPod = new OrganicSpecies( "S_Seed_SdTp02", OrganicGenus.AsterPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PuniceumAsterPod = new OrganicSpecies( "S_Seed_SdTp02", OrganicGenus.AsterPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubellumAsterPod = new OrganicSpecies( "S_Seed_SdTp02", OrganicGenus.AsterPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumChalicePod = new OrganicSpecies( "S_Seed_SdTp05", OrganicGenus.ChalicePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideChalicePod = new OrganicSpecies( "S_Seed_SdTp05", OrganicGenus.ChalicePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubellumChalicePod = new OrganicSpecies( "S_Seed_SdTp05", OrganicGenus.ChalicePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbidumChalicePod = new OrganicSpecies( "S_Seed_SdTp05", OrganicGenus.ChalicePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies OstrinumChalicePod = new OrganicSpecies( "S_Seed_SdTp05", OrganicGenus.ChalicePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CandidumPedunclePod = new OrganicSpecies( "S_Seed_SdTp01", OrganicGenus.PedunclePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumPedunclePod = new OrganicSpecies( "S_Seed_SdTp01", OrganicGenus.PedunclePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies GypseeumPedunclePod = new OrganicSpecies( "S_Seed_SdTp01", OrganicGenus.PedunclePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PurpureumPedunclePod = new OrganicSpecies( "S_Seed_SdTp01", OrganicGenus.PedunclePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RufumPedunclePod = new OrganicSpecies( "S_Seed_SdTp01", OrganicGenus.PedunclePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CandidumRhizomePod = new OrganicSpecies( "S_Seed_SdTp07", OrganicGenus.RhizomePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CobalteumRhizomePod = new OrganicSpecies( "S_Seed_SdTp07", OrganicGenus.RhizomePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies GypseeumRhizomePod = new OrganicSpecies( "S_Seed_SdTp07", OrganicGenus.RhizomePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PurpureumRhizomePod = new OrganicSpecies( "S_Seed_SdTp07", OrganicGenus.RhizomePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumRhizomePod = new OrganicSpecies( "S_Seed_SdTp07", OrganicGenus.RhizomePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbidumQuadripartitePod = new OrganicSpecies( "S_Seed_SdTp08", OrganicGenus.QuadripartitePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumQuadripartitePod = new OrganicSpecies( "S_Seed_SdTp08", OrganicGenus.QuadripartitePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideQuadripartitePod = new OrganicSpecies( "S_Seed_SdTp08", OrganicGenus.QuadripartitePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies BlatteumQuadripartitePod = new OrganicSpecies( "S_Seed_SdTp08", OrganicGenus.QuadripartitePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies NiveumOctahedralPod = new OrganicSpecies( "S_Seed_SdTp03", OrganicGenus.VoidPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies BlatteumOctahedralPod = new OrganicSpecies( "S_Seed_SdTp03", OrganicGenus.VoidPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumOctahedralPod = new OrganicSpecies( "S_Seed_SdTp03", OrganicGenus.VoidPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideOctahedralPod = new OrganicSpecies( "S_Seed_SdTp03", OrganicGenus.VoidPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubeumOctahedralPod = new OrganicSpecies( "S_Seed_SdTp03", OrganicGenus.VoidPod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CereumAsterTree = new OrganicSpecies( "L_Seed_Pln02_V3", OrganicGenus.AsterTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies PrasinumAsterTree = new OrganicSpecies( "L_Seed_Pln02_V3", OrganicGenus.AsterTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubellumAsterTree = new OrganicSpecies( "L_Seed_Pln02_V3", OrganicGenus.AsterTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AlbidumPeduncleTree = new OrganicSpecies( "L_Seed_Pln01_V1", OrganicGenus.PeduncleTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CaeruleumPeduncleTree = new OrganicSpecies( "L_Seed_Pln01_V1", OrganicGenus.PeduncleTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies ViridePeduncleTree = new OrganicSpecies( "L_Seed_Pln01_V1", OrganicGenus.PeduncleTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies OstrinumPeduncleTree = new OrganicSpecies( "L_Seed_Pln01_V1", OrganicGenus.PeduncleTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RubellumPeduncleTree = new OrganicSpecies( "L_Seed_Pln01_V1", OrganicGenus.PeduncleTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AurariumGyreTree = new OrganicSpecies( "SPOI_SeedPolyp01_V1", OrganicGenus.GyreTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideGyreTree = new OrganicSpecies( "SPOI_SeedPolyp01", OrganicGenus.GyreTree, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RoseumGyrePod = new OrganicSpecies( "S_Seed_SdTp06", OrganicGenus.GyrePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies AurariumGyrePod = new OrganicSpecies( "S_Seed_SdTp06", OrganicGenus.GyrePod, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies ChryseumVoidHeart = new OrganicSpecies( "SPOI_SeedWeed01", OrganicGenus.VoidHeart, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies RutulumCalcitePlates = new OrganicSpecies( "L_Org_PltFun_V1", OrganicGenus.CalcitePlates, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LuteolumCalcitePlates = new OrganicSpecies( "L_Org_PltFun_V1", OrganicGenus.CalcitePlates, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LindigoticumCalcitePlates = new OrganicSpecies( "L_Org_PltFun_V1", OrganicGenus.CalcitePlates, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies VirideCalcitePlates = new OrganicSpecies( "L_Org_PltFun_V1", OrganicGenus.CalcitePlates, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies CommonThargoidBarnacle = new OrganicSpecies( "Thargoid_Barnacle", OrganicGenus.ThargoidBarnacle, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies LargeThargoidBarnacle = new OrganicSpecies( "Thargoid_Barnacle", OrganicGenus.ThargoidBarnacle, 50000,null, null, null, "","","","" ); + public static readonly OrganicSpecies ThargoidBarnacleBarbs = new OrganicSpecies( "Thargoid_Barnacle", OrganicGenus.ThargoidBarnacle, 50000,null, null, null, "","","","" ); + + + public OrganicGenus genus; + + [PublicAPI( "The credit value for this species" )] + public long value; + + public decimal? maxG; + public decimal? minK; + public decimal? maxK; + public IList planetClass; + public IList atmosphereClass; + public IList starClass; + public IList volcanism; + + [JsonIgnore, PublicAPI] + public string localizedDescription => Properties.OrganicSpeciesDesc.ResourceManager.GetString( edname ); + + [JsonIgnore, PublicAPI] + public string localizedConditions => Properties.OrganicSpeciesCond.ResourceManager.GetString( edname ); + + [JsonIgnore] + public bool isPredictable => maxG != null || + minK != null || + maxK != null || + planetClass.Any() || + atmosphereClass.Any() || + volcanism.Any() || + starClass.Any(); + + // dummy used to ensure that the static constructor has run + public OrganicSpecies () : this( "" ) + { } + + private OrganicSpecies ( string edname ) : base( edname, edname ) + { + this.planetClass = new List(); + this.atmosphereClass = new List(); + this.starClass = new List(); + this.volcanism = new List(); + } + + private OrganicSpecies ( string edname, + OrganicGenus genus, + long value, + decimal? maxG, + decimal? minK, + decimal? maxK, + string planetClass, + string atmosphereClass, + string volcanism, + string starClass ) : base( edname, NormalizeSpecies( edname ) ) + { + this.genus = genus; + this.value = value; + this.maxG = maxG; + this.minK = minK; + this.maxK = maxK; + this.planetClass = !string.IsNullOrEmpty( planetClass ) ? planetClass.Split( ';' ).ToList() : new List(); + this.atmosphereClass = !string.IsNullOrEmpty( atmosphereClass ) ? atmosphereClass.Split( ';' ).ToList() : new List(); + this.starClass = !string.IsNullOrEmpty( starClass ) ? starClass.Split( ';' ).ToList() : new List(); + this.volcanism = !string.IsNullOrEmpty( volcanism ) ? volcanism.Split( ';' ).ToList() : new List(); + } + + public static new OrganicSpecies FromEDName ( string edname ) + { + return ResourceBasedLocalizedEDName.FromEDName( NormalizeSpecies( edname ) ); + } + + public static string NormalizeSpecies ( string edname ) + { + return edname? + .Replace( "Codex_Ent_", "" ) + .Replace( "$", "" ) + .Replace( "_Name;", "" ) + .Replace( "_name;", "" ) + .Replace( ";", "" ); + } + } +} diff --git a/DataDefinitions/OrganicVariant.cs b/DataDefinitions/OrganicVariant.cs new file mode 100644 index 0000000000..abf2225c6b --- /dev/null +++ b/DataDefinitions/OrganicVariant.cs @@ -0,0 +1,1088 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web.UI.WebControls.WebParts; +using Utilities; +using Newtonsoft.Json; + +namespace EddiDataDefinitions +{ + public class OrganicVariant : ResourceBasedLocalizedEDName + { + static OrganicVariant () + { + resourceManager = Properties.OrganicVariant.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new OrganicVariant( NormalizeVariant( edname ) ); + } + + // The prediction data included here comes from multiple locations: + // - The BioStats2.json file from Cannon ( https://drive.google.com/file/d/14t7SKjLyATHVipuqNiGT-ziA2nRW8sKj/view?usp=sharing ) + // - This is one of the primary sources of data but it has lots of outliers that cause trouble with making accurate predictions + // - Cannon - Surface Biology spreadhseet ( https://docs.google.com/spreadsheets/d/15lqZtqJk7B2qUV5Jb4tlnst6i1B7pXlAUzQnacX64Kc/edit#gid=0 ) + // - This is a valuable secondary source for biologicals as it gives a better idea of the outliers + // - Deep Space Network ( https://ed-dsn.net/en/dsn-2/ ) + // - Good to double check things as has common conditions but missing some valuable data to narrow things down + // - Codex NSP and Bio requirements spreadsheet ( https://docs.google.com/spreadsheets/d/1nV_UD_0kIxkWAHhAqvf62ILHpbYzdZpJ53CqPHn3qlA/edit#gid=344475511 ) + // - Not too useful, has limited data + // - EDMC-BioScan rules ( https://github.com/Silarn/EDMC-BioScan/tree/master ) + + // Variants without any known criteria (including non-terrestrial variants) + public static readonly OrganicVariant L_Cry_IcCry_Bl = new OrganicVariant("L_Cry_IcCry_Bl",2100601, OrganicSpecies.LindigoticumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_IcCry_Gr = new OrganicVariant("L_Cry_IcCry_Gr",2100602, OrganicSpecies.PrasinumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_IcCry_Pk = new OrganicVariant("L_Cry_IcCry_Pk",2100603, OrganicSpecies.RoseumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_IcCry_Pur = new OrganicVariant("L_Cry_IcCry_Pur",2100604, OrganicSpecies.PurpureumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_IcCry_Red = new OrganicVariant("L_Cry_IcCry_Red",2100605, OrganicSpecies.RubeumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_IcCry_Wte = new OrganicVariant("L_Cry_IcCry_Wte",2100606, OrganicSpecies.AlbidumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_IcCry_Yw = new OrganicVariant("L_Cry_IcCry_Yw",2100607, OrganicSpecies.FlavumIceCrystals, OrganicGenus.IceCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_MetCry_Gr = new OrganicVariant("L_Cry_MetCry_Gr",2100801, OrganicSpecies.PrasinumMetallicCrystals, OrganicGenus.MetallicCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_MetCry_Pur = new OrganicVariant("L_Cry_MetCry_Pur",2100802, OrganicSpecies.PurpureumMetallicCrystals, OrganicGenus.MetallicCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_MetCry_Red = new OrganicVariant("L_Cry_MetCry_Red",2100803, OrganicSpecies.RubeumMetallicCrystals, OrganicGenus.MetallicCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_MetCry_Yw = new OrganicVariant("L_Cry_MetCry_Yw",2100804, OrganicSpecies.FlavumMetallicCrystals, OrganicGenus.MetallicCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Bl = new OrganicVariant("L_Cry_QtzCry_Bl",2100701, OrganicSpecies.LindigoticumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Gr = new OrganicVariant("L_Cry_QtzCry_Gr",2100702, OrganicSpecies.PrasinumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Pk = new OrganicVariant("L_Cry_QtzCry_Pk",2100703, OrganicSpecies.RoseumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Pur = new OrganicVariant("L_Cry_QtzCry_Pur",2100704, OrganicSpecies.PurpureumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Red = new OrganicVariant("L_Cry_QtzCry_Red",2100705, OrganicSpecies.RubeumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Wte = new OrganicVariant("L_Cry_QtzCry_Wte",2100706, OrganicSpecies.AlbidumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Cry_QtzCry_Yw = new OrganicVariant("L_Cry_QtzCry_Yw",2100707, OrganicSpecies.FlavumSilicateCrystals, OrganicGenus.SilicateCrystals, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V1_Dark = new OrganicVariant("L_Org_Moll03_V1_Dark",2301602, OrganicSpecies.LindigoticumParasolMollusc, OrganicGenus.MolluscParasol, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V1_Def = new OrganicVariant("L_Org_Moll03_V1_Def",2301601, OrganicSpecies.LuteolumParasolMollusc, OrganicGenus.MolluscParasol, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V1_Earth = new OrganicVariant("L_Org_Moll03_V1_Earth",2301603, OrganicSpecies.VirideParasolMollusc, OrganicGenus.MolluscParasol, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V2_Dark = new OrganicVariant("L_Org_Moll03_V2_Dark",2301702, OrganicSpecies.LindigoticumBulbMollusc, OrganicGenus.MolluscBulb, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V2_Def = new OrganicVariant("L_Org_Moll03_V2_Def",2301701, OrganicSpecies.LuteolumBulbMollusc, OrganicGenus.MolluscBulb, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V2_Earth = new OrganicVariant("L_Org_Moll03_V2_Earth",2301703, OrganicSpecies.VirideBulbMollusc, OrganicGenus.MolluscBulb, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V3_Dark = new OrganicVariant("L_Org_Moll03_V3_Dark",2301802, OrganicSpecies.LindigoticumUmbrellaMollusc, OrganicGenus.MolluscUmbrella, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V3_Def = new OrganicVariant("L_Org_Moll03_V3_Def",2301801, OrganicSpecies.LuteolumUmbrellaMollusc, OrganicGenus.MolluscUmbrella, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V3_Earth = new OrganicVariant("L_Org_Moll03_V3_Earth",2301803, OrganicSpecies.VirideUmbrellaMollusc, OrganicGenus.MolluscUmbrella, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V4_Dark = new OrganicVariant("L_Org_Moll03_V4_Dark",2301902, OrganicSpecies.LindigoticumCapsuleMollusc, OrganicGenus.MolluscCapsule, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V4_Def = new OrganicVariant("L_Org_Moll03_V4_Def",2301901, OrganicSpecies.LuteolumCapsuleMollusc, OrganicGenus.MolluscCapsule, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V4_Earth = new OrganicVariant("L_Org_Moll03_V4_Earth",2301903, OrganicSpecies.VirideCapsuleMollusc, OrganicGenus.MolluscCapsule, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V6_Dark = new OrganicVariant("L_Org_Moll03_V6_Dark",2302102, OrganicSpecies.LindigoticumReelMollusc, OrganicGenus.MolluscReel, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V6_Def = new OrganicVariant("L_Org_Moll03_V6_Def",2302101, OrganicSpecies.LuteolumReelMollusc, OrganicGenus.MolluscReel, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_Moll03_V6_Earth = new OrganicVariant("L_Org_Moll03_V6_Earth",2302103, OrganicSpecies.VirideReelMollusc, OrganicGenus.MolluscReel, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_PltFun_V1_Bl = new OrganicVariant("L_Org_PltFun_V1_Bl",2101002, OrganicSpecies.LindigoticumCalcitePlates, OrganicGenus.CalcitePlates, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_PltFun_V1_Def = new OrganicVariant("L_Org_PltFun_V1_Def",2101001, OrganicSpecies.LuteolumCalcitePlates, OrganicGenus.CalcitePlates, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_PltFun_V1_Gr = new OrganicVariant("L_Org_PltFun_V1_Gr",2101003, OrganicSpecies.VirideCalcitePlates, OrganicGenus.CalcitePlates, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Org_PltFun_V1_Red = new OrganicVariant("L_Org_PltFun_V1_Red",2101004, OrganicSpecies.RutulumCalcitePlates, OrganicGenus.CalcitePlates, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln01_V1_Bl = new OrganicVariant("L_Seed_Pln01_V1_Bl",2208002, OrganicSpecies.CaeruleumPeduncleTree, OrganicGenus.PeduncleTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln01_V1_Def = new OrganicVariant("L_Seed_Pln01_V1_Def",2208001, OrganicSpecies.AlbidumPeduncleTree, OrganicGenus.PeduncleTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln01_V1_Gr = new OrganicVariant("L_Seed_Pln01_V1_Gr",2208003, OrganicSpecies.ViridePeduncleTree, OrganicGenus.PeduncleTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln01_V1_Pur = new OrganicVariant("L_Seed_Pln01_V1_Pur",2208004, OrganicSpecies.OstrinumPeduncleTree, OrganicGenus.PeduncleTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln01_V1_Red = new OrganicVariant("L_Seed_Pln01_V1_Red",2208005, OrganicSpecies.RubellumPeduncleTree, OrganicGenus.PeduncleTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln02_V3_Def = new OrganicVariant("L_Seed_Pln02_V3_Def",2208101, OrganicSpecies.CereumAsterTree, OrganicGenus.AsterTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln02_V3_Gr = new OrganicVariant("L_Seed_Pln02_V3_Gr",2208103, OrganicSpecies.PrasinumAsterTree, OrganicGenus.AsterTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_Pln02_V3_Red = new OrganicVariant("L_Seed_Pln02_V3_Red",2208105, OrganicSpecies.RubellumAsterTree, OrganicGenus.AsterTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant L_Seed_SdRt02_V3 = new OrganicVariant("L_Seed_SdRt02_V3",2209021, OrganicSpecies.StolonTree, OrganicGenus.StolonTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp01_Bl = new OrganicVariant("S_Seed_SdTp01_Bl",2201002, OrganicSpecies.CaeruleumPedunclePod, OrganicGenus.PedunclePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp01_Def = new OrganicVariant("S_Seed_SdTp01_Def",2201001, OrganicSpecies.CandidumPedunclePod, OrganicGenus.PedunclePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp01_Gr = new OrganicVariant("S_Seed_SdTp01_Gr",2201003, OrganicSpecies.GypseeumPedunclePod, OrganicGenus.PedunclePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp01_Pur = new OrganicVariant("S_Seed_SdTp01_Pur",2201004, OrganicSpecies.PurpureumPedunclePod, OrganicGenus.PedunclePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp01_Red = new OrganicVariant("S_Seed_SdTp01_Red",2201005, OrganicSpecies.RufumPedunclePod, OrganicGenus.PedunclePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp02_Bl = new OrganicVariant("S_Seed_SdTp02_Bl",2202002, OrganicSpecies.LindigoticumAsterPod, OrganicGenus.AsterPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp02_Def = new OrganicVariant("S_Seed_SdTp02_Def",2202001, OrganicSpecies.CereumAsterPod, OrganicGenus.AsterPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp02_Gr = new OrganicVariant("S_Seed_SdTp02_Gr",2202003, OrganicSpecies.PrasinumAsterPod, OrganicGenus.AsterPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp02_Pur = new OrganicVariant("S_Seed_SdTp02_Pur",2202004, OrganicSpecies.PuniceumAsterPod, OrganicGenus.AsterPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp02_Red = new OrganicVariant("S_Seed_SdTp02_Red",2202005, OrganicSpecies.RubellumAsterPod, OrganicGenus.AsterPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp03_Bl = new OrganicVariant("S_Seed_SdTp03_Bl",2203002, OrganicSpecies.CaeruleumOctahedralPod, OrganicGenus.VoidPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp03_Def = new OrganicVariant("S_Seed_SdTp03_Def",2203001, OrganicSpecies.NiveumOctahedralPod, OrganicGenus.VoidPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp03_Gr = new OrganicVariant("S_Seed_SdTp03_Gr",2203003, OrganicSpecies.VirideOctahedralPod, OrganicGenus.VoidPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp03_Pur = new OrganicVariant("S_Seed_SdTp03_Pur",2203004, OrganicSpecies.BlatteumOctahedralPod, OrganicGenus.VoidPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp03_Red = new OrganicVariant("S_Seed_SdTp03_Red",2203005, OrganicSpecies.RubeumOctahedralPod, OrganicGenus.VoidPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp04_Bl = new OrganicVariant("S_Seed_SdTp04_Bl",2204002, OrganicSpecies.LividumCollaredPod, OrganicGenus.CollaredPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp04_Def = new OrganicVariant("S_Seed_SdTp04_Def",2204001, OrganicSpecies.AlbidumCollaredPod, OrganicGenus.CollaredPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp04_Pur = new OrganicVariant("S_Seed_SdTp04_Pur",2204004, OrganicSpecies.BlatteumCollaredPod, OrganicGenus.CollaredPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp04_Red = new OrganicVariant("S_Seed_SdTp04_Red",2204005, OrganicSpecies.RubicundumCollaredPod, OrganicGenus.CollaredPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp05_Bl = new OrganicVariant("S_Seed_SdTp05_Bl",2205002, OrganicSpecies.CaeruleumChalicePod, OrganicGenus.ChalicePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp05_Def = new OrganicVariant("S_Seed_SdTp05_Def",2205001, OrganicSpecies.AlbidumChalicePod, OrganicGenus.ChalicePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp05_Gr = new OrganicVariant("S_Seed_SdTp05_Gr",2205003, OrganicSpecies.VirideChalicePod, OrganicGenus.ChalicePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp05_Pur = new OrganicVariant("S_Seed_SdTp05_Pur",2205004, OrganicSpecies.OstrinumChalicePod, OrganicGenus.ChalicePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp05_Red = new OrganicVariant("S_Seed_SdTp05_Red",2205005, OrganicSpecies.RubellumChalicePod, OrganicGenus.ChalicePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp06_Def = new OrganicVariant("S_Seed_SdTp06_Def",2206001, OrganicSpecies.RoseumGyrePod, OrganicGenus.GyrePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp06_Gd = new OrganicVariant("S_Seed_SdTp06_Gd",2206002, OrganicSpecies.AurariumGyrePod, OrganicGenus.GyrePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp07_Bl = new OrganicVariant("S_Seed_SdTp07_Bl",2207002, OrganicSpecies.CobalteumRhizomePod, OrganicGenus.RhizomePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp07_Def = new OrganicVariant("S_Seed_SdTp07_Def",2207001, OrganicSpecies.CandidumRhizomePod, OrganicGenus.RhizomePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp07_Gr = new OrganicVariant("S_Seed_SdTp07_Gr",2207003, OrganicSpecies.GypseeumRhizomePod, OrganicGenus.RhizomePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp07_Pur = new OrganicVariant("S_Seed_SdTp07_Pur",2207004, OrganicSpecies.PurpureumRhizomePod, OrganicGenus.RhizomePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp07_Red = new OrganicVariant("S_Seed_SdTp07_Red",2207005, OrganicSpecies.RubeumRhizomePod, OrganicGenus.RhizomePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp08_Bl = new OrganicVariant("S_Seed_SdTp08_Bl",2207102, OrganicSpecies.CaeruleumQuadripartitePod, OrganicGenus.QuadripartitePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp08_Def = new OrganicVariant("S_Seed_SdTp08_Def",2207101, OrganicSpecies.AlbidumQuadripartitePod, OrganicGenus.QuadripartitePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp08_Gr = new OrganicVariant("S_Seed_SdTp08_Gr",2207103, OrganicSpecies.VirideQuadripartitePod, OrganicGenus.QuadripartitePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant S_Seed_SdTp08_Pur = new OrganicVariant("S_Seed_SdTp08_Pur",2207104, OrganicSpecies.BlatteumQuadripartitePod, OrganicGenus.QuadripartitePod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Bl = new OrganicVariant("Small_Org_Moll01_V1_Bl",2300102, OrganicSpecies.CaeruleumGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Def = new OrganicVariant("Small_Org_Moll01_V1_Def",2300101, OrganicSpecies.AlbulumGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Gr = new OrganicVariant("Small_Org_Moll01_V1_Gr",2300103, OrganicSpecies.VirideGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Pnk = new OrganicVariant("Small_Org_Moll01_V1_Pnk",2300104, OrganicSpecies.PhoeniceumGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Pur = new OrganicVariant("Small_Org_Moll01_V1_Pur",2300105, OrganicSpecies.PurpureumGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Red = new OrganicVariant("Small_Org_Moll01_V1_Red",2300106, OrganicSpecies.RufumGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V1_Y = new OrganicVariant("Small_Org_Moll01_V1_Y",2300107, OrganicSpecies.CroceumGourdMollusc, OrganicGenus.MolluscGourd, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V2_Bl = new OrganicVariant("Small_Org_Moll01_V2_Bl",2300202, OrganicSpecies.CaeruleumTorusMollusc, OrganicGenus.MolluscTorus, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V2_Gr = new OrganicVariant("Small_Org_Moll01_V2_Gr",2300203, OrganicSpecies.VirideTorusMollusc, OrganicGenus.MolluscTorus, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V2_Pur = new OrganicVariant("Small_Org_Moll01_V2_Pur",2300205, OrganicSpecies.BlatteumTorusMollusc, OrganicGenus.MolluscTorus, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V2_Red = new OrganicVariant("Small_Org_Moll01_V2_Red",2300206, OrganicSpecies.RubellumTorusMollusc, OrganicGenus.MolluscTorus, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V2_Y = new OrganicVariant("Small_Org_Moll01_V2_Y",2300207, OrganicSpecies.FlavumTorusMollusc, OrganicGenus.MolluscTorus, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V3_Bl = new OrganicVariant("Small_Org_Moll01_V3_Bl",2300302, OrganicSpecies.CaeruleumSquidMollusc, OrganicGenus.MolluscSquid, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V3_Def = new OrganicVariant("Small_Org_Moll01_V3_Def",2300301, OrganicSpecies.AlbulumSquidMollusc, OrganicGenus.MolluscSquid, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V3_Pnk = new OrganicVariant("Small_Org_Moll01_V3_Pnk",2300304, OrganicSpecies.RoseumSquidMollusc, OrganicGenus.MolluscSquid, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V3_Pur = new OrganicVariant("Small_Org_Moll01_V3_Pur",2300305, OrganicSpecies.PuniceumSquidMollusc, OrganicGenus.MolluscSquid, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V3_Red = new OrganicVariant("Small_Org_Moll01_V3_Red",2300306, OrganicSpecies.RubeumSquidMollusc, OrganicGenus.MolluscSquid, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V4_Bl = new OrganicVariant("Small_Org_Moll01_V4_Bl",2300402, OrganicSpecies.LividumBulletMollusc, OrganicGenus.MolluscBullet, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V4_Def = new OrganicVariant("Small_Org_Moll01_V4_Def",2300401, OrganicSpecies.CereumBulletMollusc, OrganicGenus.MolluscBullet, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V4_Gr = new OrganicVariant("Small_Org_Moll01_V4_Gr",2300403, OrganicSpecies.VirideBulletMollusc, OrganicGenus.MolluscBullet, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V4_Red = new OrganicVariant("Small_Org_Moll01_V4_Red",2300406, OrganicSpecies.RubeumBulletMollusc, OrganicGenus.MolluscBullet, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V4_Y = new OrganicVariant("Small_Org_Moll01_V4_Y",2300407, OrganicSpecies.FlavumBulletMollusc, OrganicGenus.MolluscBullet, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Bl = new OrganicVariant("Small_Org_Moll01_V5_Bl",2300502, OrganicSpecies.CobalteumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Def = new OrganicVariant("Small_Org_Moll01_V5_Def",2300501, OrganicSpecies.NiveumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Gr = new OrganicVariant("Small_Org_Moll01_V5_Gr",2300503, OrganicSpecies.PrasinumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Pnk = new OrganicVariant("Small_Org_Moll01_V5_Pnk",2300504, OrganicSpecies.RoseumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Pur = new OrganicVariant("Small_Org_Moll01_V5_Pur",2300505, OrganicSpecies.OstrinumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Red = new OrganicVariant("Small_Org_Moll01_V5_Red",2300506, OrganicSpecies.RutulumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V5_Y = new OrganicVariant("Small_Org_Moll01_V5_Y",2300507, OrganicSpecies.CroceumGlobeMollusc, OrganicGenus.MolluscGlobe, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V6_Bl = new OrganicVariant("Small_Org_Moll01_V6_Bl",2300602, OrganicSpecies.LindigoticumBellMollusc, OrganicGenus.MolluscBell, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V6_Def = new OrganicVariant("Small_Org_Moll01_V6_Def",2300601, OrganicSpecies.AlbensBellMollusc, OrganicGenus.MolluscBell, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V6_Gr = new OrganicVariant("Small_Org_Moll01_V6_Gr",2300603, OrganicSpecies.GypseeumBellMollusc, OrganicGenus.MolluscBell, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V6_Pur = new OrganicVariant("Small_Org_Moll01_V6_Pur",2300605, OrganicSpecies.BlatteumBellMollusc, OrganicGenus.MolluscBell, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Small_Org_Moll01_V6_Y = new OrganicVariant("Small_Org_Moll01_V6_Y",2300607, OrganicSpecies.LuteolumBellMollusc, OrganicGenus.MolluscBell, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant SPOI_Ball = new OrganicVariant("SPOI_Ball",1410100, OrganicSpecies.SolidMineralSpheres, OrganicGenus.MineralSpheres, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant SPOI_Ball_Lattice = new OrganicVariant("SPOI_Ball_Lattice",1410110, OrganicSpecies.LatticeMineralSpheres, OrganicGenus.MineralSpheres, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant SPOI_Root_Seeds = new OrganicVariant("SPOI_Root_Seeds",2207200, OrganicSpecies.StolonPod, OrganicGenus.StolonPod, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant SPOI_SeedPolyp01_V1 = new OrganicVariant("SPOI_SeedPolyp01_V1",2210001, OrganicSpecies.VirideGyreTree, OrganicGenus.GyreTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant SPOI_SeedPolyp01_V1_Gld = new OrganicVariant("SPOI_SeedPolyp01_V1_Gld",2210011, OrganicSpecies.AurariumGyreTree, OrganicGenus.GyreTree, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant SPOI_SeedWeed01_V1 = new OrganicVariant("SPOI_SeedWeed01_V1",2210101, OrganicSpecies.ChryseumVoidHeart, OrganicGenus.VoidHeart, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Thargoid_Barnacle_01 = new OrganicVariant("Thargoid_Barnacle_01",2100101, OrganicSpecies.CommonThargoidBarnacle, OrganicGenus.ThargoidBarnacle, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Thargoid_Barnacle_02 = new OrganicVariant("Thargoid_Barnacle_02",2100102, OrganicSpecies.LargeThargoidBarnacle, OrganicGenus.ThargoidBarnacle, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + public static readonly OrganicVariant Thargoid_Barnacle_Spikes = new OrganicVariant("Thargoid_Barnacle_Spikes",2100103, OrganicSpecies.ThargoidBarnacleBarbs, OrganicGenus.ThargoidBarnacle, null, null, null, null, null, null, "", "", "", "", "", "", "", "", null, null, null, "" ); + + // Terrestrial Organics + public static readonly OrganicVariant Aleoids_01_A = new OrganicVariant("Aleoids_01_A",2310102, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.21, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.06, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_01_B = new OrganicVariant("Aleoids_01_B",2310101, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.115, (decimal?)0.159, (decimal?)175, (decimal?)180, (decimal?)0.024, (decimal?)0.047, "RockyBody", "Thin,CarbonDioxide", "", "None", "B;H", "B", "", "", null, null, null, "Odin's Hold,Norma Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_01_D = new OrganicVariant("Aleoids_01_D",2310112, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.25, (decimal?)175, (decimal?)180, (decimal?)0.02, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DA;N;H", "D", "", "", null, null, null, "Norma Expanse,Inner Scutum-Centaurus Arm,Izanami,Outer Orion-Perseus Conflux" ); + public static readonly OrganicVariant Aleoids_01_F = new OrganicVariant("Aleoids_01_F",2310103, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.23, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.078, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_01_K = new OrganicVariant("Aleoids_01_K",2310104, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.23, (decimal?)175, (decimal?)190, (decimal?)0.016, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;M;N;DA;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_01_L = new OrganicVariant("Aleoids_01_L",2310106, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.25, (decimal?)175, (decimal?)180, (decimal?)0.017, (decimal?)0.086, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;L;K;N;M;H;MS", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Outer Scutum-Centaurus Arm,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_01_M = new OrganicVariant("Aleoids_01_M",2310105, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.99, (decimal?)0.25, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.092, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;MS", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_01_N = new OrganicVariant("Aleoids_01_N",2310113, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.25, (decimal?)175, (decimal?)180, (decimal?)0.018, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_01_T = new OrganicVariant("Aleoids_01_T",2310107, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.23, (decimal?)175, (decimal?)180, (decimal?)0.023, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "L;H;M", "T", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_01_TTS = new OrganicVariant("Aleoids_01_TTS",2310108, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.25, (decimal?)175, (decimal?)180, (decimal?)0.023, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "A;TTS", "TTS", "", "", null, null, null, "Norma Expanse,Sanguineous Rim,Outer Orion-Perseus Conflux,Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_01_W = new OrganicVariant("Aleoids_01_W",2310111, OrganicSpecies.AleoidaArcus, OrganicGenus.Aleoids, (decimal?)0.09, (decimal?)0.25, (decimal?)175, (decimal?)180, (decimal?)0.048, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_02_A = new OrganicVariant("Aleoids_02_A",2310202, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.12, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_02_B = new OrganicVariant("Aleoids_02_B",2310201, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.12, (decimal?)0.23, (decimal?)180, (decimal?)190, (decimal?)0.035, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Empyrean Straits,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_02_D = new OrganicVariant("Aleoids_02_D",2310212, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.13, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.034, (decimal?)0.057, "RockyBody", "Thin,CarbonDioxide", "", "None", "DA;N;H", "D", "", "", null, null, null, "Galactic Centre,Izanami" ); + public static readonly OrganicVariant Aleoids_02_F = new OrganicVariant("Aleoids_02_F",2310203, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.12, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.025, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_02_K = new OrganicVariant("Aleoids_02_K",2310204, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.12, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;IcyBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;CN;K;N;B;M;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_02_L = new OrganicVariant("Aleoids_02_L",2310206, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.14, (decimal?)0.27, (decimal?)180, (decimal?)190, (decimal?)0.026, (decimal?)0.094, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DB;F;G;A;L;K;N;M;DC;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_02_M = new OrganicVariant("Aleoids_02_M",2310205, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.12, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DBV;F;G;H;A;K;N;M;DA;M;DC;MS", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_02_N = new OrganicVariant("Aleoids_02_N",2310213, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.12, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_02_T = new OrganicVariant("Aleoids_02_T",2310207, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.13, (decimal?)0.27, (decimal?)180, (decimal?)190, (decimal?)0.032, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "G;L;K;N;M;H", "T", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Elysian Shore,Newton's Vault,Izanami,Orion-Cygnus Arm,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Galactic Centre,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Aleoids_02_TTS = new OrganicVariant("Aleoids_02_TTS",2310208, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.13, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.029, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Elysian Shore,The Formidine Rift,Inner Orion Spur,Outer Arm,Ryker's Hope,Norma Arm,Vulcan Gate" ); + public static readonly OrganicVariant Aleoids_02_Y = new OrganicVariant("Aleoids_02_Y",2310210, OrganicSpecies.AleoidaCoronamus, OrganicGenus.Aleoids, (decimal?)0.13, (decimal?)0.25, (decimal?)180, (decimal?)190, (decimal?)0.037, (decimal?)0.072, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;H;K", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Empyrean Straits,Odin's Hold,Galactic Centre,Norma Arm" ); + public static readonly OrganicVariant Aleoids_03_A = new OrganicVariant("Aleoids_03_A",2310302, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.043, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0, (decimal?)0.0045, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None", "F;A;H", "A", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_03_B = new OrganicVariant("Aleoids_03_B",2310301, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.13, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "B", "B", "", "", null, null, null, "Norma Expanse,Ryker's Hope,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Aleoids_03_D = new OrganicVariant("Aleoids_03_D",2310312, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.152, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0.001, (decimal?)0.005, "RockyBody", "Thin,Ammonia", "", "None", "DAB", "D", "", "", null, null, null, "Empyrean Straits" ); + public static readonly OrganicVariant Aleoids_03_F = new OrganicVariant("Aleoids_03_F",2310303, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.042, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;H;A;B", "F", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_03_K = new OrganicVariant("Aleoids_03_K",2310304, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.042, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;H;A;K;N;B;K", "K", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_03_L = new OrganicVariant("Aleoids_03_L",2310306, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.08, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;A;L;K;N;M;M;H", "L", "", "", null, null, null, "Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_03_M = new OrganicVariant("Aleoids_03_M",2310305, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.048, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None", "F;G;S;A;K;N;M;DAB;DA;M;DC;H", "M", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_03_N = new OrganicVariant("Aleoids_03_N",2310313, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.045, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "N;H", "N", "", "", null, null, null, "Sanguineous Rim,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Newton's Vault,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_03_T = new OrganicVariant("Aleoids_03_T",2310307, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.065, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "L;K;M;H;DAV", "T", "", "", null, null, null, "Formorian Frontier,Kepler's Crest,Errant Marches,Elysian Shore,Newton's Vault,Vulcan Gate,The Formidine Rift,Sanguineous Rim,Arcadian Stream,Trojan Belt,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Norma Expanse,Norma Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Aleoids_03_TTS = new OrganicVariant("Aleoids_03_TTS",2310308, OrganicSpecies.AleoidaSpica, OrganicGenus.Aleoids, (decimal?)0.073, (decimal?)0.275, (decimal?)170, (decimal?)177, (decimal?)0, (decimal?)0.005, "RockyBody", "Thin,Ammonia", "", "None", "TTS", "TTS", "", "", null, null, null, "Outer Arm,Ryker's Hope,Elysian Shore" ); + public static readonly OrganicVariant Aleoids_04_A = new OrganicVariant("Aleoids_04_A",2310402, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None", "F;A", "A", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Orion-Cygnus Arm,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Aleoids_04_B = new OrganicVariant("Aleoids_04_B",2310401, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.0061, "RockyBody", "Thin,Ammonia", "", "None", "B", "B", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_04_F = new OrganicVariant("Aleoids_04_F",2310403, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Metallic Magma;None", "F;F;G;H;A;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Temple,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Trojan Belt,Acheron,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,The Abyss,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_04_K = new OrganicVariant("Aleoids_04_K",2310404, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Metallic Magma;None;Minor Metallic Magma", "F;G;H;A;K;N;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Dryman's Point,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Aleoids_04_L = new OrganicVariant("Aleoids_04_L",2310406, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.009, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;L;K;M;N;M;DC;H;K", "L", "", "", null, null, null, "Sagittarius-Carina Arm,Outer Orion Spur,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Aleoids_04_M = new OrganicVariant("Aleoids_04_M",2310405, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;DBZ;A;K;N;M;DA;M;DC;H;K", "M", "", "", null, null, null, "Sagittarius-Carina Arm,Outer Orion Spur,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Aleoids_04_N = new OrganicVariant("Aleoids_04_N",2310413, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.008, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Dryman's Point,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Aleoids_04_T = new OrganicVariant("Aleoids_04_T",2310407, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;L;K;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple" ); + public static readonly OrganicVariant Aleoids_04_TTS = new OrganicVariant("Aleoids_04_TTS",2310408, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.006, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;B;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Orion-Cygnus Arm,Inner Orion Spur,Galactic Centre,The Abyss" ); + public static readonly OrganicVariant Aleoids_04_W = new OrganicVariant("Aleoids_04_W",2310411, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.014, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_04_Y = new OrganicVariant("Aleoids_04_Y",2310410, OrganicSpecies.AleoidaLaminiae, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.014, "RockyBody", "Thin,Ammonia", "", "None", "G", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_05_A = new OrganicVariant("Aleoids_05_A",2310502, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.043, (decimal?)0.266, (decimal?)190, (decimal?)196, (decimal?)0.057, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;A;H", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_05_B = new OrganicVariant("Aleoids_05_B",2310501, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.21, (decimal?)0.211, (decimal?)190, (decimal?)196, (decimal?)0.077, (decimal?)0.078, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Mare Somnia" ); + public static readonly OrganicVariant Aleoids_05_F = new OrganicVariant("Aleoids_05_F",2310503, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.04, (decimal?)0.271, (decimal?)190, (decimal?)196, (decimal?)0.056, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_05_K = new OrganicVariant("Aleoids_05_K",2310504, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.042, (decimal?)0.271, (decimal?)190, (decimal?)196, (decimal?)0.054, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;CN;K;N;DAB;M", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_05_L = new OrganicVariant("Aleoids_05_L",2310506, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.051, (decimal?)0.268, (decimal?)190, (decimal?)196, (decimal?)0.057, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "G;A;L;K;N;M", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Dryman's Point,Norma Expanse,Norma Arm,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_05_M = new OrganicVariant("Aleoids_05_M",2310505, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.045, (decimal?)0.269, (decimal?)190, (decimal?)196, (decimal?)0.054, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Aleoids_05_N = new OrganicVariant("Aleoids_05_N",2310513, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.051, (decimal?)0.269, (decimal?)190, (decimal?)196, (decimal?)0.061, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;B;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Aleoids_05_T = new OrganicVariant("Aleoids_05_T",2310507, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.139, (decimal?)0.263, (decimal?)190, (decimal?)196, (decimal?)0.054, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;M;H;K", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Sanguineous Rim,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Achilles's Altar,Norma Expanse,Ryker's Hope,Norma Arm,Vulcan Gate" ); + public static readonly OrganicVariant Aleoids_05_TTS = new OrganicVariant("Aleoids_05_TTS",2310508, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.046, (decimal?)0.245, (decimal?)190, (decimal?)196, (decimal?)0.061, (decimal?)0.087, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Sanguineous Rim,Inner Orion Spur" ); + public static readonly OrganicVariant Aleoids_05_Y = new OrganicVariant("Aleoids_05_Y",2310510, OrganicSpecies.AleoidaGravis, OrganicGenus.Aleoids, (decimal?)0.203, (decimal?)0.204, (decimal?)190, (decimal?)196, (decimal?)0.076, (decimal?)0.077, "RockyBody", "Thin,CarbonDioxide", "", "None", "K", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_01_A = new OrganicVariant("Bacterial_01_A",2320103, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.042, (decimal?)0.601, (decimal?)145, (decimal?)400, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;H;A;B;A;K", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_Ae = new OrganicVariant("Bacterial_01_Ae",2320111, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.472, (decimal?)0.473, (decimal?)145, (decimal?)210, (decimal?)0.011, (decimal?)0.012, "RockyBody", "Thin,CarbonDioxide", "", "None", "Ae", "Ae", "", "", null, null, null, "Galactic Centre" ); + public static readonly OrganicVariant Bacterial_01_B = new OrganicVariant("Bacterial_01_B",2320102, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.048, (decimal?)0.553, (decimal?)145, (decimal?)400, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "Rocky Magma;None", "B;H", "B", "", "", null, null, null, "Mare Somnia,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Dryman's Point,Arcadian Stream,Empyrean Straits,Outer Orion-Perseus Conflux,Inner Orion Spur,The Conduit,Odin's Hold,Galactic Centre,Norma Expanse,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Bacterial_01_D = new OrganicVariant("Bacterial_01_D",2320114, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.057, (decimal?)0.52, (decimal?)145, (decimal?)330, (decimal?)0.006, (decimal?)0.093, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DB;DBZ;N;DA;H;DAV", "D", "", "", null, null, null, "Formorian Frontier,Elysian Shore,Inner Scutum-Centaurus Arm,Newton's Vault,Izanami,Dryman's Point,Norma Arm,Arcadian Stream,Empyrean Straits,Outer Orion-Perseus Conflux,Inner Orion Spur,Odin's Hold,Galactic Centre,Norma Expanse,Ryker's Hope,Temple" ); + public static readonly OrganicVariant Bacterial_01_F = new OrganicVariant("Bacterial_01_F",2320104, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.039, (decimal?)0.599, (decimal?)145, (decimal?)390, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "Metallic Magma;Major Silicate Vapour Geysers;None;Minor Carbon Dioxide Geysers", "F;G;S;H;A;M;N;M;B;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_G = new OrganicVariant("Bacterial_01_G",2320105, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.97, (decimal?)145, (decimal?)400, (decimal?)0.001, (decimal?)1012.827, "RockyBody;HighMetalContentBody;WaterBody;IcyBody", "Thin,CarbonDioxide", "", "Major Water Geysers;None;Minor Water Geysers", "F;G;H;A;K;M;N;B;C;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_K = new OrganicVariant("Bacterial_01_K",2320106, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.039, (decimal?)0.985, (decimal?)145, (decimal?)400, (decimal?)0.001, (decimal?)720379.943, "RockyBody;HighMetalContentBody;IcyBody", "Thin,CarbonDioxide", "", "Major Water Geysers;None;Minor Metallic Magma", "CJ;DAB;M;S;MS;K;F;A;CN;N;M;H;G;K;M;B;DA;DCV;DC", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_L = new OrganicVariant("Bacterial_01_L",2320108, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.046, (decimal?)0.566, (decimal?)145, (decimal?)390, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide", "", "None", "DB;F;G;A;L;K;N;M;O;DAB;DA;M;DC;DCV;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_M = new OrganicVariant("Bacterial_01_M",2320107, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.604, (decimal?)145, (decimal?)400, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide", "", "None;Minor Metallic Magma", "L;DAB;M;DBZ;O;S;K;MS;F;DB;A;CN;N;M;H;DBV;G;K;B;DA;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_N = new OrganicVariant("Bacterial_01_N",2320115, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.042, (decimal?)0.596, (decimal?)145, (decimal?)400, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;B;B;O;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_O = new OrganicVariant("Bacterial_01_O",2320101, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.392, (decimal?)0.423, (decimal?)145, (decimal?)240, (decimal?)0.019, (decimal?)0.027, "RockyBody", "Thin,CarbonDioxide", "", "None", "O", "O", "", "", null, null, null, "Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_01_T = new OrganicVariant("Bacterial_01_T",2320109, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.046, (decimal?)0.539, (decimal?)145, (decimal?)270, (decimal?)0.002, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DBV;DB;F;G;A;L;K;N;M;B;DA;M;DC;H", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_TTS = new OrganicVariant("Bacterial_01_TTS",2320110, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.041, (decimal?)0.577, (decimal?)145, (decimal?)310, (decimal?)0.002, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;B;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Galactic Centre,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_01_W = new OrganicVariant("Bacterial_01_W",2320113, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.045, (decimal?)0.586, (decimal?)145, (decimal?)370, (decimal?)0.003, (decimal?)0.088, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_01_Y = new OrganicVariant("Bacterial_01_Y",2320112, OrganicSpecies.BacteriumAurasus, OrganicGenus.Bacterial, (decimal?)0.046, (decimal?)0.466, (decimal?)145, (decimal?)220, (decimal?)0.003, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;M;H;K", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Newton's Vault,The Formidine Rift,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Arm,Norma Arm,The Abyss" ); + public static readonly OrganicVariant Bacterial_02_Antimony = new OrganicVariant("Bacterial_02_Antimony",2320205, OrganicSpecies.BacteriumNebulus, OrganicGenus.Bacterial, (decimal?)0.403, (decimal?)0.541, (decimal?)20, (decimal?)21, (decimal?)0.067, (decimal?)0.099, "IcyBody", "Thin,Helium", "", "Major Water Magma;Water Magma;None;Minor Water Magma;Minor Methane Magma", "T;L;Y;DA;M;DC;H", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Temple,The Formidine Rift,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Arcadian Stream,The Void,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_02_Polonium = new OrganicVariant("Bacterial_02_Polonium",2320203, OrganicSpecies.BacteriumNebulus, OrganicGenus.Bacterial, (decimal?)0.43, (decimal?)0.536, (decimal?)20, (decimal?)21, (decimal?)0.067, (decimal?)0.099, "IcyBody", "Thin,Helium", "", "Major Water Magma;None;Water Magma;Minor Water Magma;Minor Methane Magma", "T;L;Y;M;DC;H", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Temple,Perseus Arm,The Formidine Rift,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Lyra's Song,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_02_Ruthenium = new OrganicVariant("Bacterial_02_Ruthenium",2320204, OrganicSpecies.BacteriumNebulus, OrganicGenus.Bacterial, (decimal?)0.404, (decimal?)0.507, (decimal?)20, (decimal?)21, (decimal?)0.031, (decimal?)0.099, "IcyBody", "Thin,Helium", "", "Major Water Magma;None;Water Magma;Minor Methane Magma;Minor Ammonia Magma", "T;L;Y;DAB;M;DC;H", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_02_Technetium = new OrganicVariant("Bacterial_02_Technetium",2320201, OrganicSpecies.BacteriumNebulus, OrganicGenus.Bacterial, (decimal?)0.402, (decimal?)0.505, (decimal?)20, (decimal?)21, (decimal?)0.067, (decimal?)0.099, "IcyBody", "Thin,Helium", "", "Major Water Magma;Water Magma;None;Minor Water Magma;Minor Methane Magma", "T;L;K;Y;TTS;M;DC;H", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Vulcan Gate,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Arcadian Stream,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,The Veils" ); + public static readonly OrganicVariant Bacterial_02_Tellurium = new OrganicVariant("Bacterial_02_Tellurium",2320202, OrganicSpecies.BacteriumNebulus, OrganicGenus.Bacterial, (decimal?)0.415, (decimal?)0.545, (decimal?)20, (decimal?)21, (decimal?)0.067, (decimal?)0.099, "IcyBody", "Thin,Helium", "", "Major Water Magma;None;Water Magma;Minor Water Magma;Minor Methane Magma;Minor Ammonia Magma", "T;L;Y;DAB;DA;M;TTS;DC;H", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_02_Yttrium = new OrganicVariant("Bacterial_02_Yttrium",2320206, OrganicSpecies.BacteriumNebulus, OrganicGenus.Bacterial, (decimal?)0.409, (decimal?)0.542, (decimal?)20, (decimal?)21, (decimal?)0.067, (decimal?)0.099, "IcyBody", "Thin,Helium", "", "Major Water Magma;Water Magma;None;Minor Water Magma;Minor Ammonia Magma;Minor Methane Magma", "T;L;K;Y;M;M;DC;H", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_03_Cadmium = new OrganicVariant("Bacterial_03_Cadmium",2320306, OrganicSpecies.BacteriumScopulum, OrganicGenus.Bacterial, (decimal?)0.026, (decimal?)0.609, (decimal?)20, (decimal?)180, (decimal?)0.001, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;Ae;T;L;K;Y;TTS;M;DC;H", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_03_Mercury = new OrganicVariant("Bacterial_03_Mercury",2320301, OrganicSpecies.BacteriumScopulum, OrganicGenus.Bacterial, (decimal?)0.029, (decimal?)0.593, (decimal?)20, (decimal?)210, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;Ae;T;L;K;Y;M;TTS;M", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,The Void,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_03_Molybdenum = new OrganicVariant("Bacterial_03_Molybdenum",2320305, OrganicSpecies.BacteriumScopulum, OrganicGenus.Bacterial, (decimal?)0.028, (decimal?)0.604, (decimal?)20, (decimal?)120, (decimal?)0.001, (decimal?)0.097, "IcyBody;RockyIceBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;T;L;K;Y;N;TTS;DA;M;DC;H", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_03_Niobium = new OrganicVariant("Bacterial_03_Niobium",2320302, OrganicSpecies.BacteriumScopulum, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.605, (decimal?)20, (decimal?)120, (decimal?)0.001, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;T;L;K;Y;N;TTS;M;DC;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Mare Somnia,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_03_Tin = new OrganicVariant("Bacterial_03_Tin",2320303, OrganicSpecies.BacteriumScopulum, OrganicGenus.Bacterial, (decimal?)0.025, (decimal?)0.599, (decimal?)20, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;T;A;L;K;Y;N;TTS;DCV;M;DC;K", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Errant Marches,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_03_Tungsten = new OrganicVariant("Bacterial_03_Tungsten",2320304, OrganicSpecies.BacteriumScopulum, OrganicGenus.Bacterial, (decimal?)0.03, (decimal?)0.599, (decimal?)20, (decimal?)150, (decimal?)0.001, (decimal?)0.098, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;T;A;L;K;Y;TTS;DAB;M", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_04_Antimony = new OrganicVariant("Bacterial_04_Antimony",2320405, OrganicSpecies.BacteriumAcies, OrganicGenus.Bacterial, (decimal?)0.262, (decimal?)0.586, (decimal?)20, (decimal?)70, (decimal?)0, (decimal?)0.007, "IcyBody;RockyIceBody", "Thin,Neon", "", "Any", "L;DAB;Ae;M;DAV;DQ;T;Y;TTS;DB;F;N;M;H;G;K;DA;DCV;DC", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_04_Polonium = new OrganicVariant("Bacterial_04_Polonium",2320403, OrganicSpecies.BacteriumAcies, OrganicGenus.Bacterial, (decimal?)0.301, (decimal?)0.731, (decimal?)20, (decimal?)370, (decimal?)0, (decimal?)2704.05, "IcyBody;RockyIceBody", "Thin,Neon", "", "Any", "L;DAB;M;Ae;DAV;T;Y;TTS;DB;F;A;N;M;H;G;K;DA;DC", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_04_Ruthenium = new OrganicVariant("Bacterial_04_Ruthenium",2320404, OrganicSpecies.BacteriumAcies, OrganicGenus.Bacterial, (decimal?)0.259, (decimal?)0.709, (decimal?)20, (decimal?)140, (decimal?)0, (decimal?)1973.006, "IcyBody;RockyIceBody", "Thin,Neon", "", "Any", "L;DAB;M;Ae;DAV;DQ;T;Y;TTS;DB;F;A;N;M;H;G;K;B;DA;DC", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_04_Technetium = new OrganicVariant("Bacterial_04_Technetium",2320401, OrganicSpecies.BacteriumAcies, OrganicGenus.Bacterial, (decimal?)0.271, (decimal?)0.594, (decimal?)20, (decimal?)70, (decimal?)0, (decimal?)0.008, "IcyBody;RockyIceBody", "Thin,Neon", "", "Any", "L;DAB;M;Ae;DAV;T;Y;TTS;K;DB;F;A;N;M;DAZ;H;G;K;DA;DCV;DC", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_04_Tellurium = new OrganicVariant("Bacterial_04_Tellurium",2320402, OrganicSpecies.BacteriumAcies, OrganicGenus.Bacterial, (decimal?)0.266, (decimal?)0.602, (decimal?)20, (decimal?)140, (decimal?)0, (decimal?)0.079, "IcyBody;RockyIceBody", "Thin,Neon", "", "Any", "L;DAB;Ae;M;T;Y;TTS;K;F;A;N;M;H;G;K;B;DA;DCV;DC", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_04_Yttrium = new OrganicVariant("Bacterial_04_Yttrium",2320406, OrganicSpecies.BacteriumAcies, OrganicGenus.Bacterial, (decimal?)0.267, (decimal?)0.61, (decimal?)20, (decimal?)70, (decimal?)0, (decimal?)0.009, "IcyBody;RockyIceBody", "Thin,Neon", "", "Any", "L;DAB;M;Ae;DAV;T;Y;TTS;DB;F;A;N;M;H;G;K;DA;DC", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_05_Antimony = new OrganicVariant("Bacterial_05_Antimony",2320505, OrganicSpecies.BacteriumVesicula, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.494, (decimal?)50, (decimal?)250, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Argon", "", "Any", "L;DAB;M;Ae;DAV;DQ;DBZ;T;O;TTS;S;K;DB;F;A;N;M;DAZ;H;DBV;G;K;B;DA;DCV;DC", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_05_Polonium = new OrganicVariant("Bacterial_05_Polonium",2320503, OrganicSpecies.BacteriumVesicula, OrganicGenus.Bacterial, (decimal?)0.028, (decimal?)0.482, (decimal?)50, (decimal?)340, (decimal?)0, (decimal?)0.098, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Argon", "", "Any", "L;DAB;M;Ae;DAV;T;DBZ;TTS;K;MS;DB;F;A;N;M;H;DBV;G;K;B;DA;DCV;DC", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_05_Ruthenium = new OrganicVariant("Bacterial_05_Ruthenium",2320504, OrganicSpecies.BacteriumVesicula, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.984, (decimal?)50, (decimal?)650, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Argon", "", "Any", "L;DAB;M;Ae;DAV;DQ;DBZ;T;TTS;C;K;S;DB;F;A;N;M;DAZ;H;DBV;G;K;B;DA;DCV;DC", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_05_Technetium = new OrganicVariant("Bacterial_05_Technetium",2320501, OrganicSpecies.BacteriumVesicula, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.458, (decimal?)50, (decimal?)230, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Argon", "", "Any", "L;DAB;M;Ae;DAV;DBZ;T;TTS;K;DB;F;A;N;M;D;DAZ;H;DBV;G;K;B;DA;DCV;DC", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_05_Tellurium = new OrganicVariant("Bacterial_05_Tellurium",2320502, OrganicSpecies.BacteriumVesicula, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.462, (decimal?)50, (decimal?)250, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Argon", "", "Any", "L;DAB;M;Ae;DAV;DBZ;T;TTS;C;K;S;DB;F;A;CN;N;M;H;DBV;G;K;B;DA;DCV;DC", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_05_Yttrium = new OrganicVariant("Bacterial_05_Yttrium",2320506, OrganicSpecies.BacteriumVesicula, OrganicGenus.Bacterial, (decimal?)0.028, (decimal?)0.476, (decimal?)40, (decimal?)240, (decimal?)0, (decimal?)0.098, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Argon", "", "Any", "L;DAB;Ae;M;DAV;DBZ;T;TTS;K;S;DB;F;A;CN;N;M;DAZ;H;DBV;G;K;B;DA;DCV;DC", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_A = new OrganicVariant("Bacterial_06_A",2320603, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.367, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "F;H;A;B", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_B = new OrganicVariant("Bacterial_06_B",2320602, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.069, (decimal?)0.324, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.006, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "B", "B", "", "", null, null, null, "Outer Orion Spur,Aquila's Halo,Inner Scutum-Centaurus Arm,Newton's Vault,Sanguineous Rim,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Arm,Norma Expanse,Ryker's Hope,Norma Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Bacterial_06_D = new OrganicVariant("Bacterial_06_D",2320614, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.129, (decimal?)0.223, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "DB;F;D;DAB;H;DAV", "D", "", "", null, null, null, "Formorian Frontier,Izanami,Empyrean Straits,Outer Orion-Perseus Conflux,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_06_F = new OrganicVariant("Bacterial_06_F",2320604, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.041, (decimal?)0.371, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.048, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "Minor Water Magma;Metallic Magma;Major Silicate Vapour Geysers;None", "F;F;G;H;A;M;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_G = new OrganicVariant("Bacterial_06_G",2320605, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.372, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "Minor Silicate Vapour Geysers;Minor Water Magma;Minor Rocky Magma;None", "F;G;H;A;K;M;N;B;A", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_K = new OrganicVariant("Bacterial_06_K",2320606, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.376, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia", "", "Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;H;A;K;MS;M;N;B;M;DA;M;DC;DAB;S;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_L = new OrganicVariant("Bacterial_06_L",2320608, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.046, (decimal?)0.371, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "None", "L;DAB;M;DAV;C;K;DB;F;A;N;M;H;DBV;G;K;DCV;DA;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_M = new OrganicVariant("Bacterial_06_M",2320607, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.045, (decimal?)0.371, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia", "", "Metallic Magma;None", "CJ;L;DAB;M;DAV;DBZ;O;MS;K;DB;F;A;M;N;H;G;K;B;DA;DCV;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_N = new OrganicVariant("Bacterial_06_N",2320615, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.045, (decimal?)0.371, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_O = new OrganicVariant("Bacterial_06_O",2320601, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.142, (decimal?)0.324, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.009, "RockyBody", "Thin,Ammonia", "", "None", "O", "O", "", "", null, null, null, "Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_06_T = new OrganicVariant("Bacterial_06_T",2320609, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.049, (decimal?)0.359, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "None", "DB;F;G;A;L;K;N;B;DA;M;H;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_06_TTS = new OrganicVariant("Bacterial_06_TTS",2320610, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.059, (decimal?)0.365, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.015, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "None", "F;G;K;B;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,The Formidine Rift,Acheron,Norma Arm,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,The Void,The Abyss,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_06_W = new OrganicVariant("Bacterial_06_W",2320613, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.142, (decimal?)0.198, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_06_Y = new OrganicVariant("Bacterial_06_Y",2320612, OrganicSpecies.BacteriumAlcyoneum, OrganicGenus.Bacterial, (decimal?)0.052, (decimal?)0.238, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None;Major Rocky Magma", "G;L;K;N;M;H", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Arcadian Stream,Odin's Hold,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_07_Cadmium = new OrganicVariant("Bacterial_07_Cadmium",2320706, OrganicSpecies.BacteriumTela, OrganicGenus.Bacterial, (decimal?)0.029, (decimal?)0.606, (decimal?)20, (decimal?)500, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia;Thin,Argon;Thin,CarbonDioxide;Thin,Helium;Thin,Methane;Thin,Neon;Thin,NeonRichThin,SulphurDioxide;Thin,Water;", "", "Any", "F;CJ;L;G;M;Ae;T;Y;TTS;S;K;DB;F;MS;A;CN;M;N;DAZ;H;G;K;B;DA;DCV;DC", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_07_Mercury = new OrganicVariant("Bacterial_07_Mercury",2320701, OrganicSpecies.BacteriumTela, OrganicGenus.Bacterial, (decimal?)0.026, (decimal?)0.606, (decimal?)20, (decimal?)500, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,CarbonDioxide;Thin,Helium;Thin,Methane;Thin,Neon;Thin,NeonRichThin,SulphurDioxide;Thin,Water;", "", "Any", "L;M;Ae;T;Y;TTS;K;MS;S;F;A;CN;N;M;DAZ;H;G;K;B;DC", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_07_Molybdenum = new OrganicVariant("Bacterial_07_Molybdenum",2320705, OrganicSpecies.BacteriumTela, OrganicGenus.Bacterial, (decimal?)0.026, (decimal?)0.606, (decimal?)20, (decimal?)600, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia;Thin,Argon;Thin,CarbonDioxide;Thin,Helium;Thin,Methane;Thin,Neon;Thin,NeonRichThin,SulphurDioxide;Thin,Water;", "", "Any", "CJ;L;B;DAB;M;Ae;T;Y;TTS;MS;K;S;F;A;CN;N;M;H;DBV;G;K;B;DA;DC", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_07_Niobium = new OrganicVariant("Bacterial_07_Niobium",2320702, OrganicSpecies.BacteriumTela, OrganicGenus.Bacterial, (decimal?)0.026, (decimal?)0.607, (decimal?)20, (decimal?)500, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia;Thin,Argon;Thin,CarbonDioxide;Thin,Helium;Thin,Methane;Thin,Neon;Thin,NeonRichThin,SulphurDioxide;Thin,Water;", "", "Any", "CJ;L;DAB;M;Ae;T;Y;O;TTS;S;K;MS;F;A;CN;N;M;DAZ;H;G;K;M;B;DA;DC", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_07_Tin = new OrganicVariant("Bacterial_07_Tin",2320703, OrganicSpecies.BacteriumTela, OrganicGenus.Bacterial, (decimal?)0.029, (decimal?)0.61, (decimal?)20, (decimal?)520, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia;Thin,Argon;Thin,CarbonDioxide;Thin,Helium;Thin,Methane;Thin,Neon;Thin,NeonRichThin,SulphurDioxide;Thin,Water;", "", "Any", "CJ;L;M;Ae;DAV;T;Y;TTS;S;MS;DB;F;K;A;CN;N;M;H;G;K;B;DCV;DA;DC", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_07_Tungsten = new OrganicVariant("Bacterial_07_Tungsten",2320704, OrganicSpecies.BacteriumTela, OrganicGenus.Bacterial, (decimal?)0.026, (decimal?)0.607, (decimal?)20, (decimal?)640, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Ammonia;Thin,Argon;Thin,CarbonDioxide;Thin,Helium;Thin,Methane;Thin,Neon;Thin,NeonRichThin,SulphurDioxide;Thin,Water;", "", "Any", "F;W;CJ;L;M;Ae;T;Y;TTS;S;MS;K;F;A;CN;N;M;H;G;K;B;DA;DC", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_08_Antimony = new OrganicVariant("Bacterial_08_Antimony",2320805, OrganicSpecies.BacteriumInformem, OrganicGenus.Bacterial, (decimal?)0.127, (decimal?)0.592, (decimal?)43, (decimal?)150, (decimal?)0, (decimal?)0.097, "RockyBody;HighMetalContentBody;IcyBody;RockyIceBody", "Thin,Nitrogen", "", "Major Water Geysers;None", "CJ;L;M;Ae;DAV;T;TTS;C;K;MS;DB;F;S;A;N;M;A;H;DBV;G;K;B;DA;DCV;DC", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_08_Polonium = new OrganicVariant("Bacterial_08_Polonium",2320803, OrganicSpecies.BacteriumInformem, OrganicGenus.Bacterial, (decimal?)0.109, (decimal?)0.554, (decimal?)43, (decimal?)150, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Nitrogen", "", "Minor Nitrogen Magma;Major Water Geysers;Minor Methane Magma;None", "DBV;F;G;Ae;A;L;K;N;M;B;TTS;DA;M;DAZ;H", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_08_Ruthenium = new OrganicVariant("Bacterial_08_Ruthenium",2320804, OrganicSpecies.BacteriumInformem, OrganicGenus.Bacterial, (decimal?)0.144, (decimal?)0.576, (decimal?)43, (decimal?)150, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Nitrogen", "", "Carbon Dioxide Geysers;Major Water Geysers;Water Geysers;None", "CJ;L;DAB;M;Ae;TTS;K;S;DB;F;A;CN;N;M;H;G;K;DA;DCV;DC", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_08_Technetium = new OrganicVariant("Bacterial_08_Technetium",2320801, OrganicSpecies.BacteriumInformem, OrganicGenus.Bacterial, (decimal?)0.142, (decimal?)0.585, (decimal?)43, (decimal?)150, (decimal?)0, (decimal?)0.097, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Nitrogen", "", "Water Geysers;None", "L;DAB;M;Ae;O;TTS;K;F;A;N;M;DAZ;H;G;K;DA;DCV;DC", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_08_Tellurium = new OrganicVariant("Bacterial_08_Tellurium",2320802, OrganicSpecies.BacteriumInformem, OrganicGenus.Bacterial, (decimal?)0.037, (decimal?)0.591, (decimal?)43, (decimal?)150, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Nitrogen", "", "Major Water Geysers;None", "L;DAB;M;Ae;TTS;S;MS;F;A;N;M;DAZ;H;DBV;G;K;B;DA;DC", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_08_Yttrium = new OrganicVariant("Bacterial_08_Yttrium",2320806, OrganicSpecies.BacteriumInformem, OrganicGenus.Bacterial, (decimal?)0.128, (decimal?)0.565, (decimal?)43, (decimal?)150, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Nitrogen", "", "Minor Nitrogen Magma;Major Water Geysers;None", "L;DAB;Ae;M;DAV;T;DBZ;TTS;MS;DB;F;A;N;M;H;DBV;G;K;B;DA;DC", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_09_Antimony = new OrganicVariant("Bacterial_09_Antimony",2320905, OrganicSpecies.BacteriumVolu, OrganicGenus.Bacterial, (decimal?)0.239, (decimal?)0.604, (decimal?)143, (decimal?)246, (decimal?)0.015, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Oxygen", "", "Carbon Dioxide Geysers;Major Water Geysers;None;Minor Metallic Magma", "DQ;F;G;A;L;K;N;B;TTS;M;H", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_09_Polonium = new OrganicVariant("Bacterial_09_Polonium",2320903, OrganicSpecies.BacteriumVolu, OrganicGenus.Bacterial, (decimal?)0.249, (decimal?)0.496, (decimal?)143, (decimal?)246, (decimal?)0.014, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Oxygen", "", "Minor Nitrogen Magma;Major Water Geysers;None;Carbon Dioxide Geysers", "F;G;Ae;A;K;N;B;TTS;M", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_09_Ruthenium = new OrganicVariant("Bacterial_09_Ruthenium",2320904, OrganicSpecies.BacteriumVolu, OrganicGenus.Bacterial, (decimal?)0.24, (decimal?)0.579, (decimal?)143, (decimal?)246, (decimal?)0.013, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Oxygen", "", "Minor Nitrogen Magma;Major Water Geysers;Minor Ammonia Magma;None", "F;G;Ae;A;L;K;N;O;TTS;DAB;M;DC;DA;H;DAV", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_09_Technetium = new OrganicVariant("Bacterial_09_Technetium",2320901, OrganicSpecies.BacteriumVolu, OrganicGenus.Bacterial, (decimal?)0.239, (decimal?)0.493, (decimal?)143, (decimal?)246, (decimal?)0.014, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Oxygen", "", "Major Water Magma;None;Major Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "F;G;Ae;A;L;K;N;B;TTS;M;DC;K", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_09_Tellurium = new OrganicVariant("Bacterial_09_Tellurium",2320902, OrganicSpecies.BacteriumVolu, OrganicGenus.Bacterial, (decimal?)0.24, (decimal?)0.569, (decimal?)143, (decimal?)246, (decimal?)0.014, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Oxygen", "", "Carbon Dioxide Geysers;None;Minor Methane Magma;Major Water Geysers;Water Geysers", "F;G;M;A;L;K;M;N;B;TTS;Ae;DC;H;DAV", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_09_Yttrium = new OrganicVariant("Bacterial_09_Yttrium",2320906, OrganicSpecies.BacteriumVolu, OrganicGenus.Bacterial, (decimal?)0.241, (decimal?)0.507, (decimal?)143, (decimal?)246, (decimal?)0.014, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Oxygen", "", "Metallic Magma;Major Water Geysers;Water Magma;None", "F;G;Ae;H;A;L;K;N;B;TTS;M;DC", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_10_Antimony = new OrganicVariant("Bacterial_10_Antimony",2321005, OrganicSpecies.BacteriumBullaris, OrganicGenus.Bacterial, (decimal?)0.025, (decimal?)0.595, (decimal?)68, (decimal?)130, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Methane;Thin,MethaneRich", "", "Any", "L;DAB;M;DAV;TTS;K;DB;F;A;N;M;H;G;K;B;DCV;DA;DC", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_10_Polonium = new OrganicVariant("Bacterial_10_Polonium",2321003, OrganicSpecies.BacteriumBullaris, OrganicGenus.Bacterial, (decimal?)0.025, (decimal?)0.588, (decimal?)68, (decimal?)150, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Methane;Thin,MethaneRich", "", "Metallic Magma;None;Minor Methane Magma;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Nitrogen Magma", "F;G;A;L;K;N;M;DAB;DCV;M;DA;TTS;DC;H", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_10_Ruthenium = new OrganicVariant("Bacterial_10_Ruthenium",2321004, OrganicSpecies.BacteriumBullaris, OrganicGenus.Bacterial, (decimal?)0.025, (decimal?)0.603, (decimal?)68, (decimal?)130, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,MethaneRich", "", "Any", "L;B;M;DAV;TTS;K;DB;F;A;N;M;H;G;K;B;DA;DCV;DC", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_10_Technetium = new OrganicVariant("Bacterial_10_Technetium",2321001, OrganicSpecies.BacteriumBullaris, OrganicGenus.Bacterial, (decimal?)0.024, (decimal?)0.579, (decimal?)68, (decimal?)140, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Methane;Thin,MethaneRich", "", "Any", "F;G;DAV;T;A;L;K;N;M;B;TTS;DA;M;DAB;DC;H;K", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_10_Tellurium = new OrganicVariant("Bacterial_10_Tellurium",2321002, OrganicSpecies.BacteriumBullaris, OrganicGenus.Bacterial, (decimal?)0.025, (decimal?)0.594, (decimal?)68, (decimal?)140, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Methane;Thin,MethaneRich", "", "Any", "L;DAB;M;T;TTS;K;F;A;N;M;DAZ;H;G;K;B;DA;DCV;DC", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_10_Yttrium = new OrganicVariant("Bacterial_10_Yttrium",2321006, OrganicSpecies.BacteriumBullaris, OrganicGenus.Bacterial, (decimal?)0.025, (decimal?)0.596, (decimal?)68, (decimal?)130, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Methane;Thin,MethaneRich", "", "Any", "F;G;M;A;L;K;N;M;B;DAB;DCV;DA;TTS;DC;H;K", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_11_Cadmium = new OrganicVariant("Bacterial_11_Cadmium",2321106, OrganicSpecies.BacteriumOmentum, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.567, (decimal?)20, (decimal?)310, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "DB;F;G;M;T;A;L;K;Y;N;TTS;DA;Ae;DC;H", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_11_Mercury = new OrganicVariant("Bacterial_11_Mercury",2321101, OrganicSpecies.BacteriumOmentum, OrganicGenus.Bacterial, (decimal?)0.029, (decimal?)0.556, (decimal?)20, (decimal?)290, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;Ae;T;A;L;K;Y;N;DAB;DA;M;DC", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_11_Molybdenum = new OrganicVariant("Bacterial_11_Molybdenum",2321105, OrganicSpecies.BacteriumOmentum, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.593, (decimal?)20, (decimal?)200, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;Ae;T;A;L;K;Y;TTS;DA;M;DAB;DC", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_11_Niobium = new OrganicVariant("Bacterial_11_Niobium",2321102, OrganicSpecies.BacteriumOmentum, OrganicGenus.Bacterial, (decimal?)0.029, (decimal?)0.587, (decimal?)20, (decimal?)250, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "DQ;F;G;Ae;T;A;L;K;Y;N;M;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_11_Tin = new OrganicVariant("Bacterial_11_Tin",2321103, OrganicSpecies.BacteriumOmentum, OrganicGenus.Bacterial, (decimal?)0.028, (decimal?)0.57, (decimal?)20, (decimal?)110, (decimal?)0.001, (decimal?)0.096, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;M;T;A;L;K;Y;N;TTS;Ae;H", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_11_Tungsten = new OrganicVariant("Bacterial_11_Tungsten",2321104, OrganicSpecies.BacteriumOmentum, OrganicGenus.Bacterial, (decimal?)0.027, (decimal?)0.601, (decimal?)20, (decimal?)210, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;Thin,Neon;Thin,NeonRich", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;Ae;T;A;L;K;Y;DAB;TTS;M;H;DAV", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_A = new OrganicVariant("Bacterial_12_A",2321203, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.596, (decimal?)130, (decimal?)500, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Any", "F;F;H;A;N;B;A;K", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_Ae = new OrganicVariant("Bacterial_12_Ae",2321211, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.295, (decimal?)0.465, (decimal?)170, (decimal?)420, (decimal?)0.001, (decimal?)0.06, "RockyBody", "Thin,SulphurDioxide", "", "Major Silicate Vapour Geysers;None;Minor Metallic Magma", "Ae", "Ae", "", "", null, null, null, "Galactic Centre,Inner Scutum-Centaurus Arm,Odin's Hold,Norma Arm" ); + public static readonly OrganicVariant Bacterial_12_B = new OrganicVariant("Bacterial_12_B",2321202, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.041, (decimal?)0.586, (decimal?)150, (decimal?)500, (decimal?)0.001, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma", "H;N;B;B;Ae", "B", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_12_D = new OrganicVariant("Bacterial_12_D",2321214, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.269, (decimal?)0.554, (decimal?)150, (decimal?)430, (decimal?)0.001, (decimal?)0.022, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;Minor Rocky Magma;None", "N;DAB;DA;DC;H;DAV", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Hieronymus Delta,Izanami,Arcadian Stream,Outer Orion-Perseus Conflux,Inner Orion Spur,Odin's Hold,Norma Arm" ); + public static readonly OrganicVariant Bacterial_12_F = new OrganicVariant("Bacterial_12_F",2321204, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.04, (decimal?)0.606, (decimal?)130, (decimal?)6610, (decimal?)0, (decimal?)0.099, "RockyBody;F(White)Star;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Any", "F;F;G;H;A;K;M;N;M;B;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_G = new OrganicVariant("Bacterial_12_G",2321205, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.041, (decimal?)0.604, (decimal?)70, (decimal?)500, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Water;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;G;S;W;A;G;K;M;N;B;H;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_K = new OrganicVariant("Bacterial_12_K",2321206, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.041, (decimal?)0.935, (decimal?)100, (decimal?)500, (decimal?)0, (decimal?)794.156, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,Water;Thin,SulphurDioxide", "", "Any", "CJ;M;DAV;S;K;MS;F;A;N;M;A;H;G;K;M;B;DA;DC", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_L = new OrganicVariant("Bacterial_12_L",2321208, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.047, (decimal?)0.534, (decimal?)130, (decimal?)450, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Any", "DB;F;G;DBZ;A;L;K;N;M;DAB;DA;M;DC;H;K", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_M = new OrganicVariant("Bacterial_12_M",2321207, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.042, (decimal?)0.603, (decimal?)130, (decimal?)500, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;WaterBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Any", "L;DAB;M;DAV;DBZ;O;K;MS;S;F;DB;A;CN;N;M;DAZ;H;DBV;G;K;B;DCV;DA;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_N = new OrganicVariant("Bacterial_12_N",2321215, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.041, (decimal?)0.59, (decimal?)130, (decimal?)500, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma", "N;B;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_O = new OrganicVariant("Bacterial_12_O",2321201, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.314, (decimal?)0.454, (decimal?)140, (decimal?)390, (decimal?)0.001, (decimal?)0.086, "RockyBody", "Thin,SulphurDioxide", "", "None", "O", "O", "", "", null, null, null, "Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_12_T = new OrganicVariant("Bacterial_12_T",2321209, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.049, (decimal?)0.456, (decimal?)130, (decimal?)450, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "F;G;A;L;K;N;O;B;M;H;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_12_TTS = new OrganicVariant("Bacterial_12_TTS",2321210, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.047, (decimal?)0.52, (decimal?)130, (decimal?)450, (decimal?)0.001, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,SulphurDioxide", "", "None;Minor Metallic Magma", "F;G;A;B;TTS;Ae;H", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_12_W = new OrganicVariant("Bacterial_12_W",2321213, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.288, (decimal?)0.289, (decimal?)160, (decimal?)170, (decimal?)0.012, (decimal?)0.013, "RockyBody", "Thin,SulphurDioxide", "", "Major Silicate Vapour Geysers", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Bacterial_12_Y = new OrganicVariant("Bacterial_12_Y",2321212, OrganicSpecies.BacteriumCerbrus, OrganicGenus.Bacterial, (decimal?)0.271, (decimal?)0.442, (decimal?)140, (decimal?)350, (decimal?)0.001, (decimal?)0.086, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "None;Metallic Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;G;K;N;H", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Empyrean Straits,Odin's Hold,Inner Orion Spur,Norma Arm" ); + public static readonly OrganicVariant Bacterial_13_Cadmium = new OrganicVariant("Bacterial_13_Cadmium",2321306, OrganicSpecies.BacteriumVerrata, OrganicGenus.Bacterial, (decimal?)0.049, (decimal?)0.601, (decimal?)20, (decimal?)440, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,Helium;Thin,Neon;Thin,NeonRich;Thin,Nitrogen;Thin,Oxygen;Thin,Water", "", "Major Water Magma;Water Magma;Minor Water Magma;Major Water Geysers;Water Geysers", "F;G;T;A;L;K;Y;N;M;TTS;DA;M;DC;H;DAV", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_13_Mercury = new OrganicVariant("Bacterial_13_Mercury",2321301, OrganicSpecies.BacteriumVerrata, OrganicGenus.Bacterial, (decimal?)0.039, (decimal?)0.605, (decimal?)20, (decimal?)440, (decimal?)0.001, (decimal?)0.095, "IcyBody;RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,Helium;Thin,Neon;Thin,NeonRich;Thin,Nitrogen;Thin,Oxygen;Thin,Water", "", "Major Water Magma;Water Magma;Minor Water Magma;Major Water Geysers;Water Geysers;Minor Water Geysers", "F;G;T;A;L;K;Y;N;TTS;M;DC;H", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Kepler's Crest,Newton's Vault,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Bacterial_13_Molybdenum = new OrganicVariant("Bacterial_13_Molybdenum",2321305, OrganicSpecies.BacteriumVerrata, OrganicGenus.Bacterial, (decimal?)0.037, (decimal?)0.606, (decimal?)20, (decimal?)430, (decimal?)0.001, (decimal?)0.099, "IcyBody;RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,Helium;Thin,Neon;Thin,NeonRich;Thin,Nitrogen;Thin,Oxygen;Thin,Water", "", "Major Water Magma;Water Magma;Minor Water Magma;Major Water Geysers;Water Geysers", "F;G;T;A;L;K;B;TTS;DA;M;DC;H", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_13_Niobium = new OrganicVariant("Bacterial_13_Niobium",2321302, OrganicSpecies.BacteriumVerrata, OrganicGenus.Bacterial, (decimal?)0.03, (decimal?)0.607, (decimal?)20, (decimal?)430, (decimal?)0.001, (decimal?)0.098, "IcyBody;RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,Helium;Thin,Neon;Thin,NeonRich;Thin,Nitrogen;Thin,Oxygen;Thin,Water", "", "Major Water Magma;Water Magma;Minor Water Magma;Major Water Geysers;Water Geysers;Minor Water Geysers", "F;G;Ae;T;A;L;K;Y;N;M;TTS;DA;M;DC;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_13_Tin = new OrganicVariant("Bacterial_13_Tin",2321303, OrganicSpecies.BacteriumVerrata, OrganicGenus.Bacterial, (decimal?)0.03, (decimal?)0.601, (decimal?)20, (decimal?)430, (decimal?)0.001, (decimal?)0.099, "IcyBody;RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,Helium;Thin,Neon;Thin,NeonRich;Thin,Nitrogen;Thin,Oxygen;Thin,Water", "", "Major Water Magma;Water Magma;Minor Water Magma;Major Water Geysers;Water Geysers", "F;G;Ae;T;A;L;K;Y;M;DAB;TTS;M;DC;H", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Bacterial_13_Tungsten = new OrganicVariant("Bacterial_13_Tungsten",2321304, OrganicSpecies.BacteriumVerrata, OrganicGenus.Bacterial, (decimal?)0.046, (decimal?)0.61, (decimal?)20, (decimal?)450, (decimal?)0.001, (decimal?)0.098, "IcyBody;RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Argon;Thin,Helium;Thin,Neon;Thin,NeonRich;Thin,Nitrogen;Thin,Oxygen;Thin,Water", "", "Major Water Magma;Minor Water Magma;Major Water Geysers;Water Magma", "DB;F;G;Ae;T;L;K;Y;N;TTS;DA;M;DC;H", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Cactoid_01_A = new OrganicVariant("Cactoid_01_A",2330103, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.042, (decimal?)0.269, (decimal?)180, (decimal?)195, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;H;A;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Achilles's Altar,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_D = new OrganicVariant("Cactoid_01_D",2330114, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.174, (decimal?)0.192, (decimal?)180, (decimal?)195, (decimal?)0.056, (decimal?)0.068, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB;DA", "D", "", "", null, null, null, "Galactic Centre,Odin's Hold" ); + public static readonly OrganicVariant Cactoid_01_F = new OrganicVariant("Cactoid_01_F",2330104, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.04, (decimal?)0.267, (decimal?)180, (decimal?)195, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;B", "F", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_G = new OrganicVariant("Cactoid_01_G",2330105, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.041, (decimal?)0.269, (decimal?)180, (decimal?)195, (decimal?)0.025, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_L = new OrganicVariant("Cactoid_01_L",2330108, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.048, (decimal?)0.271, (decimal?)180, (decimal?)195, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;DAB;M;DC;H", "L", "", "", null, null, null, "Outer Orion Spur,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_M = new OrganicVariant("Cactoid_01_M",2330107, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.041, (decimal?)0.27, (decimal?)180, (decimal?)195, (decimal?)0.027, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;MS;N;M;DAB;DA;M;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_N = new OrganicVariant("Cactoid_01_N",2330115, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.047, (decimal?)0.262, (decimal?)180, (decimal?)195, (decimal?)0.027, (decimal?)0.095, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "B;N;B;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_T = new OrganicVariant("Cactoid_01_T",2330109, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.053, (decimal?)0.267, (decimal?)180, (decimal?)195, (decimal?)0.029, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "G;A;L;K;N;B;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cactoid_01_TTS = new OrganicVariant("Cactoid_01_TTS",2330110, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.046, (decimal?)0.267, (decimal?)180, (decimal?)195, (decimal?)0.027, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Sanguineous Rim,Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_01_Y = new OrganicVariant("Cactoid_01_Y",2330112, OrganicSpecies.CactoidaCortexum, OrganicGenus.Cactoid, (decimal?)0.082, (decimal?)0.204, (decimal?)180, (decimal?)195, (decimal?)0.035, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;M;H;K", "Y", "", "", null, null, null, "Galactic Centre,Empyrean Straits,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_02_A = new OrganicVariant("Cactoid_02_A",2330203, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.04, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "A", "A", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Cactoid_02_D = new OrganicVariant("Cactoid_02_D",2330214, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.197, (decimal?)0.214, (decimal?)160, (decimal?)177, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "F;D", "D", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_02_F = new OrganicVariant("Cactoid_02_F",2330204, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.042, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Metallic Magma;None;Minor Metallic Magma", "F;F;G;H;A;N;B", "F", "", "", null, null, null, "Formorian Frontier,Outer Orion Spur,Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,The Abyss" ); + public static readonly OrganicVariant Cactoid_02_G = new OrganicVariant("Cactoid_02_G",2330205, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.04, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;H;A;K;N;B;A", "G", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,The Abyss" ); + public static readonly OrganicVariant Cactoid_02_L = new OrganicVariant("Cactoid_02_L",2330208, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.046, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "DB;F;G;L;K;N;M;DA;M;DC;H;K", "L", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,The Abyss" ); + public static readonly OrganicVariant Cactoid_02_M = new OrganicVariant("Cactoid_02_M",2330207, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.045, (decimal?)0.276, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;A;K;N;M;O;DA;M;DC;H;K", "M", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,The Abyss" ); + public static readonly OrganicVariant Cactoid_02_N = new OrganicVariant("Cactoid_02_N",2330215, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.052, (decimal?)0.273, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None", "N;B;H", "N", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Dryman's Point,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron" ); + public static readonly OrganicVariant Cactoid_02_O = new OrganicVariant("Cactoid_02_O",2330201, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.142, (decimal?)0.143, (decimal?)170, (decimal?)177, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "O", "O", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_02_T = new OrganicVariant("Cactoid_02_T",2330209, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.046, (decimal?)0.273, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.011, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Major Silicate Vapour Geysers;None", "DB;F;G;A;L;K;N;M;B;DA;M;H;DAV", "T", "", "", null, null, null, "Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hawking's Gap,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,The Abyss" ); + public static readonly OrganicVariant Cactoid_02_TTS = new OrganicVariant("Cactoid_02_TTS",2330210, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.07, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.006, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "G;A;B;TTS", "TTS", "", "", null, null, null, "Inner Orion Spur,Hawking's Gap" ); + public static readonly OrganicVariant Cactoid_02_W = new OrganicVariant("Cactoid_02_W",2330213, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.197, (decimal?)0.198, (decimal?)170, (decimal?)177, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_02_Y = new OrganicVariant("Cactoid_02_Y",2330212, OrganicSpecies.CactoidaLapis, OrganicGenus.Cactoid, (decimal?)0.058, (decimal?)0.238, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "G;L;H;M", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_03_A = new OrganicVariant("Cactoid_03_A",2330303, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.039, (decimal?)0.27, (decimal?)200, (decimal?)450, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "Minor Water Magma;None", "F;F;H;A;N;B;K", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Cactoid_03_F = new OrganicVariant("Cactoid_03_F",2330304, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.04, (decimal?)0.275, (decimal?)160, (decimal?)450, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "Minor Water Magma;None", "F;F;G;H;A;M;N;B;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Cactoid_03_G = new OrganicVariant("Cactoid_03_G",2330305, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.041, (decimal?)0.274, (decimal?)160, (decimal?)450, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "Minor Water Magma;None", "F;G;A;G;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Cactoid_03_L = new OrganicVariant("Cactoid_03_L",2330308, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.046, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "None", "F;G;A;L;K;N;M;M", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Cactoid_03_M = new OrganicVariant("Cactoid_03_M",2330307, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.042, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.052, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "None", "F;G;H;A;K;N;M;M", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Cactoid_03_N = new OrganicVariant("Cactoid_03_N",2330315, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.041, (decimal?)0.061, (decimal?)390, (decimal?)450, (decimal?)0.058, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "Minor Water Magma;None", "N;B;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Cactoid_03_T = new OrganicVariant("Cactoid_03_T",2330309, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.049, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.06, (decimal?)0.099, "HighMetalContentBody", "Thin,Water", "", "None", "F;G;A;L;K;N;M;M;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Cactoid_03_TTS = new OrganicVariant("Cactoid_03_TTS",2330310, OrganicSpecies.CactoidaVermis, OrganicGenus.Cactoid, (decimal?)0.047, (decimal?)0.062, (decimal?)410, (decimal?)450, (decimal?)0.062, (decimal?)0.097, "RockyBody;HighMetalContentBody", "Thin,Water", "", "None", "TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Cactoid_04_A = new OrganicVariant("Cactoid_04_A",2330403, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.045, (decimal?)0.267, (decimal?)180, (decimal?)196, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "A;H", "A", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Orion-Cygnus Arm,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_D = new OrganicVariant("Cactoid_04_D",2330414, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.136, (decimal?)0.185, (decimal?)180, (decimal?)196, (decimal?)0.034, (decimal?)0.061, "RockyBody", "Thin,CarbonDioxide", "", "None", "DA;N;H", "D", "", "", null, null, null, "Izanami" ); + public static readonly OrganicVariant Cactoid_04_F = new OrganicVariant("Cactoid_04_F",2330404, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.042, (decimal?)0.267, (decimal?)180, (decimal?)196, (decimal?)0.025, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "A;F;G", "F", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Temple,Empyrean Straits,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_G = new OrganicVariant("Cactoid_04_G",2330405, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.041, (decimal?)0.266, (decimal?)180, (decimal?)196, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody;IcyBody", "Thin,CarbonDioxide", "", "None;Minor Water Geysers", "F;G;H;A;K;N;B", "G", "", "", null, null, null, "Elysian Shore,Achilles's Altar,Izanami,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_L = new OrganicVariant("Cactoid_04_L",2330408, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.085, (decimal?)0.268, (decimal?)180, (decimal?)196, (decimal?)0.026, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;DA;M;DC", "L", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Empyrean Straits,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_M = new OrganicVariant("Cactoid_04_M",2330407, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.045, (decimal?)0.27, (decimal?)180, (decimal?)196, (decimal?)0.027, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DBV;F;G;A;K;M;N;M;DC", "M", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_N = new OrganicVariant("Cactoid_04_N",2330415, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.051, (decimal?)0.267, (decimal?)180, (decimal?)196, (decimal?)0.031, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_T = new OrganicVariant("Cactoid_04_T",2330409, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.047, (decimal?)0.268, (decimal?)180, (decimal?)196, (decimal?)0.028, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "L;K;DAB;M;H", "T", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_04_TTS = new OrganicVariant("Cactoid_04_TTS",2330410, OrganicSpecies.CactoidaPullulanta, OrganicGenus.Cactoid, (decimal?)0.049, (decimal?)0.249, (decimal?)180, (decimal?)196, (decimal?)0.035, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Elysian Shore,Sanguineous Rim,Outer Orion-Perseus Conflux,Ryker's Hope,Vulcan Gate" ); + public static readonly OrganicVariant Cactoid_05_A = new OrganicVariant("Cactoid_05_A",2330503, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.043, (decimal?)0.275, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;A;B", "A", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Inner Orion-Perseus Conflux,Trojan Belt,The Veils,Odin's Hold,Inner Orion Spur,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Cactoid_05_D = new OrganicVariant("Cactoid_05_D",2330514, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.167, (decimal?)0.168, (decimal?)160, (decimal?)170, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "DAV", "D", "", "", null, null, null, "Formorian Frontier" ); + public static readonly OrganicVariant Cactoid_05_F = new OrganicVariant("Cactoid_05_F",2330504, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.041, (decimal?)0.276, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None;Minor Metallic Magma", "F;G;H;A;B", "F", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Newton's Vault,Hieronymus Delta,Hawking's Gap,Arcadian Stream,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Cactoid_05_G = new OrganicVariant("Cactoid_05_G",2330505, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.043, (decimal?)0.275, (decimal?)160, (decimal?)190, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Metallic Magma;None", "F;G;A;K;N;B;H", "G", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Scutum-Centaurus Arm,Galactic Centre,The Void,Norma Expanse,The Veils" ); + public static readonly OrganicVariant Cactoid_05_L = new OrganicVariant("Cactoid_05_L",2330508, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.056, (decimal?)0.275, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.008, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;H;A;L;K;N;M", "L", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Cactoid_05_M = new OrganicVariant("Cactoid_05_M",2330507, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.055, (decimal?)0.276, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.008, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;A;K;N;M;M", "M", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Cactoid_05_N = new OrganicVariant("Cactoid_05_N",2330515, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.044, (decimal?)0.275, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.007, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "N;H", "N", "", "", null, null, null, "Formorian Frontier,Inner Scutum-Centaurus Arm,Hieronymus Delta,Orion-Cygnus Arm,Trojan Belt,The Veils,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Cactoid_05_T = new OrganicVariant("Cactoid_05_T",2330509, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.065, (decimal?)0.272, (decimal?)160, (decimal?)180, (decimal?)0.001, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;A;K;DA;M;H;DAV", "T", "", "", null, null, null, "Formorian Frontier,Inner Scutum-Centaurus Arm,Trojan Belt,Odin's Hold,Galactic Centre,The Void,Norma Expanse,The Veils" ); + public static readonly OrganicVariant Cactoid_05_TTS = new OrganicVariant("Cactoid_05_TTS",2330510, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.138, (decimal?)0.261, (decimal?)160, (decimal?)180, (decimal?)0.001, (decimal?)0.004, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;TTS", "TTS", "", "", null, null, null, "Galactic Centre,The Void,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Cactoid_05_Y = new OrganicVariant("Cactoid_05_Y",2330512, OrganicSpecies.CactoidaPeperatis, OrganicGenus.Cactoid, (decimal?)0.219, (decimal?)0.22, (decimal?)160, (decimal?)170, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "H", "Y", "", "", null, null, null, "Odin's Hold" ); + public static readonly OrganicVariant Clypeus_01_A = new OrganicVariant("Clypeus_01_A",2340103, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.04, (decimal?)0.236, (decimal?)190, (decimal?)460, (decimal?)0.055, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "F;H;A;N;B;K", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_01_B = new OrganicVariant("Clypeus_01_B",2340102, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.04, (decimal?)0.217, (decimal?)190, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody", "Thin,Water;Thin,CarbonDioxide", "", "Minor Water Magma;None", "B", "B", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Inner Scutum-Centaurus Arm,Vulcan Gate,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Outer Orion-Perseus Conflux,Inner Orion Spur,Odin's Hold,Galactic Centre,Norma Expanse,Ryker's Hope,Norma Arm,The Veils" ); + public static readonly OrganicVariant Clypeus_01_D = new OrganicVariant("Clypeus_01_D",2340112, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.191, (decimal?)0.222, (decimal?)190, (decimal?)200, (decimal?)0.067, (decimal?)0.092, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB;H", "D", "", "", null, null, null, "Odin's Hold,Elysian Shore" ); + public static readonly OrganicVariant Clypeus_01_F = new OrganicVariant("Clypeus_01_F",2340104, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.04, (decimal?)0.236, (decimal?)190, (decimal?)460, (decimal?)0.055, (decimal?)0.099, "RockyBody", "Thin,Water;Thin,CarbonDioxide", "", "Minor Water Magma;None", "F;F;G;H;A;N;B;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_01_G = new OrganicVariant("Clypeus_01_G",2340105, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.041, (decimal?)0.237, (decimal?)190, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "F;G;H;A;G;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_01_K = new OrganicVariant("Clypeus_01_K",2340106, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.04, (decimal?)0.237, (decimal?)190, (decimal?)460, (decimal?)0.054, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "F;G;A;CN;K;N;DAB;M;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_01_L = new OrganicVariant("Clypeus_01_L",2340108, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.046, (decimal?)0.231, (decimal?)190, (decimal?)450, (decimal?)0.057, (decimal?)0.097, "RockyBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "F;G;A;K;M;H", "L", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Newton's Vault,Elysian Shore,Orion-Cygnus Arm,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Norma Expanse,Ryker's Hope,Norma Arm,The Abyss" ); + public static readonly OrganicVariant Clypeus_01_M = new OrganicVariant("Clypeus_01_M",2340107, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.044, (decimal?)0.237, (decimal?)190, (decimal?)460, (decimal?)0.054, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "F;G;A;K;M;N;M", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Clypeus_01_N = new OrganicVariant("Clypeus_01_N",2340113, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.041, (decimal?)0.231, (decimal?)190, (decimal?)460, (decimal?)0.057, (decimal?)0.099, "RockyBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "N;B;H", "N", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Clypeus_01_Y = new OrganicVariant("Clypeus_01_Y",2340110, OrganicSpecies.ClypeusLacrimam, OrganicGenus.Clypeus, (decimal?)0.203, (decimal?)0.211, (decimal?)190, (decimal?)200, (decimal?)0.076, (decimal?)0.082, "RockyBody", "Thin,CarbonDioxide", "", "None", "K", "Y", "", "", null, null, null, "Empyrean Straits,Inner Orion Spur" ); + public static readonly OrganicVariant Clypeus_02_A = new OrganicVariant("Clypeus_02_A",2340203, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.048, (decimal?)0.269, (decimal?)190, (decimal?)450, (decimal?)0.058, (decimal?)0.099, "HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Xibalba,Aquila's Halo,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_02_B = new OrganicVariant("Clypeus_02_B",2340202, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.052, (decimal?)0.059, (decimal?)400, (decimal?)440, (decimal?)0.069, (decimal?)0.088, "HighMetalContentBody", "Thin,Water", "", "None", "B", "B", "", "", null, null, null, "Arcadian Stream,Galactic Centre,Lyra's Song,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_02_F = new OrganicVariant("Clypeus_02_F",2340204, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.046, (decimal?)0.271, (decimal?)190, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "A;F", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_02_G = new OrganicVariant("Clypeus_02_G",2340205, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.046, (decimal?)0.272, (decimal?)190, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "G;A;F;B", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar" ); + public static readonly OrganicVariant Clypeus_02_K = new OrganicVariant("Clypeus_02_K",2340206, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.047, (decimal?)0.271, (decimal?)190, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "F;G;A;K;N;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_02_L = new OrganicVariant("Clypeus_02_L",2340208, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.045, (decimal?)0.269, (decimal?)190, (decimal?)450, (decimal?)0.053, (decimal?)0.099, "HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "None", "F;G;A;L;K;N;M;DCV;M;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_02_M = new OrganicVariant("Clypeus_02_M",2340207, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.045, (decimal?)0.269, (decimal?)190, (decimal?)460, (decimal?)0.052, (decimal?)0.099, "HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_02_N = new OrganicVariant("Clypeus_02_N",2340213, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.049, (decimal?)0.269, (decimal?)190, (decimal?)450, (decimal?)0.058, (decimal?)0.098, "HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Trojan Belt,Norma Expanse,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Clypeus_02_Y = new OrganicVariant("Clypeus_02_Y",2340210, OrganicSpecies.ClypeusMargaritus, OrganicGenus.Clypeus, (decimal?)0.082, (decimal?)0.083, (decimal?)190, (decimal?)200, (decimal?)0.097, (decimal?)0.098, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "K", "Y", "", "", null, null, null, "Odin's Hold" ); + public static readonly OrganicVariant Clypeus_03_A = new OrganicVariant("Clypeus_03_A",2340303, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.042, (decimal?)0.237, (decimal?)190, (decimal?)450, (decimal?)0.057, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "F;A;B;H", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_03_B = new OrganicVariant("Clypeus_03_B",2340302, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.041, (decimal?)0.211, (decimal?)190, (decimal?)460, (decimal?)0.059, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "N;B", "B", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_03_F = new OrganicVariant("Clypeus_03_F",2340304, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.041, (decimal?)0.235, (decimal?)190, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "F;F;G;H;A;N;B;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Clypeus_03_G = new OrganicVariant("Clypeus_03_G",2340305, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.043, (decimal?)0.233, (decimal?)190, (decimal?)450, (decimal?)0.057, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "None", "F;G;A;G;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Clypeus_03_K = new OrganicVariant("Clypeus_03_K",2340306, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.042, (decimal?)0.231, (decimal?)190, (decimal?)450, (decimal?)0.057, (decimal?)0.099, "RockyBody", "Thin,Water;Thin,CarbonDioxide", "", "None", "A;G;K;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Clypeus_03_M = new OrganicVariant("Clypeus_03_M",2340307, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.042, (decimal?)0.208, (decimal?)190, (decimal?)450, (decimal?)0.06, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "None", "M;H;M", "M", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Norma Arm,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Ryker's Hope,Temple" ); + public static readonly OrganicVariant Clypeus_03_N = new OrganicVariant("Clypeus_03_N",2340313, OrganicSpecies.ClypeusSpeculumi, OrganicGenus.Clypeus, (decimal?)0.041, (decimal?)0.237, (decimal?)190, (decimal?)460, (decimal?)0.058, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Conchas_01_Cadmium = new OrganicVariant("Conchas_01_Cadmium",2350106, OrganicSpecies.ConchaRenibus, OrganicGenus.Conchas, (decimal?)0.039, (decimal?)0.268, (decimal?)80, (decimal?)460, (decimal?)0.013, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "None;Minor Water Magma;Major Silicate Vapour Geysers", "F;CJ;L;M;DBZ;TTS;MS;K;DB;F;S;A;CN;N;M;H;G;K;B;DA;DC", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_01_Mercury = new OrganicVariant("Conchas_01_Mercury",2350101, OrganicSpecies.ConchaRenibus, OrganicGenus.Conchas, (decimal?)0.041, (decimal?)0.266, (decimal?)80, (decimal?)460, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "F;G;S;A;CJ;CN;G;K;L;MS;N;B;TTS;DA;M;H;K", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_01_Molybdenum = new OrganicVariant("Conchas_01_Molybdenum",2350105, OrganicSpecies.ConchaRenibus, OrganicGenus.Conchas, (decimal?)0.041, (decimal?)0.265, (decimal?)70, (decimal?)460, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "F;G;H;A;L;G;K;CN;MS;N;M;B;TTS;DA;M;S;K", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_01_Niobium = new OrganicVariant("Conchas_01_Niobium",2350102, OrganicSpecies.ConchaRenibus, OrganicGenus.Conchas, (decimal?)0.04, (decimal?)0.269, (decimal?)80, (decimal?)460, (decimal?)0.014, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "CJ;L;DAB;M;TTS;S;MS;K;F;A;CN;N;M;H;G;K;B;DC", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_01_Tin = new OrganicVariant("Conchas_01_Tin",2350103, OrganicSpecies.ConchaRenibus, OrganicGenus.Conchas, (decimal?)0.04, (decimal?)0.268, (decimal?)80, (decimal?)460, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "Major Metallic Magma;Minor Water Magma;Major Silicate Vapour Geysers;None", "F;G;S;A;L;CN;K;N;M;B;TTS;DA;M;DC;H;K", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_01_Tungsten = new OrganicVariant("Conchas_01_Tungsten",2350104, OrganicSpecies.ConchaRenibus, OrganicGenus.Conchas, (decimal?)0.041, (decimal?)0.266, (decimal?)70, (decimal?)460, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide;Thin,Water", "", "Major Silicate Vapour Geysers;None", "F;F;G;S;A;CJ;L;CN;K;N;M;B;TTS;DCV;M;H;K", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_02_A = new OrganicVariant("Conchas_02_A",2350202, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.04, (decimal?)0.271, (decimal?)150, (decimal?)180, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "F;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_02_B = new OrganicVariant("Conchas_02_B",2350201, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.069, (decimal?)0.274, (decimal?)150, (decimal?)180, (decimal?)0.001, (decimal?)0.005, "RockyBody", "Thin,Ammonia", "", "None", "B", "B", "", "", null, null, null, "Aquila's Halo,Inner Scutum-Centaurus Arm,Inner Orion Spur,Norma Expanse,Ryker's Hope,Norma Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Conchas_02_D = new OrganicVariant("Conchas_02_D",2350209, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.222, (decimal?)0.223, (decimal?)160, (decimal?)170, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "DAV", "D", "", "", null, null, null, "Izanami" ); + public static readonly OrganicVariant Conchas_02_F = new OrganicVariant("Conchas_02_F",2350203, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.041, (decimal?)0.273, (decimal?)150, (decimal?)180, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;H;A;M;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_02_G = new OrganicVariant("Conchas_02_G",2350204, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.04, (decimal?)0.274, (decimal?)150, (decimal?)180, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;G;H;A;K;N;B;A;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_02_K = new OrganicVariant("Conchas_02_K",2350205, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.04, (decimal?)0.274, (decimal?)150, (decimal?)180, (decimal?)0, (decimal?)0.014, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;G;S;H;A;K;N;B;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_02_L = new OrganicVariant("Conchas_02_L",2350206, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.046, (decimal?)0.226, (decimal?)150, (decimal?)180, (decimal?)0.001, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None;Major Rocky Magma", "F;G;K;M", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,The Formidine Rift,Sanguineous Rim,Outer Orion-Perseus Conflux,Inner Orion Spur,Outer Scutum-Centaurus Arm,The Abyss" ); + public static readonly OrganicVariant Conchas_02_N = new OrganicVariant("Conchas_02_N",2350210, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.044, (decimal?)0.273, (decimal?)150, (decimal?)180, (decimal?)0, (decimal?)0.01, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Conchas_02_Y = new OrganicVariant("Conchas_02_Y",2350207, OrganicSpecies.ConchaAureolas, OrganicGenus.Conchas, (decimal?)0.058, (decimal?)0.059, (decimal?)170, (decimal?)180, (decimal?)0.004, (decimal?)0.005, "HighMetalContentBody", "Thin,Ammonia", "", "None", "M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Conchas_03_A = new OrganicVariant("Conchas_03_A",2350302, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.04, (decimal?)0.254, (decimal?)150, (decimal?)200, (decimal?)0.002, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_03_B = new OrganicVariant("Conchas_03_B",2350301, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.046, (decimal?)0.211, (decimal?)150, (decimal?)200, (decimal?)0.004, (decimal?)0.078, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Inner Scutum-Centaurus Arm,The Conduit,Inner Orion Spur,Norma Expanse,Norma Arm" ); + public static readonly OrganicVariant Conchas_03_D = new OrganicVariant("Conchas_03_D",2350309, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.057, (decimal?)0.172, (decimal?)150, (decimal?)180, (decimal?)0.006, (decimal?)0.065, "RockyBody", "Thin,CarbonDioxide", "", "None", "DA;N;H", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Ryker's Hope,Temple" ); + public static readonly OrganicVariant Conchas_03_F = new OrganicVariant("Conchas_03_F",2350303, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.039, (decimal?)0.256, (decimal?)130, (decimal?)200, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;S;H;A;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_03_G = new OrganicVariant("Conchas_03_G",2350304, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.039, (decimal?)0.97, (decimal?)150, (decimal?)310, (decimal?)0.002, (decimal?)1012.827, "RockyBody;HighMetalContentBody;WaterBody", "Thin,CarbonDioxide", "", "Major Water Geysers;None", "F;G;H;A;K;N;B;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_03_K = new OrganicVariant("Conchas_03_K",2350305, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.039, (decimal?)0.237, (decimal?)150, (decimal?)200, (decimal?)0.002, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;CN;K;MS;N;M;B;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_03_L = new OrganicVariant("Conchas_03_L",2350306, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.046, (decimal?)0.224, (decimal?)150, (decimal?)200, (decimal?)0.002, (decimal?)0.097, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;M;M;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_03_N = new OrganicVariant("Conchas_03_N",2350310, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.042, (decimal?)0.213, (decimal?)150, (decimal?)200, (decimal?)0.003, (decimal?)0.093, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;O;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Conchas_03_W = new OrganicVariant("Conchas_03_W",2350308, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.045, (decimal?)0.162, (decimal?)150, (decimal?)180, (decimal?)0.003, (decimal?)0.049, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Conchas_03_Y = new OrganicVariant("Conchas_03_Y",2350307, OrganicSpecies.ConchaLabiata, OrganicGenus.Conchas, (decimal?)0.046, (decimal?)0.062, (decimal?)150, (decimal?)190, (decimal?)0.003, (decimal?)0.07, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;L;K;M", "Y", "", "", null, null, null, "Inner Orion Spur,Sanguineous Rim,Orion-Cygnus Arm,Newton's Vault" ); + public static readonly OrganicVariant Conchas_04_Antimony = new OrganicVariant("Conchas_04_Antimony",2350405, OrganicSpecies.ConchaBiconcavis, OrganicGenus.Conchas, (decimal?)0.127, (decimal?)0.274, (decimal?)40, (decimal?)60, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Nitrogen", "", "None", "F;G;A;K;M;H", "", "Antimony", "", null, null, null, "Norma Expanse,Perseus Arm,Inner Scutum-Centaurus Arm,Elysian Shore,The Formidine Rift,Izanami,Orion-Cygnus Arm,Arcadian Stream,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Lyra's Song,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Conchas_04_Polonium = new OrganicVariant("Conchas_04_Polonium",2350403, OrganicSpecies.ConchaBiconcavis, OrganicGenus.Conchas, (decimal?)0.109, (decimal?)0.264, (decimal?)40, (decimal?)60, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Nitrogen", "", "None", "M;H;K", "", "Polonium", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Norma Arm,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Expanse,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Conchas_04_Ruthenium = new OrganicVariant("Conchas_04_Ruthenium",2350404, OrganicSpecies.ConchaBiconcavis, OrganicGenus.Conchas, (decimal?)0.087, (decimal?)0.275, (decimal?)40, (decimal?)60, (decimal?)0.001, (decimal?)0.01, "RockyBody;HighMetalContentBody", "Thin,Nitrogen", "", "None", "G;H;K;M", "", "Ruthenium", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Conchas_04_Technetium = new OrganicVariant("Conchas_04_Technetium",2350401, OrganicSpecies.ConchaBiconcavis, OrganicGenus.Conchas, (decimal?)0.107, (decimal?)0.251, (decimal?)40, (decimal?)60, (decimal?)0, (decimal?)0.004, "RockyBody", "Thin,Nitrogen", "", "None", "F;G;CN;K;M;H", "", "Technetium", "", null, null, null, "Perseus Arm,Inner Scutum-Centaurus Arm,Izanami,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Achilles's Altar,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Conchas_04_Tellurium = new OrganicVariant("Conchas_04_Tellurium",2350402, OrganicSpecies.ConchaBiconcavis, OrganicGenus.Conchas, (decimal?)0.053, (decimal?)0.273, (decimal?)40, (decimal?)60, (decimal?)0.001, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,Nitrogen", "", "None", "F;G;K;M;H", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Perseus Arm,Temple,Tenebrae,Trojan Belt,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Conchas_04_Yttrium = new OrganicVariant("Conchas_04_Yttrium",2350406, OrganicSpecies.ConchaBiconcavis, OrganicGenus.Conchas, (decimal?)0.053, (decimal?)0.273, (decimal?)40, (decimal?)60, (decimal?)0, (decimal?)0.005, "RockyBody", "Thin,Nitrogen", "", "None", "F;G;K;M;H", "", "Yttrium", "", null, null, null, "Xibalba,Inner Scutum-Centaurus Arm,Vulcan Gate,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Arcadian Stream,Temple,Empyrean Straits,Odin's Hold,Outer Orion-Perseus Conflux,Inner Orion Spur,Galactic Centre,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Cone = new OrganicVariant("Cone",2100301, OrganicSpecies.BarkMounds, OrganicGenus.Cone, (decimal?)0.026, (decimal?)0.313, (decimal?)180, (decimal?)440, (decimal?)0, (decimal?)140, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "No Atmosphere;Thin,CarbonDioxide;Thin,CarbonDioxideRich;Thin,ArgonRich;Thin,SulphurDioxide;Thick,ArgonRich", "", "Any", "L;B;DAB;M;Ae;O;TTS;S;K;MS;DB;F;A;CN;N;M;A;H;G;K;B;DA;DC", "", "", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Elysian Shore,Hieronymus Delta,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Electricae_01_Antimony = new OrganicVariant("Electricae_01_Antimony",2360105, OrganicSpecies.ElectricaePluma, OrganicGenus.Electricae, (decimal?)0.032, (decimal?)0.276, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Major Water Magma;None;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "DBV;DB;DQ;G;Ae;A;N;B;O;DAB;DA;DC;DCV;DAZ;H;DAV", "A,V;A,VI;A,VII;N", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_01_Polonium = new OrganicVariant("Electricae_01_Polonium",2360103, OrganicSpecies.ElectricaePluma, OrganicGenus.Electricae, (decimal?)0.047, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0.001, (decimal?)0.08, "IcyBody", "Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Major Water Magma;None;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers", "DBV;DB;G;Ae;A;N;DAB;DA;DCV;DC;H;DAV", "A,V;A,VI;A,VII;N", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Mare Somnia,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_01_Ruthenium = new OrganicVariant("Electricae_01_Ruthenium",2360104, OrganicSpecies.ElectricaePluma, OrganicGenus.Electricae, (decimal?)0.032, (decimal?)0.275, (decimal?)20, (decimal?)150, (decimal?)0.001, (decimal?)0.098, "IcyBody", "Thin,NeonRich;Thin,ArgonRich;Thin,Argon;Thin,Neon", "", "Any", "DBV;DB;DQ;G;Ae;A;N;DAB;DA;DCV;DAZ;DC;H;DAV", "A,V;A,VI;A,VII;N", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_01_Technetium = new OrganicVariant("Electricae_01_Technetium",2360101, OrganicSpecies.ElectricaePluma, OrganicGenus.Electricae, (decimal?)0.044, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.097, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Major Water Magma;None;Minor Methane Magma;Major Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "DBV;DB;Ae;DBZ;A;N;B;DAB;DA;DCV;DAZ;DC;D;H;DAV", "A,V;A,VI;A,VII;N", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_01_Tellurium = new OrganicVariant("Electricae_01_Tellurium",2360102, OrganicSpecies.ElectricaePluma, OrganicGenus.Electricae, (decimal?)0.035, (decimal?)0.275, (decimal?)20, (decimal?)150, (decimal?)0, (decimal?)0.094, "IcyBody", "Thin,Neon;Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Major Water Magma;None;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "DBV;DB;F;Ae;DBZ;A;N;B;DAB;DA;DCV;DAZ;DC;H;DAV", "A,V;A,VI;A,VII;N", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_01_Yttrium = new OrganicVariant("Electricae_01_Yttrium",2360106, OrganicSpecies.ElectricaePluma, OrganicGenus.Electricae, (decimal?)0.045, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0.001, (decimal?)0.094, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Any", "DBV;DB;G;DBZ;A;N;B;DAB;DA;DCV;DAZ;DC;H;DAV", "A,V;A,VI;A,VII;N", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Electricae_02_Antimony = new OrganicVariant("Electricae_02_Antimony",2360205, OrganicSpecies.ElectricaeRadialem, OrganicGenus.Electricae, (decimal?)0.032, (decimal?)0.275, (decimal?)50, (decimal?)140, (decimal?)0, (decimal?)0.096, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Major Water Magma;None;Minor Methane Magma;Minor Ammonia Magma;Major Water Geysers;Minor Nitrogen Magma", "F;G;M;DAV;A;L;K;N;TTS;DA;Ae;DC;DAB;H;K", "", "Antimony", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_02_Polonium = new OrganicVariant("Electricae_02_Polonium",2360203, OrganicSpecies.ElectricaeRadialem, OrganicGenus.Electricae, (decimal?)0.033, (decimal?)0.274, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.097, "IcyBody", "Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Major Water Geysers;Minor Nitrogen Magma;None", "F;G;H;A;L;K;N;TTS;DA;M", "", "Polonium", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_02_Ruthenium = new OrganicVariant("Electricae_02_Ruthenium",2360204, OrganicSpecies.ElectricaeRadialem, OrganicGenus.Electricae, (decimal?)0.031, (decimal?)0.275, (decimal?)20, (decimal?)150, (decimal?)0, (decimal?)0.095, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Major Water Magma;None;Major Water Geysers;Water Geysers;Minor Nitrogen Magma", "DB;F;G;Ae;A;L;K;N;M;DAB;TTS;M;DC;H;DAV", "", "Ruthenium", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_02_Technetium = new OrganicVariant("Electricae_02_Technetium",2360201, OrganicSpecies.ElectricaeRadialem, OrganicGenus.Electricae, (decimal?)0.028, (decimal?)0.274, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.094, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Minor Nitrogen Magma;Major Water Geysers;Water Geysers;None", "F;G;A;L;K;N;M;TTS;M;DC;H;DAV", "", "Technetium", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_02_Tellurium = new OrganicVariant("Electricae_02_Tellurium",2360202, OrganicSpecies.ElectricaeRadialem, OrganicGenus.Electricae, (decimal?)0.031, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.098, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Major Water Magma;None;Minor Water Magma;Major Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "DB;F;G;M;T;A;L;K;N;M;TTS;DA;Ae;DC;DAB;H;DAV", "", "Tellurium", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Electricae_02_Yttrium = new OrganicVariant("Electricae_02_Yttrium",2360206, OrganicSpecies.ElectricaeRadialem, OrganicGenus.Electricae, (decimal?)0.03, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.092, "IcyBody", "Thin,NeonRich;Thin,Argon;Thin,ArgonRich", "", "Carbon Dioxide Geysers;Water Magma;None;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "DB;F;G;Ae;T;A;L;K;M;N;TTS;DA;M;DC;H;DAV", "", "Yttrium", "", (decimal?)100, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_01_A = new OrganicVariant("Fonticulus_01_A",2370103, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.269, (decimal?)0.27, (decimal?)60, (decimal?)70, (decimal?)0.002, (decimal?)0.003, "IcyBody", "Thin,NeonRich", "", "None", "H", "A", "", "", null, null, null, "Izanami" ); + public static readonly OrganicVariant Fonticulus_01_Ae = new OrganicVariant("Fonticulus_01_Ae",2370111, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.261, (decimal?)0.274, (decimal?)50, (decimal?)70, (decimal?)0.001, (decimal?)0.005, "IcyBody", "Thin,NeonRich", "", "Minor Nitrogen Magma;None", "H;Ae", "Ae", "", "", null, null, null, "Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Izanami,Arcadian Stream,Empyrean Straits,Odin's Hold,Galactic Centre,Outer Arm,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_01_B = new OrganicVariant("Fonticulus_01_B",2370102, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.273, (decimal?)0.274, (decimal?)60, (decimal?)70, (decimal?)0.003, (decimal?)0.004, "IcyBody", "Thin,NeonRich", "", "None", "H", "B", "", "", null, null, null, "Empyrean Straits" ); + public static readonly OrganicVariant Fonticulus_01_D = new OrganicVariant("Fonticulus_01_D",2370114, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.267, (decimal?)0.274, (decimal?)60, (decimal?)70, (decimal?)0.001, (decimal?)0.005, "IcyBody", "Thin,NeonRich", "", "None", "H;DA;DAV", "D", "", "", null, null, null, "Odin's Hold,Mare Somnia,Ryker's Hope,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Fonticulus_01_F = new OrganicVariant("Fonticulus_01_F",2370104, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.267, (decimal?)0.275, (decimal?)60, (decimal?)70, (decimal?)0.001, (decimal?)0.005, "IcyBody", "Thin,NeonRich", "", "None", "F", "F", "", "", null, null, null, "Mare Somnia,Errant Marches,Hawking's Gap,Inner Orion Spur,Galactic Centre,Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_01_G = new OrganicVariant("Fonticulus_01_G",2370105, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.266, (decimal?)0.274, (decimal?)60, (decimal?)70, (decimal?)0.001, (decimal?)0.005, "IcyBody", "Thin,NeonRich", "", "None", "G", "G", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Achilles's Altar,Outer Arm" ); + public static readonly OrganicVariant Fonticulus_01_K = new OrganicVariant("Fonticulus_01_K",2370106, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.261, (decimal?)0.276, (decimal?)50, (decimal?)70, (decimal?)0.001, (decimal?)0.006, "IcyBody", "Thin,NeonRich", "", "None", "F;G;A;K;H", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_01_L = new OrganicVariant("Fonticulus_01_L",2370108, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.254, (decimal?)0.275, (decimal?)50, (decimal?)70, (decimal?)0.001, (decimal?)0.028, "IcyBody", "Thin,NeonRich", "", "None", "L;K;M", "L", "", "", null, null, null, "Outer Orion Spur,Errant Marches,Inner Scutum-Centaurus Arm,Hawking's Gap,Norma Arm,Arcadian Stream,Temple,Inner Orion Spur,Galactic Centre,Outer Arm,Norma Expanse,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Fonticulus_01_M = new OrganicVariant("Fonticulus_01_M",2370107, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.258, (decimal?)0.276, (decimal?)50, (decimal?)70, (decimal?)0, (decimal?)0.006, "IcyBody", "Thin,NeonRich", "", "None", "F;G;A;K;N;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_01_N = new OrganicVariant("Fonticulus_01_N",2370115, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.265, (decimal?)0.275, (decimal?)60, (decimal?)70, (decimal?)0.002, (decimal?)0.005, "IcyBody", "Thin,NeonRich", "", "None", "N;H", "N", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Newton's Vault,Arcadian Stream,Odin's Hold,The Conduit,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Fonticulus_01_T = new OrganicVariant("Fonticulus_01_T",2370109, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.251, (decimal?)0.275, (decimal?)50, (decimal?)80, (decimal?)0.001, (decimal?)0.012, "IcyBody", "Thin,NeonRich;Thin,Neon", "", "None", "H;M", "T", "", "", null, null, null, "Izanami,Perseus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_01_TTS = new OrganicVariant("Fonticulus_01_TTS",2370110, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.262, (decimal?)0.275, (decimal?)60, (decimal?)70, (decimal?)0.001, (decimal?)0.005, "IcyBody", "Thin,NeonRich", "", "None", "TTS;Ae", "TTS", "", "", null, null, null, "Errant Marches,Inner Scutum-Centaurus Arm,Newton's Vault,Sanguineous Rim,Norma Arm,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Perseus Arm" ); + public static readonly OrganicVariant Fonticulus_01_Y = new OrganicVariant("Fonticulus_01_Y",2370112, OrganicSpecies.FonticuluaSegmentatus, OrganicGenus.Fonticulus, (decimal?)0.273, (decimal?)0.274, (decimal?)50, (decimal?)60, (decimal?)0, (decimal?)0.001, "IcyBody", "Thin,NeonRich;Thin,Neon", "", "None", "H", "Y", "", "", null, null, null, "Odin's Hold" ); + public static readonly OrganicVariant Fonticulus_02_A = new OrganicVariant("Fonticulus_02_A",2370203, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.046, (decimal?)0.274, (decimal?)50, (decimal?)150, (decimal?)0.001, (decimal?)0.076, "IcyBody;RockyIceBody", "Thin,Argon", "", "Major Water Geysers;None", "A;H", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_Ae = new OrganicVariant("Fonticulus_02_Ae",2370211, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.085, (decimal?)0.265, (decimal?)50, (decimal?)150, (decimal?)0.001, (decimal?)0.084, "IcyBody", "Thin,Argon", "", "Carbon Dioxide Geysers;Major Water Magma;None;Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "Ae", "Ae", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_02_B = new OrganicVariant("Fonticulus_02_B",2370202, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.096, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0.001, (decimal?)0.068, "IcyBody", "Thin,Argon", "", "Minor Methane Magma;None", "B;H;Ae", "B", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Newton's Vault,Izanami,Norma Arm,Empyrean Straits,The Conduit,Inner Orion Spur,Odin's Hold,Galactic Centre,Ryker's Hope,Temple" ); + public static readonly OrganicVariant Fonticulus_02_D = new OrganicVariant("Fonticulus_02_D",2370214, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.032, (decimal?)0.275, (decimal?)50, (decimal?)130, (decimal?)0.001, (decimal?)0.097, "IcyBody;RockyIceBody", "Thin,Argon", "", "Any", "DBV;DB;F;DQ;G;DBZ;N;D;DAB;DA;DCV;DC;DAZ;H;DAV", "D", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_F = new OrganicVariant("Fonticulus_02_F",2370204, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.046, (decimal?)0.276, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.098, "IcyBody;RockyIceBody", "Thin,Argon", "", "Major Water Magma;Carbon Dioxide Geysers;None;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "F;G;H;A;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_G = new OrganicVariant("Fonticulus_02_G",2370205, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.034, (decimal?)0.276, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.093, "IcyBody;RockyIceBody", "Thin,Argon", "", "Major Water Magma;Carbon Dioxide Geysers;None;Minor Methane Magma;Major Water Geysers;Water Geysers;Minor Nitrogen Magma", "F;G;H;A;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_K = new OrganicVariant("Fonticulus_02_K",2370206, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.027, (decimal?)0.276, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Argon", "", "Any", "DQ;F;G;H;A;DBZ;K;N;B;DCV;M;DA;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_L = new OrganicVariant("Fonticulus_02_L",2370208, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.044, (decimal?)0.275, (decimal?)50, (decimal?)140, (decimal?)0, (decimal?)0.089, "IcyBody;RockyIceBody", "Thin,Argon", "", "Any", "DB;F;G;A;L;K;N;M;DAB;DA;M;K;H;DAV", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_M = new OrganicVariant("Fonticulus_02_M",2370207, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.027, (decimal?)0.276, (decimal?)50, (decimal?)160, (decimal?)0, (decimal?)0.097, "IcyBody;RockyIceBody", "Thin,Argon", "", "Any", "DB;F;G;S;A;L;K;N;M;DAB;DA;M;DCV;DC;C;K;DAV", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_N = new OrganicVariant("Fonticulus_02_N",2370215, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.029, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0.001, (decimal?)0.082, "IcyBody;RockyIceBody", "Thin,Argon", "", "Major Water Magma;Carbon Dioxide Geysers;None;Major Water Geysers;Minor Water Geysers", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_O = new OrganicVariant("Fonticulus_02_O",2370201, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.234, (decimal?)0.235, (decimal?)80, (decimal?)90, (decimal?)0.012, (decimal?)0.013, "IcyBody", "Thin,Argon", "", "Major Water Geysers", "O", "O", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_02_T = new OrganicVariant("Fonticulus_02_T",2370209, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.044, (decimal?)0.275, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.088, "IcyBody;RockyIceBody", "Thin,Argon", "", "Major Water Magma;None;Minor Water Magma;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "DB;F;G;S;T;A;L;K;N;M;DA;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_TTS = new OrganicVariant("Fonticulus_02_TTS",2370210, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.035, (decimal?)0.275, (decimal?)50, (decimal?)150, (decimal?)0, (decimal?)0.095, "IcyBody;RockyIceBody", "Thin,Argon", "", "Minor Nitrogen Magma;Major Water Geysers;None", "F;G;A;K;B;TTS;Ae;H", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_02_Y = new OrganicVariant("Fonticulus_02_Y",2370212, OrganicSpecies.FonticuluaCampestris, OrganicGenus.Fonticulus, (decimal?)0.054, (decimal?)0.241, (decimal?)50, (decimal?)90, (decimal?)0.001, (decimal?)0.051, "IcyBody;RockyIceBody", "Thin,Argon", "", "Major Water Geysers;Minor Water Magma;Minor Methane Magma;None", "A;L;K;DA;M;H", "Y", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Izanami,Odin's Hold,Inner Orion Spur,Galactic Centre,Outer Arm,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fonticulus_03_A = new OrganicVariant("Fonticulus_03_A",2370303, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.23, (decimal?)0.274, (decimal?)70, (decimal?)130, (decimal?)0.02, (decimal?)0.098, "IcyBody", "Thin,ArgonRich", "", "None", "A;H", "A", "", "", null, null, null, "Outer Orion Spur,Kepler's Crest,Hawking's Gap,Hieronymus Delta,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_03_Ae = new OrganicVariant("Fonticulus_03_Ae",2370311, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.22, (decimal?)0.268, (decimal?)60, (decimal?)110, (decimal?)0.024, (decimal?)0.081, "IcyBody", "Thin,ArgonRich", "", "None", "Ae", "Ae", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Empyrean Straits,Outer Orion-Perseus Conflux,Norma Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Fonticulus_03_B = new OrganicVariant("Fonticulus_03_B",2370302, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.252, (decimal?)0.259, (decimal?)90, (decimal?)110, (decimal?)0.066, (decimal?)0.085, "IcyBody", "Thin,ArgonRich", "", "None", "H;Ae", "B", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Fonticulus_03_D = new OrganicVariant("Fonticulus_03_D",2370314, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.219, (decimal?)0.275, (decimal?)60, (decimal?)100, (decimal?)0.023, (decimal?)0.078, "IcyBody", "Thin,ArgonRich", "", "Minor Nitrogen Magma;Major Water Geysers;None", "DB;DAB;DA;DC;DAV", "D", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Norma Arm,Arcadian Stream,The Veils,Empyrean Straits,Odin's Hold,Inner Orion Spur,Norma Expanse,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Fonticulus_03_F = new OrganicVariant("Fonticulus_03_F",2370304, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.224, (decimal?)0.276, (decimal?)70, (decimal?)120, (decimal?)0.02, (decimal?)0.099, "IcyBody", "Thin,ArgonRich", "", "None", "F", "F", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_03_G = new OrganicVariant("Fonticulus_03_G",2370305, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.209, (decimal?)0.276, (decimal?)60, (decimal?)130, (decimal?)0.019, (decimal?)0.097, "IcyBody;RockyIceBody", "Thin,ArgonRich", "", "Major Water Geysers;None", "F;G;A;K;H", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,The Veils" ); + public static readonly OrganicVariant Fonticulus_03_K = new OrganicVariant("Fonticulus_03_K",2370306, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.078, (decimal?)0.275, (decimal?)60, (decimal?)120, (decimal?)0.02, (decimal?)0.099, "IcyBody", "Thin,ArgonRich", "", "Major Water Geysers;Water Geysers;None", "F;G;A;K;N;DA;M;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_03_L = new OrganicVariant("Fonticulus_03_L",2370308, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.217, (decimal?)0.275, (decimal?)60, (decimal?)110, (decimal?)0.021, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,ArgonRich", "", "Minor Nitrogen Magma;None", "F;G;L;K;M;N;DA;M;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Vulcan Gate,The Formidine Rift,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_03_M = new OrganicVariant("Fonticulus_03_M",2370307, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.211, (decimal?)0.276, (decimal?)60, (decimal?)130, (decimal?)0.019, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,ArgonRich", "", "None;Minor Carbon Dioxide Geysers", "DBV;DB;F;G;A;K;N;M;DAB;DA;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_03_N = new OrganicVariant("Fonticulus_03_N",2370315, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.22, (decimal?)0.275, (decimal?)60, (decimal?)120, (decimal?)0.021, (decimal?)0.098, "IcyBody", "Thin,ArgonRich", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Vulcan Gate,The Formidine Rift,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_03_T = new OrganicVariant("Fonticulus_03_T",2370309, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.229, (decimal?)0.274, (decimal?)60, (decimal?)100, (decimal?)0.043, (decimal?)0.098, "IcyBody;RockyIceBody", "Thin,ArgonRich", "", "None", "F;G;T;K;N;DA;M", "T", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Tenebrae,Acheron,Norma Arm,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_03_TTS = new OrganicVariant("Fonticulus_03_TTS",2370310, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.216, (decimal?)0.274, (decimal?)60, (decimal?)120, (decimal?)0.02, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,ArgonRich", "", "None", "F;A;TTS;Ae;H", "TTS", "", "", null, null, null, "Aquila's Halo,Elysian Shore,Newton's Vault,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Outer Arm,Norma Expanse,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Fonticulus_03_W = new OrganicVariant("Fonticulus_03_W",2370313, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.224, (decimal?)0.225, (decimal?)70, (decimal?)80, (decimal?)0.071, (decimal?)0.072, "IcyBody", "Thin,ArgonRich", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_03_Y = new OrganicVariant("Fonticulus_03_Y",2370312, OrganicSpecies.FonticuluaUpupam, OrganicGenus.Fonticulus, (decimal?)0.244, (decimal?)0.245, (decimal?)70, (decimal?)80, (decimal?)0.088, (decimal?)0.089, "IcyBody", "Thin,ArgonRich", "", "None", "M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_04_A = new OrganicVariant("Fonticulus_04_A",2370403, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.23, (decimal?)0.261, (decimal?)60, (decimal?)80, (decimal?)0.003, (decimal?)0.046, "IcyBody", "Thin,Nitrogen", "", "None", "A", "A", "", "", null, null, null, "Outer Orion Spur,Norma Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_04_Ae = new OrganicVariant("Fonticulus_04_Ae",2370411, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.192, (decimal?)0.271, (decimal?)50, (decimal?)90, (decimal?)0.001, (decimal?)0.088, "IcyBody", "Thin,Nitrogen", "", "Minor Nitrogen Magma;Minor Methane Magma;Water Geysers;None", "H;Ae", "Ae", "", "", null, null, null, "Sagittarius-Carina Arm,Elysian Shore,Inner Scutum-Centaurus Arm,Hieronymus Delta,Izanami,Sanguineous Rim,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Outer Arm,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fonticulus_04_B = new OrganicVariant("Fonticulus_04_B",2370402, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.205, (decimal?)0.268, (decimal?)50, (decimal?)90, (decimal?)0.002, (decimal?)0.019, "IcyBody", "Thin,Nitrogen", "", "None", "B;H", "B", "", "", null, null, null, "Newton's Vault,Empyrean Straits,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_04_D = new OrganicVariant("Fonticulus_04_D",2370414, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.189, (decimal?)0.27, (decimal?)50, (decimal?)90, (decimal?)0, (decimal?)0.097, "IcyBody", "Thin,Nitrogen", "", "Carbon Dioxide Geysers;Major Water Magma;None;Major Water Geysers;Water Geysers;Minor Carbon Dioxide Geysers", "DB;G;N;DAB;DA;DAZ;DC;H;DAV", "D", "", "", null, null, null, "Elysian Shore,Inner Scutum-Centaurus Arm,Newton's Vault,Izanami,Orion-Cygnus Arm,Dryman's Point,Norma Arm,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Outer Arm,Norma Expanse,Ryker's Hope,Perseus Arm" ); + public static readonly OrganicVariant Fonticulus_04_F = new OrganicVariant("Fonticulus_04_F",2370404, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.195, (decimal?)0.276, (decimal?)50, (decimal?)90, (decimal?)0.001, (decimal?)0.032, "IcyBody", "Thin,Nitrogen", "", "None", "A;F;H", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Vulcan Gate,Sagittarius-Carina Arm,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Kepler's Crest,Errant Marches,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_04_G = new OrganicVariant("Fonticulus_04_G",2370405, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.192, (decimal?)0.276, (decimal?)50, (decimal?)90, (decimal?)0.001, (decimal?)0.097, "IcyBody", "Thin,Nitrogen", "", "None", "F;A;G", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_04_K = new OrganicVariant("Fonticulus_04_K",2370406, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.19, (decimal?)0.276, (decimal?)50, (decimal?)90, (decimal?)0, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Nitrogen", "", "Major Water Geysers;Water Geysers;None", "F;G;H;A;K;N;B;M;DAZ;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_04_L = new OrganicVariant("Fonticulus_04_L",2370408, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.19, (decimal?)0.275, (decimal?)50, (decimal?)90, (decimal?)0.001, (decimal?)0.097, "IcyBody;RockyIceBody", "Thin,Nitrogen", "", "Minor Nitrogen Magma;None", "DB;F;G;A;L;K;N;M;DCV;M;DC;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_04_M = new OrganicVariant("Fonticulus_04_M",2370407, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.037, (decimal?)0.276, (decimal?)50, (decimal?)90, (decimal?)0, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Nitrogen", "", "Carbon Dioxide Geysers;None;Minor Methane Magma;Major Water Geysers;Minor Carbon Dioxide Geysers;Minor Nitrogen Magma", "F;G;A;CJ;K;N;M;DA;M;DAZ;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_04_N = new OrganicVariant("Fonticulus_04_N",2370415, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.191, (decimal?)0.274, (decimal?)50, (decimal?)90, (decimal?)0, (decimal?)0.077, "IcyBody", "Thin,Nitrogen", "", "None", "N;H", "N", "", "", null, null, null, "Mare Somnia,Kepler's Crest,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Izanami,Dryman's Point,Orion-Cygnus Arm,Arcadian Stream,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Arm,Ryker's Hope,Norma Arm,Vulcan Gate,The Abyss" ); + public static readonly OrganicVariant Fonticulus_04_O = new OrganicVariant("Fonticulus_04_O",2370401, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.249, (decimal?)0.25, (decimal?)60, (decimal?)70, (decimal?)0.003, (decimal?)0.004, "IcyBody", "Thin,Nitrogen", "", "None", "O", "O", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_04_T = new OrganicVariant("Fonticulus_04_T",2370409, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.198, (decimal?)0.275, (decimal?)50, (decimal?)80, (decimal?)0.001, (decimal?)0.095, "IcyBody;RockyIceBody", "Thin,Nitrogen", "", "Major Water Magma;Water Magma;None;Minor Carbon Dioxide Geysers", "DBV;F;T;L;K;N;M;M;DC;H", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_04_TTS = new OrganicVariant("Fonticulus_04_TTS",2370410, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.19, (decimal?)0.275, (decimal?)50, (decimal?)90, (decimal?)0.001, (decimal?)0.085, "IcyBody", "Thin,Nitrogen", "", "None", "F;TTS;Ae", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Inner Orion-Perseus Conflux,Errant Marches,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_04_Y = new OrganicVariant("Fonticulus_04_Y",2370412, OrganicSpecies.FonticuluaLapida, OrganicGenus.Fonticulus, (decimal?)0.212, (decimal?)0.266, (decimal?)50, (decimal?)70, (decimal?)0.001, (decimal?)0.093, "IcyBody;RockyIceBody", "Thin,Nitrogen", "", "Major Water Magma;Major Water Geysers;Water Geysers;None", "L;H;M", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Arm" ); + public static readonly OrganicVariant Fonticulus_05_A = new OrganicVariant("Fonticulus_05_A",2370503, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.239, (decimal?)0.274, (decimal?)140, (decimal?)180, (decimal?)0.014, (decimal?)0.081, "IcyBody", "Thin,Oxygen", "", "None", "A", "A", "", "", null, null, null, "Elysian Shore,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Achilles's Altar,Norma Expanse,Ryker's Hope,Vulcan Gate" ); + public static readonly OrganicVariant Fonticulus_05_B = new OrganicVariant("Fonticulus_05_B",2370502, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.244, (decimal?)0.246, (decimal?)140, (decimal?)160, (decimal?)0.018, (decimal?)0.032, "IcyBody", "Thin,Oxygen", "", "None", "Ae", "B", "", "", null, null, null, "Sanguineous Rim,Norma Arm" ); + public static readonly OrganicVariant Fonticulus_05_F = new OrganicVariant("Fonticulus_05_F",2370504, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.239, (decimal?)0.275, (decimal?)140, (decimal?)200, (decimal?)0.012, (decimal?)0.08, "IcyBody", "Thin,Oxygen", "", "Carbon Dioxide Geysers;Major Water Magma;Major Water Geysers;None", "F", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,The Formidine Rift,Norma Expanse,Norma Arm,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_05_G = new OrganicVariant("Fonticulus_05_G",2370505, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.24, (decimal?)0.274, (decimal?)140, (decimal?)180, (decimal?)0.013, (decimal?)0.06, "IcyBody", "Thin,Oxygen", "", "Major Water Geysers;None", "F;A;G", "G", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Hawking's Gap,Hieronymus Delta,Vulcan Gate,Sanguineous Rim,Norma Arm,Inner Orion Spur,Galactic Centre,Achilles's Altar,Outer Arm,Norma Expanse,Temple,The Veils" ); + public static readonly OrganicVariant Fonticulus_05_K = new OrganicVariant("Fonticulus_05_K",2370506, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.237, (decimal?)0.272, (decimal?)140, (decimal?)170, (decimal?)0.012, (decimal?)0.064, "IcyBody", "Thin,Oxygen", "", "Major Water Magma;Major Water Geysers;Water Magma;None", "A;F;K", "K", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Perseus Arm,Temple,Sagittarius-Carina Arm,The Formidine Rift,Norma Expanse,Inner Orion-Perseus Conflux,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_05_L = new OrganicVariant("Fonticulus_05_L",2370508, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.264, (decimal?)0.275, (decimal?)140, (decimal?)160, (decimal?)0.013, (decimal?)0.047, "IcyBody", "Thin,Oxygen", "", "None", "L;DAV;K;M", "L", "", "", null, null, null, "Outer Orion Spur,Errant Marches,Inner Scutum-Centaurus Arm,Elysian Shore,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Ryker's Hope,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fonticulus_05_M = new OrganicVariant("Fonticulus_05_M",2370507, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.25, (decimal?)0.275, (decimal?)140, (decimal?)160, (decimal?)0.013, (decimal?)0.074, "IcyBody", "Thin,Oxygen", "", "Major Water Geysers;Minor Ammonia Magma;None", "DA;G;K;M", "M", "", "", null, null, null, "Norma Expanse,Perseus Arm,Errant Marches,Elysian Shore,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Orion-Cygnus Arm,Arcadian Stream,Empyrean Straits,Inner Orion Spur,Galactic Centre,The Void,Lyra's Song,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Fonticulus_05_N = new OrganicVariant("Fonticulus_05_N",2370515, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.248, (decimal?)0.264, (decimal?)140, (decimal?)150, (decimal?)0.025, (decimal?)0.039, "IcyBody", "Thin,Oxygen", "", "None", "N", "N", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Odin's Hold" ); + public static readonly OrganicVariant Fonticulus_05_T = new OrganicVariant("Fonticulus_05_T",2370509, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.261, (decimal?)0.27, (decimal?)150, (decimal?)160, (decimal?)0.022, (decimal?)0.043, "IcyBody", "Thin,Oxygen", "", "Minor Nitrogen Magma;Major Water Geysers;None", "T;K;M", "T", "", "", null, null, null, "Izanami,Arcadian Stream,Empyrean Straits,Inner Orion Spur,Temple" ); + public static readonly OrganicVariant Fonticulus_05_TTS = new OrganicVariant("Fonticulus_05_TTS",2370510, OrganicSpecies.FonticuluaFluctus, OrganicGenus.Fonticulus, (decimal?)0.244, (decimal?)0.273, (decimal?)150, (decimal?)160, (decimal?)0.03, (decimal?)0.079, "IcyBody", "Thin,Oxygen", "", "None", "F;TTS;Ae", "TTS", "", "", null, null, null, "Izanami,Orion-Cygnus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse" ); + public static readonly OrganicVariant Fonticulus_06_A = new OrganicVariant("Fonticulus_06_A",2370603, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.029, (decimal?)0.036, (decimal?)80, (decimal?)110, (decimal?)0.04, (decimal?)0.062, "IcyBody", "Thin,Methane", "", "None", "A", "A", "", "", null, null, null, "Norma Expanse,Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_06_B = new OrganicVariant("Fonticulus_06_B",2370602, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.044, (decimal?)0.045, (decimal?)100, (decimal?)110, (decimal?)0.095, (decimal?)0.096, "IcyBody", "Thin,Methane", "", "None", "B", "B", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Fonticulus_06_D = new OrganicVariant("Fonticulus_06_D",2370614, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.027, (decimal?)0.046, (decimal?)80, (decimal?)110, (decimal?)0.037, (decimal?)0.098, "IcyBody", "Thin,Methane", "", "Minor Nitrogen Magma;Minor Methane Magma;None", "DBV;DB;F;DBZ;DAB;DA;DAZ;H;DAV", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Orion-Cygnus Arm,Norma Arm,Temple,Empyrean Straits,The Conduit,Inner Orion Spur,Odin's Hold,Galactic Centre,Achilles's Altar,Norma Expanse,Ryker's Hope,Perseus Arm" ); + public static readonly OrganicVariant Fonticulus_06_F = new OrganicVariant("Fonticulus_06_F",2370604, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.027, (decimal?)0.047, (decimal?)80, (decimal?)110, (decimal?)0.035, (decimal?)0.098, "IcyBody", "Thin,Methane", "", "Minor Nitrogen Magma;Minor Methane Magma;None", "F", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_06_G = new OrganicVariant("Fonticulus_06_G",2370605, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.026, (decimal?)0.047, (decimal?)80, (decimal?)110, (decimal?)0.033, (decimal?)0.099, "IcyBody", "Thin,Methane", "", "Minor Nitrogen Magma;Minor Methane Magma;None", "A;G;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_06_K = new OrganicVariant("Fonticulus_06_K",2370606, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.025, (decimal?)0.059, (decimal?)80, (decimal?)110, (decimal?)0.03, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Methane", "", "Minor Nitrogen Magma;Minor Methane Magma;None", "F;G;A;K;N;DA;M;DC;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_06_L = new OrganicVariant("Fonticulus_06_L",2370608, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.028, (decimal?)0.062, (decimal?)80, (decimal?)110, (decimal?)0.035, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Methane", "", "Minor Nitrogen Magma;Minor Methane Magma;None", "G;L;K;N;M;DAB;M;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_06_M = new OrganicVariant("Fonticulus_06_M",2370607, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.025, (decimal?)0.065, (decimal?)80, (decimal?)110, (decimal?)0.03, (decimal?)0.099, "IcyBody;RockyIceBody", "Thin,Methane", "", "Minor Nitrogen Magma;Minor Methane Magma;None", "DB;F;G;A;K;M;N;DCV;M;DA;DC;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_06_N = new OrganicVariant("Fonticulus_06_N",2370615, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.027, (decimal?)0.044, (decimal?)80, (decimal?)110, (decimal?)0.036, (decimal?)0.098, "IcyBody", "Thin,Methane", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Sagittarius-Carina Arm,Mare Somnia,Trojan Belt,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fonticulus_06_T = new OrganicVariant("Fonticulus_06_T",2370609, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.028, (decimal?)0.051, (decimal?)80, (decimal?)110, (decimal?)0.036, (decimal?)0.098, "IcyBody", "Thin,Methane", "", "Minor Nitrogen Magma;None", "T;L;K;DA;M", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Norma Expanse,Formorian Frontier,Kepler's Crest,Newton's Vault,Arcadian Stream,The Void,Xibalba,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fonticulus_06_TTS = new OrganicVariant("Fonticulus_06_TTS",2370610, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.027, (decimal?)0.045, (decimal?)80, (decimal?)110, (decimal?)0.036, (decimal?)0.096, "IcyBody", "Thin,Methane", "", "Minor Methane Magma;None", "F;TTS", "TTS", "", "", null, null, null, "Sagittarius-Carina Arm,Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Empyrean Straits,Inner Orion Spur,Outer Arm,Norma Expanse,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fonticulus_06_Y = new OrganicVariant("Fonticulus_06_Y",2370612, OrganicSpecies.FonticuluaDigitos, OrganicGenus.Fonticulus, (decimal?)0.031, (decimal?)0.05, (decimal?)90, (decimal?)110, (decimal?)0.039, (decimal?)0.099, "IcyBody", "Thin,Methane", "", "None", "L;M", "Y", "", "", null, null, null, "Errant Marches,Elysian Shore,Inner Orion Spur,Outer Arm,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Fumerolas_01_Cadmium = new OrganicVariant("Fumerolas_01_Cadmium",2380106, OrganicSpecies.FumerolaCarbosis, OrganicGenus.Fumerolas, (decimal?)0.025, (decimal?)0.271, (decimal?)50, (decimal?)230, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Nitrogen;Thin,Methane;Thin,SulphurDioxide", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;T;A;L;K;N;TTS;DA;M;DAZ;DC", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_01_Mercury = new OrganicVariant("Fumerolas_01_Mercury",2380101, OrganicSpecies.FumerolaCarbosis, OrganicGenus.Fumerolas, (decimal?)0.025, (decimal?)0.271, (decimal?)40, (decimal?)270, (decimal?)0.001, (decimal?)0.098, "IcyBody", "Thin,Argon;Thin,Nitrogen;Thin,Methane;Thin,SulphurDioxide", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;Ae;A;L;K;N;M;B;DA;M;DC;H", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_01_Molybdenum = new OrganicVariant("Fumerolas_01_Molybdenum",2380105, OrganicSpecies.FumerolaCarbosis, OrganicGenus.Fumerolas, (decimal?)0.025, (decimal?)0.274, (decimal?)30, (decimal?)270, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Nitrogen;Thin,Methane;Thin,SulphurDioxide", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;Ae;A;L;K;N;DAB;DA;M;DC;H", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_01_Niobium = new OrganicVariant("Fumerolas_01_Niobium",2380102, OrganicSpecies.FumerolaCarbosis, OrganicGenus.Fumerolas, (decimal?)0.026, (decimal?)0.274, (decimal?)50, (decimal?)270, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Nitrogen;Thin,Methane;Thin,SulphurDioxide", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "DBV;DB;F;G;Ae;A;L;K;N;DAB;DA;M;DC;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_01_Tin = new OrganicVariant("Fumerolas_01_Tin",2380103, OrganicSpecies.FumerolaCarbosis, OrganicGenus.Fumerolas, (decimal?)0.026, (decimal?)0.268, (decimal?)40, (decimal?)270, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Nitrogen;Thin,Methane;Thin,SulphurDioxide", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;Ae;A;K;N;DCV;M;DC;H;DAV", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_01_Tungsten = new OrganicVariant("Fumerolas_01_Tungsten",2380104, OrganicSpecies.FumerolaCarbosis, OrganicGenus.Fumerolas, (decimal?)0.026, (decimal?)0.27, (decimal?)50, (decimal?)280, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Nitrogen;Thin,Methane;Thin,SulphurDioxide", "", "Carbon Dioxide Geysers;Minor Methane Magma;Minor Carbon Dioxide Geysers", "F;G;A;L;K;N;DA;M;DC;H", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_02_Cadmium = new OrganicVariant("Fumerolas_02_Cadmium",2380206, OrganicSpecies.FumerolaExtremus, OrganicGenus.Fumerolas, (decimal?)0.042, (decimal?)0.273, (decimal?)70, (decimal?)210, (decimal?)0.001, (decimal?)0.099, "RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Methane;Thin,SulphurDioxide", "", "Any", "F;G;A;K;N;B;M;H", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_02_Mercury = new OrganicVariant("Fumerolas_02_Mercury",2380201, OrganicSpecies.FumerolaExtremus, OrganicGenus.Fumerolas, (decimal?)0.04, (decimal?)0.274, (decimal?)80, (decimal?)180, (decimal?)0.001, (decimal?)0.098, "RockyBody", "Thin,Ammonia;Thin,Methane;Thin,SulphurDioxide", "", "Any", "F;G;A;K;N;M;H;K", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Xibalba,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Fumerolas_02_Molybdenum = new OrganicVariant("Fumerolas_02_Molybdenum",2380205, OrganicSpecies.FumerolaExtremus, OrganicGenus.Fumerolas, (decimal?)0.041, (decimal?)0.274, (decimal?)50, (decimal?)180, (decimal?)0.001, (decimal?)0.097, "RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Methane;Thin,SulphurDioxide", "", "Any", "F;G;A;K;N;M;H;DAV", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_02_Niobium = new OrganicVariant("Fumerolas_02_Niobium",2380202, OrganicSpecies.FumerolaExtremus, OrganicGenus.Fumerolas, (decimal?)0.042, (decimal?)0.275, (decimal?)50, (decimal?)180, (decimal?)0.001, (decimal?)0.097, "RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Methane;Thin,SulphurDioxide", "", "Any", "F;G;A;K;N;B;M;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_02_Tin = new OrganicVariant("Fumerolas_02_Tin",2380203, OrganicSpecies.FumerolaExtremus, OrganicGenus.Fumerolas, (decimal?)0.04, (decimal?)0.273, (decimal?)60, (decimal?)210, (decimal?)0.001, (decimal?)0.099, "RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Methane;Thin,SulphurDioxide", "", "Any", "F;G;A;K;N;B;M;H;DAV", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_02_Tungsten = new OrganicVariant("Fumerolas_02_Tungsten",2380204, OrganicSpecies.FumerolaExtremus, OrganicGenus.Fumerolas, (decimal?)0.04, (decimal?)0.274, (decimal?)70, (decimal?)180, (decimal?)0.001, (decimal?)0.098, "RockyBody;RockyIceBody", "Thin,Ammonia;Thin,Methane;Thin,SulphurDioxide", "", "Any", "F;G;A;K;M;DC;H", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_03_Cadmium = new OrganicVariant("Fumerolas_03_Cadmium",2380306, OrganicSpecies.FumerolaNitris, OrganicGenus.Fumerolas, (decimal?)0.027, (decimal?)0.274, (decimal?)50, (decimal?)220, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "DB;F;G;A;L;K;N;TTS;DA;M;DAB;DC;H;DAV", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_03_Mercury = new OrganicVariant("Fumerolas_03_Mercury",2380301, OrganicSpecies.FumerolaNitris, OrganicGenus.Fumerolas, (decimal?)0.026, (decimal?)0.274, (decimal?)50, (decimal?)200, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "DB;F;G;A;K;DA;M;H", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_03_Molybdenum = new OrganicVariant("Fumerolas_03_Molybdenum",2380305, OrganicSpecies.FumerolaNitris, OrganicGenus.Fumerolas, (decimal?)0.026, (decimal?)0.274, (decimal?)50, (decimal?)220, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;Ae;A;L;K;N;DAB;DA;M;DC;H;DAV", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_03_Niobium = new OrganicVariant("Fumerolas_03_Niobium",2380302, OrganicSpecies.FumerolaNitris, OrganicGenus.Fumerolas, (decimal?)0.027, (decimal?)0.26, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "DB;F;DQ;G;Ae;A;L;K;N;DAB;DA;M;DAZ;DC;TTS;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,The Veils" ); + public static readonly OrganicVariant Fumerolas_03_Tin = new OrganicVariant("Fumerolas_03_Tin",2380303, OrganicSpecies.FumerolaNitris, OrganicGenus.Fumerolas, (decimal?)0.027, (decimal?)0.268, (decimal?)50, (decimal?)250, (decimal?)0.001, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;M;A;L;K;M;N;DAB;TTS;Ae;DA;DC;H", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Fumerolas_03_Tungsten = new OrganicVariant("Fumerolas_03_Tungsten",2380304, OrganicSpecies.FumerolaNitris, OrganicGenus.Fumerolas, (decimal?)0.026, (decimal?)0.25, (decimal?)50, (decimal?)240, (decimal?)0, (decimal?)0.099, "IcyBody", "Thin,Argon;Thin,Methane;", "", "Minor Nitrogen Magma;Minor Ammonia Magma", "F;G;A;L;K;N;TTS;DCV;M;DC;H", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_04_Cadmium = new OrganicVariant("Fumerolas_04_Cadmium",2380406, OrganicSpecies.FumerolaAquatis, OrganicGenus.Fumerolas, (decimal?)0.03, (decimal?)0.275, (decimal?)50, (decimal?)440, (decimal?)0, (decimal?)0.098, "IcyBody;RockyBody;RockyIceBody", "Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide", "", "Major Water Geysers;Major Water Magma;Minor Water Magma;Water Geysers;Water Magma", "L;DAB;M;Ae;DAV;T;O;F;A;M;N;H;G;K;B;DA;DCV;DC", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_04_Mercury = new OrganicVariant("Fumerolas_04_Mercury",2380401, OrganicSpecies.FumerolaAquatis, OrganicGenus.Fumerolas, (decimal?)0.031, (decimal?)0.274, (decimal?)50, (decimal?)440, (decimal?)0.001, (decimal?)0.093, "IcyBody;RockyBody;RockyIceBody", "Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide", "", "Major Water Geysers;Major Water Magma;Minor Water Magma;Water Geysers;Water Magma", "F;G;Ae;A;L;K;N;B;TTS;DA;M;DCV;DC;DAB;H", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_04_Molybdenum = new OrganicVariant("Fumerolas_04_Molybdenum",2380405, OrganicSpecies.FumerolaAquatis, OrganicGenus.Fumerolas, (decimal?)0.031, (decimal?)0.275, (decimal?)50, (decimal?)440, (decimal?)0, (decimal?)0.099, "IcyBody;RockyBody;RockyIceBody", "Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide", "", "Major Water Geysers;Major Water Magma;Minor Water Magma;Water Geysers;Water Magma", "DBV;F;G;Ae;H;A;L;K;N;B;DAB;DA;M;DC", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_04_Niobium = new OrganicVariant("Fumerolas_04_Niobium",2380402, OrganicSpecies.FumerolaAquatis, OrganicGenus.Fumerolas, (decimal?)0.028, (decimal?)0.275, (decimal?)50, (decimal?)440, (decimal?)0.001, (decimal?)0.098, "IcyBody;RockyBody;RockyIceBody", "Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide", "", "Major Water Geysers;Major Water Magma;Minor Water Magma;Water Geysers;Water Magma", "F;G;M;A;L;K;N;TTS;DA;Ae;DC;DAZ;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_04_Tin = new OrganicVariant("Fumerolas_04_Tin",2380403, OrganicSpecies.FumerolaAquatis, OrganicGenus.Fumerolas, (decimal?)0.032, (decimal?)0.274, (decimal?)20, (decimal?)450, (decimal?)0, (decimal?)0.098, "IcyBody;RockyBody;RockyIceBody", "Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide", "", "Major Water Geysers;Major Water Magma;Minor Water Magma;Water Geysers;Water Magma", "F;G;T;A;L;K;N;B;DAB;DA;M;DC;D;H", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fumerolas_04_Tungsten = new OrganicVariant("Fumerolas_04_Tungsten",2380404, OrganicSpecies.FumerolaAquatis, OrganicGenus.Fumerolas, (decimal?)0.031, (decimal?)0.273, (decimal?)20, (decimal?)450, (decimal?)0, (decimal?)0.094, "IcyBody;RockyBody;RockyIceBody", "Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide", "", "Major Water Geysers;Major Water Magma;Minor Water Magma;Water Geysers;Water Magma", "DB;F;G;A;L;K;N;DAB;DA;M;DC;H", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_01_Antimony = new OrganicVariant("Fungoids_01_Antimony",2390105, OrganicSpecies.FungoidaSetisis, OrganicGenus.Fungoids, (decimal?)0.033, (decimal?)0.275, (decimal?)60, (decimal?)180, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Methane", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "F;G;A;L;CN;K;N;M;B;TTS;DA;M;DC;DAB;H;K", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_01_Polonium = new OrganicVariant("Fungoids_01_Polonium",2390103, OrganicSpecies.FungoidaSetisis, OrganicGenus.Fungoids, (decimal?)0.035, (decimal?)0.275, (decimal?)60, (decimal?)180, (decimal?)0, (decimal?)0.095, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Methane", "", "Metallic Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "DB;F;G;A;L;K;N;M;B;DAB;TTS;M;DC;C;H", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_01_Ruthenium = new OrganicVariant("Fungoids_01_Ruthenium",2390104, OrganicSpecies.FungoidaSetisis, OrganicGenus.Fungoids, (decimal?)0.034, (decimal?)0.275, (decimal?)60, (decimal?)180, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Methane", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma", "W;L;DAB;M;DAV;O;TTS;K;F;A;CN;N;M;H;G;K;B;DC", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_01_Technetium = new OrganicVariant("Fungoids_01_Technetium",2390101, OrganicSpecies.FungoidaSetisis, OrganicGenus.Fungoids, (decimal?)0.037, (decimal?)0.275, (decimal?)60, (decimal?)180, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Methane", "", "Metallic Magma;None;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "CJ;L;M;DAV;TTS;K;S;DB;F;A;CN;N;D;H;G;K;B;DCV;DA;DC", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_01_Tellurium = new OrganicVariant("Fungoids_01_Tellurium",2390102, OrganicSpecies.FungoidaSetisis, OrganicGenus.Fungoids, (decimal?)0.035, (decimal?)0.275, (decimal?)60, (decimal?)190, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Methane", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Major Rocky Magma;Minor Metallic Magma", "CJ;L;DAB;M;DAV;O;TTS;K;S;F;A;CN;N;M;H;G;K;B;DA;DC", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_01_Yttrium = new OrganicVariant("Fungoids_01_Yttrium",2390106, OrganicSpecies.FungoidaSetisis, OrganicGenus.Fungoids, (decimal?)0.035, (decimal?)0.275, (decimal?)60, (decimal?)230, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia;Thin,Methane", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "L;M;DBZ;O;TTS;K;MS;F;A;N;M;A;H;G;K;B;DCV;DA;DC", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_02_Cadmium = new OrganicVariant("Fungoids_02_Cadmium",2390206, OrganicSpecies.FungoidaStabitis, OrganicGenus.Fungoids, (decimal?)0.04, (decimal?)0.268, (decimal?)180, (decimal?)195, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;A;L;CN;K;N;M;B;TTS;M;H;K", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fungoids_02_Mercury = new OrganicVariant("Fungoids_02_Mercury",2390201, OrganicSpecies.FungoidaStabitis, OrganicGenus.Fungoids, (decimal?)0.041, (decimal?)0.269, (decimal?)180, (decimal?)195, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;H;A;L;K;N;M;B;TTS;DA;M;DAB;K", "", "Mercury", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Achilles's Altar,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fungoids_02_Molybdenum = new OrganicVariant("Fungoids_02_Molybdenum",2390205, OrganicSpecies.FungoidaStabitis, OrganicGenus.Fungoids, (decimal?)0.041, (decimal?)0.268, (decimal?)180, (decimal?)195, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "DB;F;G;S;A;L;G;K;CN;N;M;B;TTS;DA;M;H;K", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fungoids_02_Niobium = new OrganicVariant("Fungoids_02_Niobium",2390202, OrganicSpecies.FungoidaStabitis, OrganicGenus.Fungoids, (decimal?)0.041, (decimal?)0.269, (decimal?)180, (decimal?)195, (decimal?)0.01, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "DB;F;G;H;A;CN;L;K;N;M;B;TTS;M;S;K", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fungoids_02_Tin = new OrganicVariant("Fungoids_02_Tin",2390203, OrganicSpecies.FungoidaStabitis, OrganicGenus.Fungoids, (decimal?)0.04, (decimal?)0.267, (decimal?)180, (decimal?)195, (decimal?)0.004, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;S;A;L;G;K;CN;N;M;B;TTS;M;H;K", "", "Tin", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fungoids_02_Tungsten = new OrganicVariant("Fungoids_02_Tungsten",2390204, OrganicSpecies.FungoidaStabitis, OrganicGenus.Fungoids, (decimal?)0.041, (decimal?)0.293, (decimal?)180, (decimal?)195, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody;IcyBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;S;A;L;K;N;B;TTS;M;H;K", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Elysian Shore,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Fungoids_03_Antimony = new OrganicVariant("Fungoids_03_Antimony",2390305, OrganicSpecies.FungoidaBullarum, OrganicGenus.Fungoids, (decimal?)0.044, (decimal?)0.275, (decimal?)50, (decimal?)170, (decimal?)0, (decimal?)0.09, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Nitrogen;Thin,Argon", "", "None", "F;G;A;L;K;N;M;TTS;M;H", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_03_Polonium = new OrganicVariant("Fungoids_03_Polonium",2390303, OrganicSpecies.FungoidaBullarum, OrganicGenus.Fungoids, (decimal?)0.062, (decimal?)0.275, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.088, "RockyBody;RockyIceBody", "Thin,Nitrogen;Thin,Argon", "", "None", "F;G;H;A;L;K;N;M;TTS;M;DC", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_03_Ruthenium = new OrganicVariant("Fungoids_03_Ruthenium",2390304, OrganicSpecies.FungoidaBullarum, OrganicGenus.Fungoids, (decimal?)0.06, (decimal?)0.275, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Nitrogen;Thin,Argon", "", "None", "DBV;F;G;A;L;K;N;M;TTS;M;DC;H", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_03_Technetium = new OrganicVariant("Fungoids_03_Technetium",2390301, OrganicSpecies.FungoidaBullarum, OrganicGenus.Fungoids, (decimal?)0.059, (decimal?)0.276, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.084, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Nitrogen;Thin,Argon", "", "None", "F;G;A;K;N;M;TTS;DA;M;H", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_03_Tellurium = new OrganicVariant("Fungoids_03_Tellurium",2390302, OrganicSpecies.FungoidaBullarum, OrganicGenus.Fungoids, (decimal?)0.059, (decimal?)0.276, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.097, "HighMetalContentBody;RockyIceBody", "Thin,Nitrogen;Thin,Argon", "", "None", "F;G;A;L;K;N;M;TTS;DA;M;DC;H", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_03_Yttrium = new OrganicVariant("Fungoids_03_Yttrium",2390306, OrganicSpecies.FungoidaBullarum, OrganicGenus.Fungoids, (decimal?)0.058, (decimal?)0.275, (decimal?)50, (decimal?)130, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Nitrogen;Thin,Argon", "", "None", "F;G;A;L;K;N;M;TTS;DA;M;H", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_04_Cadmium = new OrganicVariant("Fungoids_04_Cadmium",2390406, OrganicSpecies.FungoidaGelata, OrganicGenus.Fungoids, (decimal?)0.039, (decimal?)0.267, (decimal?)180, (decimal?)195, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;DBZ;A;CJ;L;CN;K;N;M;B;TTS;DA;M;H;MS", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_04_Mercury = new OrganicVariant("Fungoids_04_Mercury",2390401, OrganicSpecies.FungoidaGelata, OrganicGenus.Fungoids, (decimal?)0.042, (decimal?)0.268, (decimal?)180, (decimal?)195, (decimal?)0.011, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;S;A;CJ;CN;L;K;N;M;B;TTS;DA;M;DC;H;MS", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_04_Molybdenum = new OrganicVariant("Fungoids_04_Molybdenum",2390405, OrganicSpecies.FungoidaGelata, OrganicGenus.Fungoids, (decimal?)0.041, (decimal?)0.267, (decimal?)180, (decimal?)195, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;F;G;S;A;L;G;K;CN;MS;N;M;B;M;DC;H;K", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_04_Niobium = new OrganicVariant("Fungoids_04_Niobium",2390402, OrganicSpecies.FungoidaGelata, OrganicGenus.Fungoids, (decimal?)0.04, (decimal?)0.27, (decimal?)180, (decimal?)195, (decimal?)0.012, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Metallic Magma;Major Silicate Vapour Geysers;None", "F;F;G;S;A;CN;K;N;M;B;TTS;M;DC;H;K", "", "Niobium", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_04_Tin = new OrganicVariant("Fungoids_04_Tin",2390403, OrganicSpecies.FungoidaGelata, OrganicGenus.Fungoids, (decimal?)0.041, (decimal?)0.27, (decimal?)180, (decimal?)195, (decimal?)0.002, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Metallic Magma;Major Silicate Vapour Geysers;None", "F;G;S;A;CN;G;K;L;N;B;DA;M;DC;DCV;K;H;MS", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Fungoids_04_Tungsten = new OrganicVariant("Fungoids_04_Tungsten",2390404, OrganicSpecies.FungoidaGelata, OrganicGenus.Fungoids, (decimal?)0.04, (decimal?)0.272, (decimal?)180, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Water;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;F;G;S;A;CJ;L;CN;K;N;B;TTS;M;DC;H", "", "Tungsten", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Ground_Struct_Ice = new OrganicVariant("Ground_Struct_Ice",2101500, OrganicSpecies.CrystallineShards, OrganicGenus.Ground_Struct_Ice, (decimal?)0.025, (decimal?)0.19, (decimal?)40, (decimal?)250, (decimal?)0, (decimal?)0.0081, "IcyBody;HighMetalContentBody;RockyIceBody;RockyBody", "No Atmosphere;Thin,CarbonDioxide;Thin,Argon;Thin,CarbonDioxideRich;Thin,Methane;Thin,ArgonRich;Thin,Neon;Thin,Helium;Thin,NeonRich", "", "", "F;G;A;K;N;B;M;DC;H;K", "A;B;F;G;K;M;S;N;H", "", "EarthLikeBody,AmmoniaWorld,GasGiantWithWaterBasedLife,GasGiantWithAmmoniaBasedLife,WaterGiant", null, (decimal?)12000, null, "Sanguineous Rim,The Conduit,Outer Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Acheron,Formorian Frontier,Kepler's Crest,Errant Marches,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Hieronymus Delta,Achilles's Altar" ); + public static readonly OrganicVariant Osseus_01_A = new OrganicVariant("Osseus_01_A",2400102, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.045, (decimal?)0.269, (decimal?)180, (decimal?)190, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;A;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_01_F = new OrganicVariant("Osseus_01_F",2400103, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.042, (decimal?)0.271, (decimal?)180, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_01_G = new OrganicVariant("Osseus_01_G",2400104, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.041, (decimal?)0.268, (decimal?)180, (decimal?)190, (decimal?)0.025, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_01_K = new OrganicVariant("Osseus_01_K",2400105, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.042, (decimal?)0.271, (decimal?)180, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;N;B;M;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_01_T = new OrganicVariant("Osseus_01_T",2400106, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.053, (decimal?)0.267, (decimal?)180, (decimal?)190, (decimal?)0.028, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Xibalba,Aquila's Halo,Empyrean Straits,Inner Orion Spur" ); + public static readonly OrganicVariant Osseus_01_TTS = new OrganicVariant("Osseus_01_TTS",2400107, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.121, (decimal?)0.267, (decimal?)180, (decimal?)190, (decimal?)0.027, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,The Formidine Rift,Empyrean Straits,Inner Orion Spur,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Osseus_01_Y = new OrganicVariant("Osseus_01_Y",2400109, OrganicSpecies.OsseusFractus, OrganicGenus.Osseus, (decimal?)0.141, (decimal?)0.196, (decimal?)180, (decimal?)190, (decimal?)0.035, (decimal?)0.072, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;H;M", "Y", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Osseus_02_Cadmium = new OrganicVariant("Osseus_02_Cadmium",2400206, OrganicSpecies.OsseusDiscus, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.261, (decimal?)60, (decimal?)180, (decimal?)0.002, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Water;Thin,Ammonia", "", "Any", "F;G;S;A;CJ;L;CN;K;MS;N;M;B;M;H;K", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_02_Mercury = new OrganicVariant("Osseus_02_Mercury",2400201, OrganicSpecies.OsseusDiscus, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.126, (decimal?)80, (decimal?)180, (decimal?)0.007, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Methane;Thin,Water;Thin,Ammonia", "", "Any", "F;G;S;A;CJ;CN;G;K;L;MS;N;M;B;M;H;K", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_02_Molybdenum = new OrganicVariant("Osseus_02_Molybdenum",2400205, OrganicSpecies.OsseusDiscus, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.269, (decimal?)80, (decimal?)180, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Water;Thin,Ammonia", "", "Any", "F;G;S;A;CN;G;K;L;MS;N;M;B;M;K;H;DAV", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_02_Niobium = new OrganicVariant("Osseus_02_Niobium",2400202, OrganicSpecies.OsseusDiscus, OrganicGenus.Osseus, (decimal?)0.036, (decimal?)0.266, (decimal?)80, (decimal?)180, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Water;Thin,Ammonia", "", "Any", "F;G;H;A;CN;L;K;MS;N;M;B;M;M;S;K", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_02_Tin = new OrganicVariant("Osseus_02_Tin",2400203, OrganicSpecies.OsseusDiscus, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.251, (decimal?)80, (decimal?)180, (decimal?)0.002, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Water;Thin,Ammonia", "", "Any", "F;G;DAV;S;A;CN;L;K;MS;N;M;B;M;M;H;K", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_02_Tungsten = new OrganicVariant("Osseus_02_Tungsten",2400204, OrganicSpecies.OsseusDiscus, OrganicGenus.Osseus, (decimal?)0.039, (decimal?)0.273, (decimal?)80, (decimal?)180, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Water;Thin,Ammonia", "", "Any", "F;G;S;A;CN;K;N;M;B;M;DC;H;K", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Osseus_03_A = new OrganicVariant("Osseus_03_A",2400302, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Metallic Magma;Minor Water Magma;None", "F;A;B", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_03_F = new OrganicVariant("Osseus_03_F",2400303, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.041, (decimal?)0.276, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.051, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "Minor Water Magma;None", "F;G;H;A;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_03_G = new OrganicVariant("Osseus_03_G",2400304, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.041, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Minor Water Magma;None;Minor Metallic Magma", "F;G;H;A;K;M;N;B;A;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_03_K = new OrganicVariant("Osseus_03_K",2400305, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "Major Silicate Vapour Geysers;None", "F;G;H;A;K;N;B;DA;M;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_03_O = new OrganicVariant("Osseus_03_O",2400301, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.142, (decimal?)0.151, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "O", "O", "", "", null, null, null, "Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Osseus_03_T = new OrganicVariant("Osseus_03_T",2400306, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.049, (decimal?)0.274, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "None", "DB;F;G;A;L;K;N;M;B;DA;M;H;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_03_TTS = new OrganicVariant("Osseus_03_TTS",2400307, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.061, (decimal?)0.275, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.07, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Ammonia", "", "None", "F;G;A;K;B;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,The Formidine Rift,Acheron,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Galactic Centre,The Void,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Osseus_03_Y = new OrganicVariant("Osseus_03_Y",2400309, OrganicSpecies.OsseusSpiralis, OrganicGenus.Osseus, (decimal?)0.058, (decimal?)0.238, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.008, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "G;L;K;M;H", "Y", "", "", null, null, null, "Arcadian Stream,Odin's Hold,Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Osseus_04_Antimony = new OrganicVariant("Osseus_04_Antimony",2400405, OrganicSpecies.OsseusPumice, OrganicGenus.Osseus, (decimal?)0.033, (decimal?)0.275, (decimal?)40, (decimal?)140, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Nitrogen;Thin,Argon;Thin,ArgonRich", "", "Any", "F;G;H;A;L;K;N;M;B;TTS;DA;M;DC;K", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_04_Polonium = new OrganicVariant("Osseus_04_Polonium",2400403, OrganicSpecies.OsseusPumice, OrganicGenus.Osseus, (decimal?)0.033, (decimal?)0.276, (decimal?)40, (decimal?)130, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Nitrogen;Thin,Argon;Thin,ArgonRich", "", "Any", "F;G;A;L;K;N;M;TTS;M;DC;H", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_04_Ruthenium = new OrganicVariant("Osseus_04_Ruthenium",2400404, OrganicSpecies.OsseusPumice, OrganicGenus.Osseus, (decimal?)0.034, (decimal?)0.276, (decimal?)40, (decimal?)130, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Nitrogen;Thin,Argon;Thin,ArgonRich", "", "Any", "DBV;DB;F;G;A;L;K;M;N;B;TTS;M;DC;H;K", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_04_Technetium = new OrganicVariant("Osseus_04_Technetium",2400401, OrganicSpecies.OsseusPumice, OrganicGenus.Osseus, (decimal?)0.037, (decimal?)0.276, (decimal?)40, (decimal?)130, (decimal?)0, (decimal?)0.096, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Nitrogen;Thin,Argon;Thin,ArgonRich", "", "Any", "F;G;A;CN;L;K;N;M;TTS;DA;M;K;H;DAV", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_04_Tellurium = new OrganicVariant("Osseus_04_Tellurium",2400402, OrganicSpecies.OsseusPumice, OrganicGenus.Osseus, (decimal?)0.035, (decimal?)0.276, (decimal?)40, (decimal?)140, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Nitrogen;Thin,Argon;Thin,ArgonRich", "", "Any", "DBV;F;G;A;L;K;N;M;B;TTS;DA;M;DC;H;K", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_04_Yttrium = new OrganicVariant("Osseus_04_Yttrium",2400406, OrganicSpecies.OsseusPumice, OrganicGenus.Osseus, (decimal?)0.035, (decimal?)0.276, (decimal?)40, (decimal?)130, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,Methane;Thin,Nitrogen;Thin,Argon;Thin,ArgonRich", "", "Any", "F;G;A;L;K;N;M;B;DAB;DA;M;TTS;DC;H;K", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Osseus_05_A = new OrganicVariant("Osseus_05_A",2400502, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.052, (decimal?)0.267, (decimal?)180, (decimal?)200, (decimal?)0.029, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "A", "A", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Osseus_05_F = new OrganicVariant("Osseus_05_F",2400503, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.042, (decimal?)0.27, (decimal?)180, (decimal?)200, (decimal?)0.025, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;H", "F", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Temple,Empyrean Straits,Outer Orion-Perseus Conflux,Inner Orion Spur,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Osseus_05_G = new OrganicVariant("Osseus_05_G",2400504, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.041, (decimal?)0.272, (decimal?)180, (decimal?)200, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N;B", "G", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Osseus_05_K = new OrganicVariant("Osseus_05_K",2400505, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.043, (decimal?)0.27, (decimal?)180, (decimal?)200, (decimal?)0.026, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;DAB", "K", "", "", null, null, null, "Kepler's Crest,Errant Marches,Elysian Shore,Hawking's Gap,The Formidine Rift,Izanami,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Osseus_05_T = new OrganicVariant("Osseus_05_T",2400506, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.139, (decimal?)0.268, (decimal?)180, (decimal?)200, (decimal?)0.031, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "G;H;L;K;M", "T", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Osseus_05_TTS = new OrganicVariant("Osseus_05_TTS",2400507, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.16, (decimal?)0.249, (decimal?)180, (decimal?)200, (decimal?)0.035, (decimal?)0.085, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Elysian Shore,Sanguineous Rim,Outer Orion-Perseus Conflux,Ryker's Hope,Vulcan Gate" ); + public static readonly OrganicVariant Osseus_05_Y = new OrganicVariant("Osseus_05_Y",2400509, OrganicSpecies.OsseusCornibus, OrganicGenus.Osseus, (decimal?)0.179, (decimal?)0.18, (decimal?)180, (decimal?)190, (decimal?)0.06, (decimal?)0.061, "RockyBody", "[Thin,CarbonDioxide", "", "None", "[K", "Y", "", "", null, null, null, "[Empyrean Straits" ); + public static readonly OrganicVariant Osseus_06_A = new OrganicVariant("Osseus_06_A",2400602, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.043, (decimal?)0.268, (decimal?)190, (decimal?)200, (decimal?)0.059, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Xibalba,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,The Veils" ); + public static readonly OrganicVariant Osseus_06_F = new OrganicVariant("Osseus_06_F",2400603, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.04, (decimal?)0.271, (decimal?)190, (decimal?)200, (decimal?)0.059, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_06_G = new OrganicVariant("Osseus_06_G",2400604, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.043, (decimal?)0.269, (decimal?)190, (decimal?)200, (decimal?)0.059, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;B", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_06_K = new OrganicVariant("Osseus_06_K",2400605, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.043, (decimal?)0.271, (decimal?)190, (decimal?)200, (decimal?)0.058, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;CN;K;N;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,The Abyss,Xibalba,Aquila's Halo,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_06_T = new OrganicVariant("Osseus_06_T",2400606, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.19, (decimal?)0.266, (decimal?)190, (decimal?)200, (decimal?)0.06, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DB;F;A;K;N;B;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Formorian Frontier,Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hawking's Gap,Orion-Cygnus Arm,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant Osseus_06_TTS = new OrganicVariant("Osseus_06_TTS",2400607, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.046, (decimal?)0.241, (decimal?)190, (decimal?)200, (decimal?)0.065, (decimal?)0.087, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Inner Orion Spur,The Veils" ); + public static readonly OrganicVariant Osseus_06_Y = new OrganicVariant("Osseus_06_Y",2400609, OrganicSpecies.OsseusPellebantus, OrganicGenus.Osseus, (decimal?)0.082, (decimal?)0.211, (decimal?)190, (decimal?)200, (decimal?)0.076, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "K", "Y", "", "", null, null, null, "Empyrean Straits,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Recepta_01_A = new OrganicVariant("Recepta_01_A",2410103, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.048, (decimal?)0.276, (decimal?)130, (decimal?)280, (decimal?)0, (decimal?)0.094, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Carbon Dioxide Geysers;None;Major Silicate Vapour Geysers;Major Water Geysers;Water Geysers", "F;A;N;B;TTS;H", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_01_Ae = new OrganicVariant("Recepta_01_Ae",2410111, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.184, (decimal?)0.197, (decimal?)150, (decimal?)160, (decimal?)0.002, (decimal?)0.005, "IcyBody", "Thin,SulphurDioxide", "SulphurDioxide", "Major Water Geysers;None", "Ae", "Ae", "", "", null, null, null, "Empyrean Straits,Odin's Hold" ); + public static readonly OrganicVariant Recepta_01_B = new OrganicVariant("Recepta_01_B",2410102, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.202, (decimal?)0.266, (decimal?)170, (decimal?)280, (decimal?)0.001, (decimal?)0.061, "IcyBody;RockyBody", "Thin,SulphurDioxide", "SulphurDioxide", "None", "B;Ae", "B", "", "", null, null, null, "Hawking's Gap,Izanami,Orion-Cygnus Arm,Norma Arm,Inner Orion Spur,Norma Expanse,Ryker's Hope,Perseus Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Recepta_01_D = new OrganicVariant("Recepta_01_D",2410114, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.141, (decimal?)0.27, (decimal?)150, (decimal?)190, (decimal?)0.003, (decimal?)0.093, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "None", "H;DA", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Norma Arm" ); + public static readonly OrganicVariant Recepta_01_F = new OrganicVariant("Recepta_01_F",2410104, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.042, (decimal?)0.275, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.095, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;N;B;H", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_01_G = new OrganicVariant("Recepta_01_G",2410105, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.044, (decimal?)0.275, (decimal?)130, (decimal?)260, (decimal?)0, (decimal?)0.094, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;N;B", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_01_K = new OrganicVariant("Recepta_01_K",2410106, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.043, (decimal?)0.275, (decimal?)130, (decimal?)260, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;K;N;M;H", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_01_L = new OrganicVariant("Recepta_01_L",2410108, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.071, (decimal?)0.275, (decimal?)130, (decimal?)250, (decimal?)0, (decimal?)0.09, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Minor Silicate Vapour Geysers;None", "G;L;K;M;M;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Recepta_01_M = new OrganicVariant("Recepta_01_M",2410107, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.045, (decimal?)0.275, (decimal?)130, (decimal?)260, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;K;N;M;DAB;M;H;DAV", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_01_N = new OrganicVariant("Recepta_01_N",2410115, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.063, (decimal?)0.274, (decimal?)130, (decimal?)280, (decimal?)0.001, (decimal?)0.063, "RockyBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Perseus Arm,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Dryman's Point,Arcadian Stream,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Galactic Centre,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Recepta_01_T = new OrganicVariant("Recepta_01_T",2410109, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.21, (decimal?)0.272, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.018, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Major Water Magma;Major Water Geysers;None;Minor Metallic Magma", "T;L;DA;M;DC;H", "T", "", "", null, null, null, "Errant Marches,Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux" ); + public static readonly OrganicVariant Recepta_01_TTS = new OrganicVariant("Recepta_01_TTS",2410110, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.052, (decimal?)0.274, (decimal?)130, (decimal?)260, (decimal?)0.001, (decimal?)0.091, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "None", "F;A;TTS;Ae", "TTS", "", "", null, null, null, "Outer Orion Spur,Aquila's Halo,Inner Scutum-Centaurus Arm,Vulcan Gate,Izanami,Orion-Cygnus Arm,Arcadian Stream,Temple,Outer Orion-Perseus Conflux,Inner Orion Spur,Galactic Centre,Outer Arm,Norma Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Recepta_01_Y = new OrganicVariant("Recepta_01_Y",2410112, OrganicSpecies.ReceptaUmbrux, OrganicGenus.Recepta, (decimal?)0.123, (decimal?)0.124, (decimal?)160, (decimal?)170, (decimal?)0.02, (decimal?)0.021, "HighMetalContentBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "None", "M", "Y", "", "", null, null, null, "Odin's Hold" ); + public static readonly OrganicVariant Recepta_02_Cadmium = new OrganicVariant("Recepta_02_Cadmium",2410206, OrganicSpecies.ReceptaDeltahedronix, OrganicGenus.Recepta, (decimal?)0.045, (decimal?)0.275, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.099, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;L;K;N;TTS;M;H", "", "Cadmium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar" ); + public static readonly OrganicVariant Recepta_02_Mercury = new OrganicVariant("Recepta_02_Mercury",2410201, OrganicSpecies.ReceptaDeltahedronix, OrganicGenus.Recepta, (decimal?)0.043, (decimal?)0.275, (decimal?)130, (decimal?)240, (decimal?)0, (decimal?)0.094, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;K;N;M;H", "", "Mercury", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,The Veils" ); + public static readonly OrganicVariant Recepta_02_Molybdenum = new OrganicVariant("Recepta_02_Molybdenum",2410205, OrganicSpecies.ReceptaDeltahedronix, OrganicGenus.Recepta, (decimal?)0.045, (decimal?)0.275, (decimal?)130, (decimal?)250, (decimal?)0, (decimal?)0.097, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;L;K;N;M;H", "", "Molybdenum", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Recepta_02_Niobium = new OrganicVariant("Recepta_02_Niobium",2410202, OrganicSpecies.ReceptaDeltahedronix, OrganicGenus.Recepta, (decimal?)0.044, (decimal?)0.276, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.097, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;K;N;M;H", "", "Niobium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Tenebrae,Trojan Belt,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Recepta_02_Tin = new OrganicVariant("Recepta_02_Tin",2410203, OrganicSpecies.ReceptaDeltahedronix, OrganicGenus.Recepta, (decimal?)0.041, (decimal?)0.274, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.097, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;L;K;N;DA;M", "", "Tin", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,The Conduit,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar" ); + public static readonly OrganicVariant Recepta_02_Tungsten = new OrganicVariant("Recepta_02_Tungsten",2410204, OrganicSpecies.ReceptaDeltahedronix, OrganicGenus.Recepta, (decimal?)0.046, (decimal?)0.275, (decimal?)130, (decimal?)280, (decimal?)0, (decimal?)0.095, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;L;K;N;B;M", "", "Tungsten", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Recepta_03_Antimony = new OrganicVariant("Recepta_03_Antimony",2410305, OrganicSpecies.ReceptaConditivus, OrganicGenus.Recepta, (decimal?)0.061, (decimal?)0.275, (decimal?)130, (decimal?)260, (decimal?)0, (decimal?)0.095, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Metallic Magma;Major Water Geysers;Minor Ammonia Magma;None", "F;G;A;K;N;TTS;M", "", "Antimony", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Recepta_03_Polonium = new OrganicVariant("Recepta_03_Polonium",2410303, OrganicSpecies.ReceptaConditivus, OrganicGenus.Recepta, (decimal?)0.068, (decimal?)0.275, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.097, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Major Water Geysers;Water Geysers;None", "F;G;Ae;A;L;K;M;H", "", "Polonium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,The Veils" ); + public static readonly OrganicVariant Recepta_03_Ruthenium = new OrganicVariant("Recepta_03_Ruthenium",2410304, OrganicSpecies.ReceptaConditivus, OrganicGenus.Recepta, (decimal?)0.049, (decimal?)0.275, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.097, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;A;K;N;B;TTS;M;H", "", "Ruthenium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_03_Technetium = new OrganicVariant("Recepta_03_Technetium",2410301, OrganicSpecies.ReceptaConditivus, OrganicGenus.Recepta, (decimal?)0.052, (decimal?)0.275, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.096, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;M;A;L;CN;K;N;M;B;TTS;Ae;H", "", "Technetium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Recepta_03_Tellurium = new OrganicVariant("Recepta_03_Tellurium",2410302, OrganicSpecies.ReceptaConditivus, OrganicGenus.Recepta, (decimal?)0.054, (decimal?)0.276, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.098, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "DB;F;G;Ae;A;L;K;M;N;B;TTS;DA;M;K", "", "Tellurium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Recepta_03_Yttrium = new OrganicVariant("Recepta_03_Yttrium",2410306, OrganicSpecies.ReceptaConditivus, OrganicGenus.Recepta, (decimal?)0.043, (decimal?)0.275, (decimal?)130, (decimal?)270, (decimal?)0, (decimal?)0.095, "IcyBody;RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "SulphurDioxide", "Any", "F;G;Ae;A;L;K;N;B;TTS;M;H", "", "Yttrium", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Seed = new OrganicVariant("Seed",2100201, OrganicSpecies.RoseumBrainTree, OrganicGenus.Brancae, (decimal?)0.029, (decimal?)4.202, (decimal?)115, (decimal?)500, (decimal?)0, (decimal?)0.098, "RockyBody;HighMetalContentBody;RockyIceBody;IcyBody", "No Atmosphere;Thin,CarbonDioxide;Thin,Argon;Thin,Ammonia;Thin,CarbonDioxideRich;Thin,Oxygen;Thin,Water;Thin,SulphurDioxide;Thin,ArgonRich;Thin,WaterRich", "", "Any", "", "", "", "MetalRichBody,HighMetalContentBody,RockyBody,RockyIceBody", null, null, (decimal?)3, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant SeedABCD_01 = new OrganicVariant("SeedABCD_01",2100202, OrganicSpecies.GypseeumBrainTree, OrganicGenus.Brancae, (decimal?)0.042, (decimal?)0.411, (decimal?)174, (decimal?)330, (decimal?)0, (decimal?)0.082, "RockyBody", "Thin,Ammonia;No Atmosphere;Thin,Oxygen;Thin,SulphurDioxide", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,RockyBody", null, null, (decimal?)3, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant SeedABCD_02 = new OrganicVariant("SeedABCD_02",2100203, OrganicSpecies.OstrinumBrainTree, OrganicGenus.Brancae, (decimal?)0.034, (decimal?)2.342, (decimal?)20, (decimal?)1800, (decimal?)0, (decimal?)0.095, "RockyBody;HighMetalContentBody;MetalRichBody", "No Atmosphere;Thin,CarbonDioxide;Thin,Ammonia;Thin,CarbonDioxideRich;Thin,ArgonRich;Thin,SulphurDioxide;Thin,Helium;Thin,NeonRich", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,MetalRichBody,HighMetalContentBody", null, null, (decimal?)3, "Outer Orion Spur,Empyrean Straits,Temple,Inner Orion Spur" ); + public static readonly OrganicVariant SeedABCD_03 = new OrganicVariant("SeedABCD_03",2100204, OrganicSpecies.VirideBrainTree, OrganicGenus.Brancae, (decimal?)0.035, (decimal?)0.389, (decimal?)100, (decimal?)260, (decimal?)0, (decimal?)0.085, "RockyIceBody", "Thin,Ammonia;No Atmosphere;Thin,SulphurDioxide", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,RockyIceBody", null, null, (decimal?)3, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant SeedEFGH = new OrganicVariant("SeedEFGH",2100205, OrganicSpecies.LividumBrainTree, OrganicGenus.Brancae, (decimal?)0.029, (decimal?)0.47, (decimal?)300, (decimal?)500, (decimal?)0, (decimal?)0.098, "RockyBody", "No Atmosphere;Thin,Water;Thin,SulphurDioxide", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,RockyBody", null, null, (decimal?)3, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant SeedEFGH_01 = new OrganicVariant("SeedEFGH_01",2100206, OrganicSpecies.AureumBrainTree, OrganicGenus.Brancae, (decimal?)0.036, (decimal?)2.809, (decimal?)300, (decimal?)500, (decimal?)0, (decimal?)0.026, "RockyBody;HighMetalContentBody", "No Atmosphere;Thin,SulphurDioxide", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,MetalRichBody,HighMetalContentBody", null, null, (decimal?)3, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant SeedEFGH_02 = new OrganicVariant("SeedEFGH_02",2100207, OrganicSpecies.PuniceumBrainTree, OrganicGenus.Brancae, (decimal?)0.039, (decimal?)3.873, (decimal?)20, (decimal?)1800, (decimal?)0, (decimal?)0.096, "HighMetalContentBody;MetalRichBody", "No Atmosphere;Thin,CarbonDioxide;Thin,Oxygen;Thin,SulphurDioxide;Thin,Helium;Thin,NeonRich", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,MetalRichBody,HighMetalContentBody", null, null, (decimal?)3, "Outer Orion Spur,Norma Expanse,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant SeedEFGH_03 = new OrganicVariant("SeedEFGH_03",2100208, OrganicSpecies.LindigoticumBrainTree, OrganicGenus.Brancae, (decimal?)0.047, (decimal?)2.603, (decimal?)300, (decimal?)500, null, null, "RockyBody;HighMetalContentBody", "No Atmosphere", "", "Any", "", "", "", "EarthLikeBody,GasGiantWithWaterBasedLife,High metal content,RockyBody", null, null, (decimal?)3, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Empyrean Straits,Inner Orion Spur,Norma Expanse,Temple" ); + public static readonly OrganicVariant Shrubs_01_B = new OrganicVariant("Shrubs_01_B",2440102, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.069, (decimal?)0.274, (decimal?)156, (decimal?)177, (decimal?)0.001, (decimal?)0.007, "RockyBody", "Thin,Ammonia", "", "None", "B;B", "B", "", "", null, null, null, "Outer Orion Spur,Sanguineous Rim,Empyrean Straits,Inner Orion Spur,Outer Arm,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Shrubs_01_D = new OrganicVariant("Shrubs_01_D",2440110, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.129, (decimal?)0.223, (decimal?)158, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "F;D;DAB;H;DAV", "D", "", "", null, null, null, "Izanami,Outer Orion-Perseus Conflux,Inner Orion Spur,Empyrean Straits" ); + public static readonly OrganicVariant Shrubs_01_F = new OrganicVariant("Shrubs_01_F",2440103, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.042, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.048, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;Minor Water Magma;Major Silicate Vapour Geysers;None", "F;F;G;H;A;M;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_01_G = new OrganicVariant("Shrubs_01_G",2440104, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.039, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Minor Water Magma;Minor Metallic Magma;Minor Rocky Magma", "F;G;H;A;K;M;N;B;A", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_01_L = new OrganicVariant("Shrubs_01_L",2440106, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.046, (decimal?)0.272, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "None", "F;G;K;N;M;H;K", "L", "", "", null, null, null, "Outer Orion Spur,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Mare Somnia,The Formidine Rift,Outer Orion-Perseus Conflux,Acheron,Norma Arm,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_01_M = new OrganicVariant("Shrubs_01_M",2440105, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.047, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.011, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;None", "F;G;A;K;N;M;O;B;DA;M;DC;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_01_N = new OrganicVariant("Shrubs_01_N",2440111, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.045, (decimal?)0.273, (decimal?)153, (decimal?)177, (decimal?)0, (decimal?)0.01, "RockyBody", "Thin,Ammonia", "", "Minor Water Magma;None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_01_O = new OrganicVariant("Shrubs_01_O",2440101, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.142, (decimal?)0.151, (decimal?)164, (decimal?)177, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "O", "O", "", "", null, null, null, "Elysian Shore,Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_01_TTS = new OrganicVariant("Shrubs_01_TTS",2440107, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.059, (decimal?)0.266, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.009, "RockyBody", "Thin,Ammonia", "", "None", "F;B;TTS;K", "TTS", "", "", null, null, null, "Kepler's Crest,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Inner Orion Spur,Outer Arm,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Shrubs_01_W = new OrganicVariant("Shrubs_01_W",2440109, OrganicSpecies.FrutexaFlabellum, OrganicGenus.Shrubs, (decimal?)0.14, (decimal?)0.198, (decimal?)167, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_02_B = new OrganicVariant("Shrubs_02_B",2440202, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.046, (decimal?)0.199, (decimal?)152, (decimal?)195, (decimal?)0.004, (decimal?)0.074, "RockyBody", "Thin,CarbonDioxide", "", "None", "B;H", "B", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_02_D = new OrganicVariant("Shrubs_02_D",2440210, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.057, (decimal?)0.209, (decimal?)158, (decimal?)195, (decimal?)0.011, (decimal?)0.081, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB;N;DA;DC;H;DAV", "D", "", "", null, null, null, "Izanami,Odin's Hold,Temple,Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_02_F = new OrganicVariant("Shrubs_02_F",2440203, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.039, (decimal?)0.237, (decimal?)133, (decimal?)195, (decimal?)0, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Galactic Centre,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_02_G = new OrganicVariant("Shrubs_02_G",2440204, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.237, (decimal?)146, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N;B;K", "G", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_02_L = new OrganicVariant("Shrubs_02_L",2440206, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.048, (decimal?)0.208, (decimal?)149, (decimal?)195, (decimal?)0.004, (decimal?)0.097, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB;F;G;A;L;K;N;M;M;H", "L", "", "", null, null, null, "Outer Orion Spur,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_02_M = new OrganicVariant("Shrubs_02_M",2440205, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.042, (decimal?)0.237, (decimal?)146, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;MS;N;M;DAB;DA;M;DC;H;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_02_N = new OrganicVariant("Shrubs_02_N",2440211, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.042, (decimal?)0.237, (decimal?)147, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;B;O;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Norma Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_02_TTS = new OrganicVariant("Shrubs_02_TTS",2440207, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.041, (decimal?)0.236, (decimal?)152, (decimal?)195, (decimal?)0.003, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Inner Orion Spur,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_02_W = new OrganicVariant("Shrubs_02_W",2440209, OrganicSpecies.FrutexaAcus, OrganicGenus.Shrubs, (decimal?)0.045, (decimal?)0.162, (decimal?)153, (decimal?)195, (decimal?)0.003, (decimal?)0.049, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_03_B = new OrganicVariant("Shrubs_03_B",2440302, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.098, (decimal?)0.261, (decimal?)163, (decimal?)170, (decimal?)0.003, (decimal?)0.024, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Inner Orion Spur,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Shrubs_03_D = new OrganicVariant("Shrubs_03_D",2440310, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.182, (decimal?)0.217, (decimal?)165, (decimal?)170, (decimal?)0.002, (decimal?)0.047, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "DB;DA", "D", "", "", null, null, null, "Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_03_F = new OrganicVariant("Shrubs_03_F",2440303, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.05, (decimal?)0.276, (decimal?)150, (decimal?)195, (decimal?)0, (decimal?)0.098, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_03_G = new OrganicVariant("Shrubs_03_G",2440304, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.039, (decimal?)0.275, (decimal?)149, (decimal?)195, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;K;B", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_03_L = new OrganicVariant("Shrubs_03_L",2440306, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.046, (decimal?)0.275, (decimal?)147, (decimal?)195, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "DB;F;G;A;L;K;MS;N;M;DAB;DA;M;DCV;DC;C;K", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_03_M = new OrganicVariant("Shrubs_03_M",2440305, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.046, (decimal?)0.275, (decimal?)101, (decimal?)195, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;DBZ;A;CJ;L;K;N;M;DAB;DA;M;DC;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_03_N = new OrganicVariant("Shrubs_03_N",2440311, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.051, (decimal?)0.275, (decimal?)154, (decimal?)195, (decimal?)0, (decimal?)0.098, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_03_TTS = new OrganicVariant("Shrubs_03_TTS",2440307, OrganicSpecies.FrutexaMetallicum, OrganicGenus.Shrubs, (decimal?)0.065, (decimal?)0.272, (decimal?)150, (decimal?)195, (decimal?)0.001, (decimal?)0.098, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;K;B;TTS", "TTS", "", "", null, null, null, "Xibalba,Outer Orion Spur,Aquila's Halo,Sagittarius-Carina Arm,Elysian Shore,Newton's Vault,Hawking's Gap,Vulcan Gate,Inner Scutum-Centaurus Arm,Sanguineous Rim,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Void,Acheron,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Shrubs_04_B = new OrganicVariant("Shrubs_04_B",2440402, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.13, (decimal?)0.19, (decimal?)163, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "B", "B", "", "", null, null, null, "Aquila's Halo,Inner Scutum-Centaurus Arm,Odin's Hold,Galactic Centre,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Shrubs_04_D = new OrganicVariant("Shrubs_04_D",2440410, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.167, (decimal?)0.168, (decimal?)162, (decimal?)164, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "DAV", "D", "", "", null, null, null, "Formorian Frontier" ); + public static readonly OrganicVariant Shrubs_04_F = new OrganicVariant("Shrubs_04_F",2440403, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.041, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;H;A;N;B", "F", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Arcadian Stream,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Shrubs_04_G = new OrganicVariant("Shrubs_04_G",2440404, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.041, (decimal?)0.275, (decimal?)152, (decimal?)186, (decimal?)0, (decimal?)0.043, "RockyBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "F;G;A;K;N;B;H", "G", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Scutum-Centaurus Arm,Galactic Centre,The Void,Norma Expanse,Temple,The Veils" ); + public static readonly OrganicVariant Shrubs_04_L = new OrganicVariant("Shrubs_04_L",2440406, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.046, (decimal?)0.273, (decimal?)153, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "None", "A;M;H;K", "L", "", "", null, null, null, "Formorian Frontier,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,Odin's Hold,Norma Expanse" ); + public static readonly OrganicVariant Shrubs_04_M = new OrganicVariant("Shrubs_04_M",2440405, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.045, (decimal?)0.274, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody", "Thin,Ammonia", "", "None", "F;G;S;A;K;N;M;DAB;M;DC;H;K", "M", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,Odin's Hold,Outer Scutum-Centaurus Arm,Galactic Centre,The Void,Norma Expanse,The Veils" ); + public static readonly OrganicVariant Shrubs_04_N = new OrganicVariant("Shrubs_04_N",2440411, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.045, (decimal?)0.266, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody", "Thin,Ammonia", "", "None", "N;H", "N", "", "", null, null, null, "Formorian Frontier,Inner Scutum-Centaurus Arm,Hawking's Gap,Hieronymus Delta,Orion-Cygnus Arm,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Galactic Centre,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Shrubs_04_TTS = new OrganicVariant("Shrubs_04_TTS",2440407, OrganicSpecies.FrutexaFlammasis, OrganicGenus.Shrubs, (decimal?)0.061, (decimal?)0.208, (decimal?)159, (decimal?)164, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "B;TTS", "TTS", "", "", null, null, null, "Galactic Centre,Hieronymus Delta" ); + public static readonly OrganicVariant Shrubs_05_B = new OrganicVariant("Shrubs_05_B",2440502, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.048, (decimal?)0.23, (decimal?)154, (decimal?)184, (decimal?)0.004, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Arcadian Stream,Empyrean Straits,The Conduit,Norma Arm" ); + public static readonly OrganicVariant Shrubs_05_D = new OrganicVariant("Shrubs_05_D",2440510, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.062, (decimal?)0.175, (decimal?)156, (decimal?)195, (decimal?)0.007, (decimal?)0.093, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB;DA;H", "D", "", "", null, null, null, "Galactic Centre,Empyrean Straits,Norma Arm,Newton's Vault" ); + public static readonly OrganicVariant Shrubs_05_F = new OrganicVariant("Shrubs_05_F",2440503, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.237, (decimal?)146, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A", "F", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Aquila's Halo,Perseus Arm,Newton's Vault,Inner Scutum-Centaurus Arm,The Formidine Rift,Izanami,Arcadian Stream,Empyrean Straits,The Conduit,Odin's Hold,Galactic Centre,Outer Arm,Norma Expanse,Norma Arm" ); + public static readonly OrganicVariant Shrubs_05_G = new OrganicVariant("Shrubs_05_G",2440504, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.97, (decimal?)147, (decimal?)195, (decimal?)0.003, (decimal?)1012.827, "RockyBody;WaterBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N;K", "G", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Inner Scutum-Centaurus Arm,Newton's Vault,The Formidine Rift,Izanami,Arcadian Stream,Empyrean Straits,The Conduit,Odin's Hold,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Shrubs_05_L = new OrganicVariant("Shrubs_05_L",2440506, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.057, (decimal?)0.227, (decimal?)152, (decimal?)195, (decimal?)0.005, (decimal?)0.095, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;K;M;H", "L", "", "", null, null, null, "Xibalba,Errant Marches,Inner Scutum-Centaurus Arm,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Shrubs_05_M = new OrganicVariant("Shrubs_05_M",2440505, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.236, (decimal?)147, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;N;M;M;H", "M", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,The Conduit,Odin's Hold,Galactic Centre,Outer Arm,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Shrubs_05_N = new OrganicVariant("Shrubs_05_N",2440511, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.042, (decimal?)0.232, (decimal?)147, (decimal?)195, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Kepler's Crest,Errant Marches,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,Odin's Hold,The Conduit,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Shrubs_05_TTS = new OrganicVariant("Shrubs_05_TTS",2440507, OrganicSpecies.FrutexaFera, OrganicGenus.Shrubs, (decimal?)0.086, (decimal?)0.222, (decimal?)160, (decimal?)195, (decimal?)0.013, (decimal?)0.092, "RockyBody", "Thin,CarbonDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "The Formidine Rift,Outer Arm,Norma Arm,Empyrean Straits" ); + public static readonly OrganicVariant Shrubs_06_B = new OrganicVariant("Shrubs_06_B",2440602, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.055, (decimal?)397, (decimal?)452, (decimal?)0.055, (decimal?)0.099, "RockyBody", "Thin,Water", "", "Minor Water Magma;None", "N;B", "B", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Temple,Mare Somnia,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_06_F = new OrganicVariant("Shrubs_06_F",2440603, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.04, (decimal?)0.056, (decimal?)396, (decimal?)452, (decimal?)0.057, (decimal?)0.099, "RockyBody", "Thin,Water", "", "Minor Water Magma;None", "F;F;G;A;N;B;H;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_06_G = new OrganicVariant("Shrubs_06_G",2440604, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.041, (decimal?)0.056, (decimal?)398, (decimal?)452, (decimal?)0.058, (decimal?)0.099, "RockyBody", "Thin,Water", "", "None", "F;G;A;G;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_06_L = new OrganicVariant("Shrubs_06_L",2440606, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.046, (decimal?)0.055, (decimal?)403, (decimal?)452, (decimal?)0.071, (decimal?)0.096, "RockyBody", "Thin,Water", "", "None", "A;G;K", "L", "", "", null, null, null, "Arcadian Stream,Ryker's Hope,Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_06_M = new OrganicVariant("Shrubs_06_M",2440605, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.042, (decimal?)0.056, (decimal?)401, (decimal?)452, (decimal?)0.06, (decimal?)0.099, "RockyBody", "Thin,Water", "", "Minor Water Magma;None", "F;G;A;K;M;N;M;H", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Norma Expanse,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_06_N = new OrganicVariant("Shrubs_06_N",2440611, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.041, (decimal?)0.056, (decimal?)393, (decimal?)452, (decimal?)0.058, (decimal?)0.099, "RockyBody", "Thin,Water", "", "Minor Water Magma;None", "N;B;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_06_TTS = new OrganicVariant("Shrubs_06_TTS",2440607, OrganicSpecies.FrutexaSponsae, OrganicGenus.Shrubs, (decimal?)0.047, (decimal?)0.049, (decimal?)413, (decimal?)452, (decimal?)0.074, (decimal?)0.077, "RockyBody", "Thin,Water", "", "None", "TTS", "TTS", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Shrubs_07_B = new OrganicVariant("Shrubs_07_B",2440702, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.263, (decimal?)0.264, (decimal?)210, (decimal?)211, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,SulphurDioxide", "", "None", "B", "B", "", "", null, null, null, "Norma Expanse" ); + public static readonly OrganicVariant Shrubs_07_D = new OrganicVariant("Shrubs_07_D",2440710, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.269, (decimal?)0.27, (decimal?)155, (decimal?)156, (decimal?)0.003, (decimal?)0.004, "RockyBody", "Thin,SulphurDioxide", "", "None", "DA", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Shrubs_07_F = new OrganicVariant("Shrubs_07_F",2440703, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.042, (decimal?)0.275, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.004, "RockyBody", "Thin,SulphurDioxide", "", "Metallic Magma;None;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "F", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_07_G = new OrganicVariant("Shrubs_07_G",2440704, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.044, (decimal?)0.275, (decimal?)132, (decimal?)176, (decimal?)0, (decimal?)0.025, "RockyBody", "Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Metallic Magma", "A;F;G;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Shrubs_07_L = new OrganicVariant("Shrubs_07_L",2440706, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.071, (decimal?)0.276, (decimal?)132, (decimal?)152, (decimal?)0, (decimal?)0.003, "RockyBody", "Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;None", "F;M;H;K", "L", "", "", null, null, null, "Kepler's Crest,Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_07_M = new OrganicVariant("Shrubs_07_M",2440705, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.05, (decimal?)0.275, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.004, "RockyBody", "Thin,SulphurDioxide", "", "Minor Rocky Magma;None", "F;G;K;N;M;M;H", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Vulcan Gate,Mare Somnia,Trojan Belt,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Shrubs_07_N = new OrganicVariant("Shrubs_07_N",2440711, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.058, (decimal?)0.272, (decimal?)132, (decimal?)160, (decimal?)0, (decimal?)0.003, "RockyBody", "Thin,SulphurDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Hieronymus Delta,Izanami,Arcadian Stream,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Shrubs_07_TTS = new OrganicVariant("Shrubs_07_TTS",2440707, OrganicSpecies.FrutexaCollum, OrganicGenus.Shrubs, (decimal?)0.052, (decimal?)0.274, (decimal?)133, (decimal?)134, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,SulphurDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Temple,Inner Orion Spur" ); + public static readonly OrganicVariant Sphere = new OrganicVariant("Sphere",2100401, OrganicSpecies.LuteolumAnemone, OrganicGenus.Sphere, (decimal?)0.042, (decimal?)0.42, (decimal?)200, (decimal?)440, (decimal?)0, (decimal?)0.008, "RockyBody", "Thin,CarbonDioxide;No Atmosphere;Thin,Water;Thin,SulphurDioxide", "", "Any", "B,IV;B,V", "B,IV;B,V", "", "", null, null, null, "Elysian Shore,Newton's Vault,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Temple,The Conduit,Inner Orion Spur,Outer Orion-Perseus Conflux,Odin's Hold,The Void,Outer Arm,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant SphereABCD_01 = new OrganicVariant("SphereABCD_01",2100402, OrganicSpecies.CroceumAnemone, OrganicGenus.Sphere, (decimal?)0.044, (decimal?)0.23, (decimal?)200, (decimal?)440, (decimal?)0.034, (decimal?)0.0073, "RockyBody", "No Atmosphere;Thin,Water;Thin,SulphurDioxide", "", "Any", "B,VI;A,III", "B,VI;A,III", "", "", null, null, null, "Perseus Arm,Newton's Vault,Izanami,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,The Conduit,Inner Orion Spur,Outer Orion-Perseus Conflux,Outer Arm,Ryker's Hope,Temple,Vulcan Gate" ); + public static readonly OrganicVariant SphereABCD_02 = new OrganicVariant("SphereABCD_02",2100403, OrganicSpecies.PuniceumAnemone, OrganicGenus.Sphere, (decimal?)0.178, (decimal?)2.601, (decimal?)65, (decimal?)860, (decimal?)0, (decimal?)0.0015, "IcyBody", "Thin,Oxygen;Thin,Nitrogen;No Atmosphere", "", "Any", "O", "O", "", "", null, null, null, "Perseus Arm,Newton's Vault,Izanami,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Outer Orion-Perseus Conflux,Inner Orion Spur,The Conduit,Outer Arm,Temple,Vulcan Gate" ); + public static readonly OrganicVariant SphereABCD_03 = new OrganicVariant("SphereABCD_03",2100404, OrganicSpecies.RoseumAnemone, OrganicGenus.Sphere, (decimal?)0.044, (decimal?)0.28, (decimal?)200, (decimal?)440, (decimal?)0.003, (decimal?)0.0044, "RockyBody", "No Atmosphere;Thin,SulphurDioxide", "", "Any", "B,I;B,II;B,III", "B,I;B,II;B,III", "", "", null, null, null, "Newton's Vault,Vulcan Gate,Izanami,Orion-Cygnus Arm,The Conduit,Inner Orion Spur,Outer Orion-Perseus Conflux,Outer Arm,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant SphereEFGH = new OrganicVariant("SphereEFGH",2100405, OrganicSpecies.BlatteumBioluminescentAnemone, OrganicGenus.Sphere, (decimal?)0.037, (decimal?)3.66, (decimal?)210, null, (decimal?)0, (decimal?)0.0072, "HighMetalContentBody;MetalRichBody", "No Atmosphere;Thin,Argon;Thin,CarbonDioxide;Thin,CarbonDioxideRich;HotThin,SilicateVapour", "", "Any", "B,IV;B,V", "B,IV;B,V", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Outer Orion-Perseus Conflux,Inner Orion-Perseus Conflux,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,The Void,Elysian Shore,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant SphereEFGH_01 = new OrganicVariant("SphereEFGH_01",2100406, OrganicSpecies.RubeumBioluminescentAnemone, OrganicGenus.Sphere, (decimal?)0.036, (decimal?)2.65, (decimal?)160, (decimal?)1800, (decimal?)0, (decimal?)0.0069, "HighMetalContentBody;MetalRichBody", "Thin,Argon;No Atmosphere;Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Any", "B,VI;A,III", "B,VI;A,III", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant SphereEFGH_02 = new OrganicVariant("SphereEFGH_02",2100407, OrganicSpecies.PrasinumBioluminescentAnemone, OrganicGenus.Sphere, (decimal?)0.037, (decimal?)2, (decimal?)20, (decimal?)3840, (decimal?)0, (decimal?)0.0072, "RockyBody;HighMetalContentBody;MetalRichBody", "No Atmosphere;Thin,CarbonDioxide;Thin,Argon;Thin,Ammonia;Thin,Nitrogen;Thin,SulphurDioxide;Thin,NeonRich;HotThin,SulphurDioxide", "", "Any", "O", "O", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant SphereEFGH_03 = new OrganicVariant("SphereEFGH_03",2100408, OrganicSpecies.RoseumBioluminescentAnemone, OrganicGenus.Sphere, (decimal?)0.036, (decimal?)3.5, (decimal?)190, null, (decimal?)0, (decimal?)0.0072, "HighMetalContentBody;MetalRichBody", "No Atmosphere;Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Any", "B,I;B,II;B,III", "B,I;B,II;B,III", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_01_Ae = new OrganicVariant("Stratum_01_Ae",2420107, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.295, (decimal?)0.461, (decimal?)165, (decimal?)190, (decimal?)0.002, (decimal?)0.096, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;None", "Ae", "Ae", "", "", null, null, null, "Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_01_D = new OrganicVariant("Stratum_01_D",2420110, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.136, (decimal?)0.208, (decimal?)165, (decimal?)190, (decimal?)0.034, (decimal?)0.081, "RockyBody", "Thin,CarbonDioxide", "", "None", "H;N;DC;DA", "D", "", "", null, null, null, "Izanami,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_01_F = new OrganicVariant("Stratum_01_F",2420101, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.042, (decimal?)0.43, (decimal?)165, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Any", "F;G;H;A;B", "F", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_01_K = new OrganicVariant("Stratum_01_K",2420102, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.043, (decimal?)0.39, (decimal?)165, (decimal?)190, (decimal?)0, (decimal?)0.099, "RockyBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Metallic Magma;Minor Rocky Magma;None", "F;G;S;H;A;K;N;M;DA;M;K", "K", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_01_L = new OrganicVariant("Stratum_01_L",2420104, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.061, (decimal?)0.363, (decimal?)165, (decimal?)190, (decimal?)0.001, (decimal?)0.067, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None;Minor Metallic Magma", "DB;G;K;N;M;M;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple" ); + public static readonly OrganicVariant Stratum_01_M = new OrganicVariant("Stratum_01_M",2420103, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.045, (decimal?)0.454, (decimal?)165, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "DBV;DB;F;G;A;K;N;M;DA;M;H;MS", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_01_T = new OrganicVariant("Stratum_01_T",2420105, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.114, (decimal?)0.474, (decimal?)165, (decimal?)190, (decimal?)0.001, (decimal?)0.093, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Minor Water Magma;None;Minor Metallic Magma", "B;H", "T", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple" ); + public static readonly OrganicVariant Stratum_01_TTS = new OrganicVariant("Stratum_01_TTS",2420106, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.067, (decimal?)0.19, (decimal?)165, (decimal?)190, (decimal?)0.008, (decimal?)0.067, "RockyBody", "Thin,CarbonDioxide", "", "None", "G;TTS", "TTS", "", "", null, null, null, "Izanami,Orion-Cygnus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_01_W = new OrganicVariant("Stratum_01_W",2420109, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.069, (decimal?)0.07, (decimal?)165, (decimal?)170, (decimal?)0.008, (decimal?)0.009, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_01_Y = new OrganicVariant("Stratum_01_Y",2420108, OrganicSpecies.StratumExcutitus, OrganicGenus.Stratum, (decimal?)0.195, (decimal?)0.307, (decimal?)165, (decimal?)190, (decimal?)0.071, (decimal?)0.086, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None;Major Silicate Vapour Geysers", "H", "Y", "", "", null, null, null, "Izanami,Odin's Hold" ); + public static readonly OrganicVariant Stratum_02_Ae = new OrganicVariant("Stratum_02_Ae",2420207, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.407, (decimal?)0.451, (decimal?)165, (decimal?)200, (decimal?)0.046, (decimal?)0.049, "RockyBody", "Thin,Oxygen", "", "None", "Ae", "Ae", "", "", null, null, null, "Empyrean Straits,Izanami" ); + public static readonly OrganicVariant Stratum_02_D = new OrganicVariant("Stratum_02_D",2420210, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.084, (decimal?)0.504, (decimal?)165, (decimal?)390, (decimal?)0.001, (decimal?)0.093, "RockyBody", "Thin,Ammonia;Thin,CarbonDioxide;Thin,Oxygen", "", "None;Major Silicate Vapour Geysers", "DB;F;DBZ;DAB;DA;H", "D", "", "", null, null, null, "Elysian Shore,Newton's Vault,Izanami,Norma Arm,Empyrean Straits,Outer Orion-Perseus Conflux,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple" ); + public static readonly OrganicVariant Stratum_02_F = new OrganicVariant("Stratum_02_F",2420201, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.04, (decimal?)0.579, (decimal?)165, (decimal?)450, (decimal?)0, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water", "", "Metallic Magma;None;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;F;G;A;M;N;M;B;H;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_02_K = new OrganicVariant("Stratum_02_K",2420202, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.04, (decimal?)0.561, (decimal?)165, (decimal?)450, (decimal?)0, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water", "", "Metallic Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;S;A;CJ;CN;K;N;M;B;DA;M;A;H;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_02_L = new OrganicVariant("Stratum_02_L",2420204, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.046, (decimal?)0.578, (decimal?)165, (decimal?)450, (decimal?)0, (decimal?)0.097, "RockyBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water", "", "None", "F;G;A;L;K;N;B;O;M;H;K", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Stratum_02_M = new OrganicVariant("Stratum_02_M",2420203, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.041, (decimal?)0.567, (decimal?)165, (decimal?)450, (decimal?)0, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water", "", "Minor Water Magma;None", "F;G;S;A;K;MS;N;M;O;DA;M;DC;H;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_02_T = new OrganicVariant("Stratum_02_T",2420205, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.047, (decimal?)0.557, (decimal?)165, (decimal?)240, (decimal?)0.001, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water", "", "Minor Silicate Vapour Geysers;Metallic Magma;Major Silicate Vapour Geysers;None", "F;K;N;B;H", "T", "", "", null, null, null, "Formorian Frontier,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Tenebrae,Arcadian Stream,Temple,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Expanse,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Stratum_02_TTS = new OrganicVariant("Stratum_02_TTS",2420206, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.046, (decimal?)0.543, (decimal?)165, (decimal?)440, (decimal?)0, (decimal?)0.096, "RockyBody", "Thin,Water;Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;TTS;K", "TTS", "", "", null, null, null, "Outer Orion Spur,Kepler's Crest,Mare Somnia,Elysian Shore,Hawking's Gap,Vulcan Gate,The Formidine Rift,Izanami,Sanguineous Rim,Empyrean Straits,Outer Orion-Perseus Conflux,Inner Orion Spur,Outer Arm,Ryker's Hope,Norma Arm,The Veils" ); + public static readonly OrganicVariant Stratum_02_W = new OrganicVariant("Stratum_02_W",2420209, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.142, (decimal?)0.143, (decimal?)165, (decimal?)180, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_02_Y = new OrganicVariant("Stratum_02_Y",2420208, OrganicSpecies.StratumPaleas, OrganicGenus.Stratum, (decimal?)0.141, (decimal?)0.238, (decimal?)165, (decimal?)200, (decimal?)0.003, (decimal?)0.082, "RockyBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "N;H;K", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Arm" ); + public static readonly OrganicVariant Stratum_03_F = new OrganicVariant("Stratum_03_F",2420301, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.042, (decimal?)0.339, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.014, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Metallic Magma", "A;F;G", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_03_K = new OrganicVariant("Stratum_03_K",2420302, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.039, (decimal?)0.339, (decimal?)50, (decimal?)180, (decimal?)0, (decimal?)0.013, "RockyBody;IcyBody", "Thin,Ammonia", "", "Minor Water Magma;Major Silicate Vapour Geysers;None", "F;G;A;K;N;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_03_L = new OrganicVariant("Stratum_03_L",2420304, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.051, (decimal?)0.301, (decimal?)160, (decimal?)180, (decimal?)0.001, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "None", "G;H;M", "L", "", "", null, null, null, "Outer Orion Spur,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_03_M = new OrganicVariant("Stratum_03_M",2420303, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.046, (decimal?)0.332, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.01, "RockyBody", "Thin,Ammonia", "", "None", "F;G;A;K;N;M;O;M;DC;H", "M", "", "", null, null, null, "Outer Orion Spur,Izanami,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_03_T = new OrganicVariant("Stratum_03_T",2420305, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.2, (decimal?)0.267, (decimal?)160, (decimal?)180, (decimal?)0.002, (decimal?)0.005, "RockyBody", "Thin,Ammonia", "", "None", "H;K", "T", "", "", null, null, null, "Galactic Centre,Izanami,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_03_TTS = new OrganicVariant("Stratum_03_TTS",2420306, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.07, (decimal?)0.332, (decimal?)160, (decimal?)180, (decimal?)0.001, (decimal?)0.009, "RockyBody", "Thin,Ammonia", "", "None", "B;TTS", "TTS", "", "", null, null, null, "Galactic Centre,Orion-Cygnus Arm,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_03_W = new OrganicVariant("Stratum_03_W",2420309, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.197, (decimal?)0.198, (decimal?)170, (decimal?)180, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_03_Y = new OrganicVariant("Stratum_03_Y",2420308, OrganicSpecies.StratumLaminamus, OrganicGenus.Stratum, (decimal?)0.127, (decimal?)0.19, (decimal?)160, (decimal?)180, (decimal?)0.001, (decimal?)0.007, "RockyBody", "Thin,Ammonia", "", "None", "G;K", "Y", "", "", null, null, null, "Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_04_F = new OrganicVariant("Stratum_04_F",2420401, OrganicSpecies.StratumAraneamus, OrganicGenus.Stratum, (decimal?)0.263, (decimal?)0.542, (decimal?)160, (decimal?)380, (decimal?)0, (decimal?)0.099, "RockyBody", "Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "F;A;N;B;O;B;A;H;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_05_Ae = new OrganicVariant("Stratum_05_Ae",2420507, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.327, (decimal?)0.328, (decimal?)170, (decimal?)180, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,SulphurDioxide", "", "None", "Ae", "Ae", "", "", null, null, null, "Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_D = new OrganicVariant("Stratum_05_D",2420510, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.058, (decimal?)0.166, (decimal?)160, (decimal?)180, (decimal?)0.02, (decimal?)0.065, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;DA;DAV", "D", "", "", null, null, null, "Formorian Frontier,Norma Expanse,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_F = new OrganicVariant("Stratum_05_F",2420501, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.044, (decimal?)0.428, (decimal?)160, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Metallic Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;A;B;K", "F", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Trojan Belt,Inner Orion Spur,Outer Scutum-Centaurus Arm,The Void,Norma Expanse,Temple,The Veils" ); + public static readonly OrganicVariant Stratum_05_K = new OrganicVariant("Stratum_05_K",2420502, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.044, (decimal?)0.377, (decimal?)160, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;A;K;N;M;B;H", "K", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_L = new OrganicVariant("Stratum_05_L",2420504, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.07, (decimal?)0.361, (decimal?)160, (decimal?)190, (decimal?)0.001, (decimal?)0.091, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "N;K;H;M", "L", "", "", null, null, null, "The Veils,Norma Expanse,Inner Scutum-Centaurus Arm,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_M = new OrganicVariant("Stratum_05_M",2420503, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.045, (decimal?)0.381, (decimal?)160, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "F;G;A;K;N;M;H", "M", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_T = new OrganicVariant("Stratum_05_T",2420505, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.138, (decimal?)0.477, (decimal?)160, (decimal?)190, (decimal?)0.002, (decimal?)0.073, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Metallic Magma;None", "H", "T", "", "", null, null, null, "Formorian Frontier,Norma Expanse,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_TTS = new OrganicVariant("Stratum_05_TTS",2420506, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.082, (decimal?)0.352, (decimal?)160, (decimal?)180, (decimal?)0.002, (decimal?)0.013, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "TTS", "TTS", "", "", null, null, null, "Norma Expanse,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_05_Y = new OrganicVariant("Stratum_05_Y",2420508, OrganicSpecies.StratumLimaxus, OrganicGenus.Stratum, (decimal?)0.29, (decimal?)0.296, (decimal?)170, (decimal?)190, (decimal?)0.002, (decimal?)0.006, "RockyBody", "Thin,SulphurDioxide", "", "Metallic Magma;None", "H;K", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Stratum_06_Ae = new OrganicVariant("Stratum_06_Ae",2420607, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.314, (decimal?)0.587, (decimal?)190, (decimal?)270, (decimal?)0.002, (decimal?)0.057, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None;Major Silicate Vapour Geysers;Minor Metallic Magma", "Ae", "Ae", "", "", null, null, null, "Galactic Centre,Inner Scutum-Centaurus Arm,Odin's Hold" ); + public static readonly OrganicVariant Stratum_06_D = new OrganicVariant("Stratum_06_D",2420610, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.191, (decimal?)0.192, (decimal?)190, (decimal?)200, (decimal?)0.067, (decimal?)0.068, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB", "D", "", "", null, null, null, "Odin's Hold" ); + public static readonly OrganicVariant Stratum_06_F = new OrganicVariant("Stratum_06_F",2420601, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.04, (decimal?)0.584, (decimal?)170, (decimal?)6610, (decimal?)0.001, (decimal?)0.099, "RockyBody;F(White)Star", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Any", "F;G;H;A;N;B;K", "F", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Dryman's Point,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,The Abyss" ); + public static readonly OrganicVariant Stratum_06_K = new OrganicVariant("Stratum_06_K",2420602, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.042, (decimal?)0.541, (decimal?)70, (decimal?)380, (decimal?)0, (decimal?)0.099, "RockyBody;IcyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Any", "F;G;A;K;M;N;MS;B;H;K", "K", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,The Abyss" ); + public static readonly OrganicVariant Stratum_06_L = new OrganicVariant("Stratum_06_L",2420604, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.051, (decimal?)0.523, (decimal?)190, (decimal?)350, (decimal?)0.001, (decimal?)0.097, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Minor Water Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "B;O;H;M", "L", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_06_M = new OrganicVariant("Stratum_06_M",2420603, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.157, (decimal?)0.525, (decimal?)190, (decimal?)380, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;A;CN;K;MS;N;M;M;H;K", "M", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Dryman's Point,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Stratum_06_T = new OrganicVariant("Stratum_06_T",2420605, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.216, (decimal?)0.539, (decimal?)190, (decimal?)370, (decimal?)0.001, (decimal?)0.096, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;Metallic Magma;Minor Rocky Magma;None", "F;G;O;B;H", "T", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_06_TTS = new OrganicVariant("Stratum_06_TTS",2420606, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.317, (decimal?)0.487, (decimal?)190, (decimal?)360, (decimal?)0.001, (decimal?)0.083, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "TTS;Ae", "TTS", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_06_Y = new OrganicVariant("Stratum_06_Y",2420608, OrganicSpecies.StratumCucumisis, OrganicGenus.Stratum, (decimal?)0.317, (decimal?)0.329, (decimal?)200, (decimal?)240, (decimal?)0.001, (decimal?)0.009, "RockyBody", "Thin,SulphurDioxide", "", "Metallic Magma;None", "N;G", "Y", "", "", null, null, null, "Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_07_D = new OrganicVariant("Stratum_07_D",2420710, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.182, (decimal?)0.531, (decimal?)160, (decimal?)400, (decimal?)0.001, (decimal?)0.047, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "DB;DAB;DA;DC;DAV", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Arcadian Stream,Outer Orion-Perseus Conflux,Inner Orion Spur,Odin's Hold,Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant Stratum_07_F = new OrganicVariant("Stratum_07_F",2420701, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.051, (decimal?)0.601, (decimal?)160, (decimal?)450, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water;Thin,SulphurDioxide", "", "Any", "F;G;H;A;M;N;B;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_07_K = new OrganicVariant("Stratum_07_K",2420702, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.046, (decimal?)0.885, (decimal?)100, (decimal?)450, (decimal?)0, (decimal?)0.099, "IcyBody;HighMetalContentBody;ClassIGasGiant", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water;Thin,SulphurDioxide", "", "Any", "CJ;DAB;M;DAV;S;K;MS;F;A;CN;N;A;H;G;K;M;B;DCV;DC", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_07_L = new OrganicVariant("Stratum_07_L",2420704, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.047, (decimal?)0.593, (decimal?)160, (decimal?)450, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water;Thin,SulphurDioxide", "", "Any", "L;DAB;M;DAV;C;MS;K;DB;F;A;N;M;DBV;G;K;DA;DCV;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_07_M = new OrganicVariant("Stratum_07_M",2420703, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.045, (decimal?)0.603, (decimal?)60, (decimal?)3480, (decimal?)0, (decimal?)0.099, "IcyBody;HighMetalContentBody;M(RedDwarf)Star", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water;Thin,SulphurDioxide", "", "Any", "CJ;L;DAB;M;DAV;DBZ;MS;K;DB;F;S;A;CN;N;M;DAZ;H;DBV;G;K;B;DA;DCV;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_07_T = new OrganicVariant("Stratum_07_T",2420705, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.046, (decimal?)0.526, (decimal?)160, (decimal?)450, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,Water;Thin,Ammonia;Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Any", "DBV;DB;F;G;A;L;K;N;M;DA;M;DC;H;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_07_TTS = new OrganicVariant("Stratum_07_TTS",2420706, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.06, (decimal?)0.581, (decimal?)160, (decimal?)430, (decimal?)0.001, (decimal?)0.098, "HighMetalContentBody", "Thin,CarbonDioxide;Thin,Ammonia;Thin,Water;Thin,SulphurDioxide", "", "None;Minor Metallic Magma", "F;G;A;K;B;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Trojan Belt,Norma Expanse,Inner Orion-Perseus Conflux,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Stratum_07_W = new OrganicVariant("Stratum_07_W",2420709, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.386, (decimal?)0.543, (decimal?)190, (decimal?)370, (decimal?)0.002, (decimal?)0.004, "HighMetalContentBody", "Thin,SulphurDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_07_Y = new OrganicVariant("Stratum_07_Y",2420708, OrganicSpecies.StratumTectonicas, OrganicGenus.Stratum, (decimal?)0.046, (decimal?)0.342, (decimal?)160, (decimal?)200, (decimal?)0.001, (decimal?)0.098, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Major Rocky Magma;None;Minor Metallic Magma", "L;K;M", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Elysian Shore,The Formidine Rift,Arcadian Stream,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Stratum_08_Ae = new OrganicVariant("Stratum_08_Ae",2420807, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.359, (decimal?)0.36, (decimal?)190, (decimal?)200, (decimal?)0.071, (decimal?)0.072, "RockyBody", "Thin,SulphurDioxide", "", "None", "Ae", "Ae", "", "", null, null, null, "Ryker's Hope" ); + public static readonly OrganicVariant Stratum_08_F = new OrganicVariant("Stratum_08_F",2420801, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.043, (decimal?)0.538, (decimal?)190, (decimal?)370, (decimal?)0, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "A;F;B", "F", "", "", null, null, null, "Errant Marches,Elysian Shore,Izanami,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Stratum_08_K = new OrganicVariant("Stratum_08_K",2420802, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.05, (decimal?)0.522, (decimal?)190, (decimal?)360, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "F;G;A;K;N;B;H;K", "K", "", "", null, null, null, "Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Stratum_08_L = new OrganicVariant("Stratum_08_L",2420804, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.324, (decimal?)0.498, (decimal?)190, (decimal?)350, (decimal?)0.001, (decimal?)0.095, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Major Silicate Vapour Geysers;None;Minor Metallic Magma", "H", "L", "", "", null, null, null, "Izanami,Ryker's Hope,Vulcan Gate" ); + public static readonly OrganicVariant Stratum_08_M = new OrganicVariant("Stratum_08_M",2420803, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.067, (decimal?)0.518, (decimal?)190, (decimal?)370, (decimal?)0.001, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "F;G;A;K;N;M;M;H", "M", "", "", null, null, null, "Elysian Shore,Vulcan Gate,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Achilles's Altar,Ryker's Hope,Perseus Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Stratum_08_T = new OrganicVariant("Stratum_08_T",2420805, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.139, (decimal?)0.52, (decimal?)190, (decimal?)240, (decimal?)0.002, (decimal?)0.096, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Major Silicate Vapour Geysers;None;Minor Metallic Magma", "N;H", "T", "", "", null, null, null, "Izanami,Ryker's Hope" ); + public static readonly OrganicVariant Stratum_08_TTS = new OrganicVariant("Stratum_08_TTS",2420806, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.331, (decimal?)0.49, (decimal?)190, (decimal?)360, (decimal?)0.001, (decimal?)0.064, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "None", "F;H;A;TTS;Ae", "TTS", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Ryker's Hope,Perseus Arm" ); + public static readonly OrganicVariant Stratum_08_Y = new OrganicVariant("Stratum_08_Y",2420808, OrganicSpecies.StratumFrigus, OrganicGenus.Stratum, (decimal?)0.328, (decimal?)0.412, (decimal?)200, (decimal?)210, (decimal?)0.067, (decimal?)0.078, "RockyBody", "Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Metallic Magma", "H", "Y", "", "", null, null, null, "Izanami,Ryker's Hope" ); + public static readonly OrganicVariant Tube = new OrganicVariant("Tube",2100501, OrganicSpecies.RoseumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.043, (decimal?)2, (decimal?)200, (decimal?)500, (decimal?)0, (decimal?)0.0081, "RockyBody;HighMetalContentBody", "No Atmosphere;Thin,CarbonDioxide;Thin,CarbonDioxideRich;Thin,ArgonRich;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Metallic Magma;Minor Water Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma;Minor Metallic Magma;Minor Rocky Magma", "L;DAB;M;TTS;S;MS;F;A;CN;N;M;H;DBV;G;K;B;DA;DC", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Expanse,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant TubeABCD_01 = new OrganicVariant("TubeABCD_01",2100502, OrganicSpecies.PrasinumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.043, (decimal?)2.5, (decimal?)200, (decimal?)500, (decimal?)0, (decimal?)0.0083, "RockyBody;HighMetalContentBody;RockyIceBody", "Thin,CarbonDioxideRich;No Atmosphere;Thin,CarbonDioxide;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma;Minor Metallic Magma;Minor Rocky Magma", "L;DAB;M;TTS;S;MS;DB;F;K;A;CN;N;M;DAZ;H;DBV;G;K;B;DA;DC", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Trojan Belt,Empyrean Straits,Odin's Hold,Galactic Centre,Norma Expanse,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant TubeABCD_02 = new OrganicVariant("TubeABCD_02",2100503, OrganicSpecies.AlbidumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.044, (decimal?)2, (decimal?)200, (decimal?)500, (decimal?)0, (decimal?)0.0001, "RockyBody;HighMetalContentBody", "No Atmosphere", "", "Metallic Magma;None;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma;Minor Rocky Magma", "F;G;A;CN;L;K;N;M;B;DAB;DA;M;DC;H", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Galactic Centre,Norma Expanse,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant TubeABCD_03 = new OrganicVariant("TubeABCD_03",2100504, OrganicSpecies.CaeruleumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.043, (decimal?)1.2, (decimal?)200, (decimal?)500, (decimal?)0, (decimal?)0.0047, "RockyBody;HighMetalContentBody", "No Atmosphere;Thin,SulphurDioxide", "", "None;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma;Minor Rocky Magma", "F;M;G;H;A;CN;L;K;N;M;B;DAB;DA;Ae;DC;K;MS", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Trojan Belt,Empyrean Straits,Odin's Hold,Galactic Centre,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant TubeEFGH = new OrganicVariant("TubeEFGH",2100505, OrganicSpecies.BlatteumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.044, (decimal?)0.33, (decimal?)200, (decimal?)500, (decimal?)0, (decimal?)0.001, "RockyBody;HighMetalContentBody", "No Atmosphere;Thin,SulphurDioxide", "", "Metallic Magma;None;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma", "F;G;A;L;K;N;B;M", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Arcadian Stream,Odin's Hold,Inner Orion Spur,Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant TubeEFGH_01 = new OrganicVariant("TubeEFGH_01",2100506, OrganicSpecies.LindigoticumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.043, (decimal?)0.25, (decimal?)200, (decimal?)500, null, null, "RockyBody;HighMetalContentBody", "No Atmosphere", "", "Metallic Magma;None;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma;Minor Metallic Magma", "F;G;A;L;K;N;B;M", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Arcadian Stream,Odin's Hold,Inner Orion Spur,Norma Expanse,Ryker's Hope" ); + public static readonly OrganicVariant TubeEFGH_02 = new OrganicVariant("TubeEFGH_02",2100507, OrganicSpecies.ViolaceumSinuousTubers, OrganicGenus.Tubers, (decimal?)0.045, (decimal?)0.28, (decimal?)200, (decimal?)500, (decimal?)0, (decimal?)0.00005, "RockyBody;HighMetalContentBody", "No Atmosphere", "", "Metallic Magma;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma", "F;G;A;L;K;N;B;M", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Norma Expanse,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant TubeEFGH_03 = new OrganicVariant("TubeEFGH_03",2100508, OrganicSpecies.VirideSinuousTubers, OrganicGenus.Tubers, (decimal?)0.043, (decimal?)0.19, (decimal?)200, (decimal?)500, (decimal?)0.002, (decimal?)0.00018, "RockyBody;HighMetalContentBody", "No Atmosphere;Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma;Rocky Magma;Minor Metallic Magma", "F;G;A;L;K;N;B;M", "", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Odin's Hold,Inner Orion Spur,Norma Expanse,Ryker's Hope,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tubus_01_A = new OrganicVariant("Tubus_01_A",2430103, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.044, (decimal?)0.15, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "A", "A", "", "", null, null, null, "Elysian Shore,The Formidine Rift,Izanami,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_01_B = new OrganicVariant("Tubus_01_B",2430102, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.083, (decimal?)0.084, (decimal?)160, (decimal?)170, (decimal?)0.012, (decimal?)0.013, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Ryker's Hope" ); + public static readonly OrganicVariant Tubus_01_D = new OrganicVariant("Tubus_01_D",2430112, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.092, (decimal?)0.144, (decimal?)160, (decimal?)190, (decimal?)0.015, (decimal?)0.039, "RockyBody", "Thin,CarbonDioxide", "", "None", "DBZ;N;DA;H;DAV", "D", "", "", null, null, null, "Izanami,Ryker's Hope" ); + public static readonly OrganicVariant Tubus_01_F = new OrganicVariant("Tubus_01_F",2430104, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.041, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;M;B", "F", "", "", null, null, null, "Elysian Shore,Achilles's Altar,The Formidine Rift,Izanami,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_01_G = new OrganicVariant("Tubus_01_G",2430105, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.042, (decimal?)0.151, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N", "G", "", "", null, null, null, "Elysian Shore,Achilles's Altar,Izanami,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,The Conduit,Galactic Centre,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_01_K = new OrganicVariant("Tubus_01_K",2430106, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.041, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;M", "K", "", "", null, null, null, "Elysian Shore,The Formidine Rift,Izanami,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_01_L = new OrganicVariant("Tubus_01_L",2430108, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.047, (decimal?)0.131, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.058, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;H", "L", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tubus_01_M = new OrganicVariant("Tubus_01_M",2430107, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.045, (decimal?)0.147, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.082, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;H", "M", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_01_N = new OrganicVariant("Tubus_01_N",2430113, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.047, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_01_T = new OrganicVariant("Tubus_01_T",2430109, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.047, (decimal?)0.143, (decimal?)160, (decimal?)190, (decimal?)0.024, (decimal?)0.083, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;H;K", "T", "", "", null, null, null, "Ryker's Hope,Izanami,Sanguineous Rim" ); + public static readonly OrganicVariant Tubus_01_TTS = new OrganicVariant("Tubus_01_TTS",2430110, OrganicSpecies.TubusConifer, OrganicGenus.Tubus, (decimal?)0.048, (decimal?)0.124, (decimal?)160, (decimal?)180, (decimal?)0.005, (decimal?)0.055, "RockyBody", "Thin,CarbonDioxide", "", "None", "A;TTS", "TTS", "", "", null, null, null, "Elysian Shore,Izanami,Sanguineous Rim,Outer Orion-Perseus Conflux,Ryker's Hope" ); + public static readonly OrganicVariant Tubus_02_A = new OrganicVariant("Tubus_02_A",2430203, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.051, (decimal?)0.149, (decimal?)160, (decimal?)190, (decimal?)0.002, (decimal?)0.031, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Temple,Vulcan Gate,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tubus_02_B = new OrganicVariant("Tubus_02_B",2430202, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.098, (decimal?)0.13, (decimal?)160, (decimal?)170, (decimal?)0.013, (decimal?)0.024, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tubus_02_F = new OrganicVariant("Tubus_02_F",2430204, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.052, (decimal?)0.152, (decimal?)160, (decimal?)190, (decimal?)0.001, (decimal?)0.093, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "A;F;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_02_G = new OrganicVariant("Tubus_02_G",2430205, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.045, (decimal?)0.151, (decimal?)160, (decimal?)180, (decimal?)0, (decimal?)0.032, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;B", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,The Void,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_02_K = new OrganicVariant("Tubus_02_K",2430206, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.048, (decimal?)0.152, (decimal?)160, (decimal?)190, (decimal?)0, (decimal?)0.032, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;K;M", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_02_L = new OrganicVariant("Tubus_02_L",2430208, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.046, (decimal?)0.151, (decimal?)160, (decimal?)190, (decimal?)0, (decimal?)0.099, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M;M;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_02_M = new OrganicVariant("Tubus_02_M",2430207, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.048, (decimal?)0.152, (decimal?)160, (decimal?)190, (decimal?)0, (decimal?)0.032, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M;DCV;M;DC;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_02_N = new OrganicVariant("Tubus_02_N",2430213, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.05, (decimal?)0.141, (decimal?)160, (decimal?)190, (decimal?)0.003, (decimal?)0.071, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "Perseus Arm,Errant Marches,Elysian Shore,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Norma Arm,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Achilles's Altar,Norma Expanse,Ryker's Hope,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Tubus_02_T = new OrganicVariant("Tubus_02_T",2430209, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.046, (decimal?)0.152, (decimal?)160, (decimal?)190, (decimal?)0, (decimal?)0.081, "HighMetalContentBody", "Thin,Ammonia;Thin,CarbonDioxide", "", "Major Silicate Vapour Geysers;None", "F;G;L;K;N;M;DA;M;DC", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Outer Scutum-Centaurus Arm,Vulcan Gate,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_02_TTS = new OrganicVariant("Tubus_02_TTS",2430210, OrganicSpecies.TubusSororibus, OrganicGenus.Tubus, (decimal?)0.059, (decimal?)0.135, (decimal?)160, (decimal?)180, (decimal?)0.004, (decimal?)0.025, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "G;B;TTS", "TTS", "", "", null, null, null, "Outer Orion Spur,Sagittarius-Carina Arm,Elysian Shore,Sanguineous Rim,Inner Orion Spur,Ryker's Hope,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_03_A = new OrganicVariant("Tubus_03_A",2430303, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.041, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.097, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;A", "A", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Trojan Belt,Odin's Hold,Outer Scutum-Centaurus Arm,Galactic Centre,The Void,Norma Expanse,The Veils" ); + public static readonly OrganicVariant Tubus_03_B = new OrganicVariant("Tubus_03_B",2430302, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.105, (decimal?)0.106, (decimal?)160, (decimal?)177, (decimal?)0.02, (decimal?)0.021, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Norma Expanse" ); + public static readonly OrganicVariant Tubus_03_D = new OrganicVariant("Tubus_03_D",2430312, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.079, (decimal?)0.106, (decimal?)160, (decimal?)180, (decimal?)0.011, (decimal?)0.021, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;DA;DAV", "D", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_03_F = new OrganicVariant("Tubus_03_F",2430304, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.041, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;B", "F", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Orion-Cygnus Arm,Arcadian Stream,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_03_G = new OrganicVariant("Tubus_03_G",2430305, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.042, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N;M;B", "G", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_03_K = new OrganicVariant("Tubus_03_K",2430306, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.044, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.097, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;N;H;MS", "K", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Norma Arm,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_03_L = new OrganicVariant("Tubus_03_L",2430308, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.059, (decimal?)0.139, (decimal?)160, (decimal?)180, (decimal?)0.006, (decimal?)0.034, "RockyBody", "Thin,CarbonDioxide", "", "None", "G;L;K;M", "L", "", "", null, null, null, "Galactic Centre,Norma Expanse,Inner Scutum-Centaurus Arm,Hieronymus Delta" ); + public static readonly OrganicVariant Tubus_03_M = new OrganicVariant("Tubus_03_M",2430307, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.047, (decimal?)0.152, (decimal?)160, (decimal?)190, (decimal?)0.004, (decimal?)0.095, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;N;M;M;DC;MS", "M", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_03_N = new OrganicVariant("Tubus_03_N",2430313, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.044, (decimal?)0.15, (decimal?)160, (decimal?)200, (decimal?)0.003, (decimal?)0.092, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;H", "N", "", "", null, null, null, "The Void,Formorian Frontier,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,Odin's Hold,Galactic Centre,Norma Expanse,The Veils" ); + public static readonly OrganicVariant Tubus_03_T = new OrganicVariant("Tubus_03_T",2430309, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.117, (decimal?)0.139, (decimal?)160, (decimal?)190, (decimal?)0.025, (decimal?)0.036, "RockyBody", "Thin,CarbonDioxide", "", "None", "H", "T", "", "", null, null, null, "Formorian Frontier,Odin's Hold" ); + public static readonly OrganicVariant Tubus_03_TTS = new OrganicVariant("Tubus_03_TTS",2430310, OrganicSpecies.TubusCavas, OrganicGenus.Tubus, (decimal?)0.058, (decimal?)0.124, (decimal?)160, (decimal?)196, (decimal?)0.006, (decimal?)0.07, "RockyBody", "Thin,CarbonDioxide", "", "None", "A;TTS", "TTS", "", "", null, null, null, "Norma Expanse,The Veils" ); + public static readonly OrganicVariant Tubus_04_A = new OrganicVariant("Tubus_04_A",2430403, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.04, (decimal?)0.153, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;Minor Water Magma;Major Silicate Vapour Geysers;None", "F;A", "A", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_04_B = new OrganicVariant("Tubus_04_B",2430402, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.069, (decimal?)0.138, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.004, "RockyBody", "Thin,Ammonia", "", "None", "B", "B", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Odin's Hold,Inner Orion Spur,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_04_F = new OrganicVariant("Tubus_04_F",2430404, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.041, (decimal?)0.153, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;F;G;A;M;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Outer Scutum-Centaurus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_04_G = new OrganicVariant("Tubus_04_G",2430405, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.04, (decimal?)0.164, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Silicate Vapour Geysers;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma;Minor Rocky Magma", "F;G;A;N;B;A", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_04_K = new OrganicVariant("Tubus_04_K",2430406, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.039, (decimal?)0.153, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.014, "RockyBody", "Thin,Ammonia", "", "Metallic Magma;None;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;G;A;K;N;B;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_04_L = new OrganicVariant("Tubus_04_L",2430408, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.046, (decimal?)0.151, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "None", "G;H;K;M", "L", "", "", null, null, null, "Xibalba,Outer Orion Spur,Mare Somnia,Kepler's Crest,Formorian Frontier,Inner Scutum-Centaurus Arm,Newton's Vault,Hieronymus Delta,Norma Expanse,The Formidine Rift,Sanguineous Rim,Orion-Cygnus Arm,Inner Orion Spur,Lyra's Song,Norma Arm,Vulcan Gate,The Abyss" ); + public static readonly OrganicVariant Tubus_04_M = new OrganicVariant("Tubus_04_M",2430407, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.045, (decimal?)0.153, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody", "Thin,Ammonia", "", "Minor Water Magma;None", "F;G;A;K;N;M;M;DC;H;K", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Odin's Hold,The Void,Galactic Centre,Xibalba,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tubus_04_N = new OrganicVariant("Tubus_04_N",2430413, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.044, (decimal?)0.15, (decimal?)160, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody", "Thin,Ammonia", "", "None", "N;H", "N", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Elysian Shore,Empyrean Straits,Inner Orion Spur,Ryker's Hope" ); + public static readonly OrganicVariant Tubus_04_O = new OrganicVariant("Tubus_04_O",2430401, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.142, (decimal?)0.143, (decimal?)170, (decimal?)177, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "O", "O", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tubus_04_T = new OrganicVariant("Tubus_04_T",2430409, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.073, (decimal?)0.138, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "H", "T", "", "", null, null, null, "Ryker's Hope,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tubus_04_TTS = new OrganicVariant("Tubus_04_TTS",2430410, OrganicSpecies.TubusRosarium, OrganicGenus.Tubus, (decimal?)0.059, (decimal?)0.152, (decimal?)160, (decimal?)177, (decimal?)0.001, (decimal?)0.009, "RockyBody", "Thin,Ammonia", "", "None", "TTS", "TTS", "", "", null, null, null, "Galactic Centre,Outer Arm,Norma Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Tubus_05_A = new OrganicVariant("Tubus_05_A",2430503, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.042, (decimal?)0.151, (decimal?)160, (decimal?)177, (decimal?)0.003, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;A;B", "A", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Dryman's Point,Orion-Cygnus Arm,Trojan Belt,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,The Abyss" ); + public static readonly OrganicVariant Tubus_05_B = new OrganicVariant("Tubus_05_B",2430502, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.056, (decimal?)0.139, (decimal?)160, (decimal?)177, (decimal?)0.005, (decimal?)0.036, "RockyBody", "Thin,CarbonDioxide", "", "None", "B", "B", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Tubus_05_D = new OrganicVariant("Tubus_05_D",2430512, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.058, (decimal?)0.116, (decimal?)160, (decimal?)196, (decimal?)0.01, (decimal?)0.065, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;DA", "D", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm,Dryman's Point" ); + public static readonly OrganicVariant Tubus_05_F = new OrganicVariant("Tubus_05_F",2430504, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.04, (decimal?)0.184, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.098, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;B", "F", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,The Veils,The Abyss" ); + public static readonly OrganicVariant Tubus_05_G = new OrganicVariant("Tubus_05_G",2430505, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.04, (decimal?)0.152, (decimal?)160, (decimal?)196, (decimal?)0.001, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N;K", "G", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Outer Orion Spur,Formorian Frontier,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,The Abyss" ); + public static readonly OrganicVariant Tubus_05_K = new OrganicVariant("Tubus_05_K",2430506, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.04, (decimal?)0.153, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;M;N;M;DC;H;K", "K", "", "", null, null, null, "Formorian Frontier,Mare Somnia,Sagittarius-Carina Arm,Outer Orion Spur,Inner Scutum-Centaurus Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Dryman's Point,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Temple,Inner Orion-Perseus Conflux,The Abyss" ); + public static readonly OrganicVariant Tubus_05_L = new OrganicVariant("Tubus_05_L",2430508, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.048, (decimal?)0.142, (decimal?)160, (decimal?)196, (decimal?)0.006, (decimal?)0.097, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;K;N;M", "L", "", "", null, null, null, "Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hawking's Gap,Odin's Hold,Inner Orion Spur,Acheron,The Abyss" ); + public static readonly OrganicVariant Tubus_05_M = new OrganicVariant("Tubus_05_M",2430507, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.043, (decimal?)0.151, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;N;M;DC;H;K", "M", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,The Abyss" ); + public static readonly OrganicVariant Tubus_05_N = new OrganicVariant("Tubus_05_N",2430513, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.044, (decimal?)0.146, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.088, "RockyBody", "Thin,CarbonDioxide", "", "None", "N;B;H", "N", "", "", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,Dryman's Point,Odin's Hold,Inner Orion Spur,Galactic Centre,Acheron,Norma Arm" ); + public static readonly OrganicVariant Tubus_05_T = new OrganicVariant("Tubus_05_T",2430509, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.067, (decimal?)0.123, (decimal?)160, (decimal?)196, (decimal?)0.008, (decimal?)0.047, "RockyBody", "Thin,CarbonDioxide", "", "None", "A;H;K", "T", "", "", null, null, null, "Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Tubus_05_TTS = new OrganicVariant("Tubus_05_TTS",2430510, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.041, (decimal?)0.148, (decimal?)160, (decimal?)196, (decimal?)0.003, (decimal?)0.087, "RockyBody", "Thin,CarbonDioxide", "", "None", "G;TTS", "TTS", "", "", null, null, null, "Mare Somnia,Inner Scutum-Centaurus Arm,Hawking's Gap,Inner Orion Spur,Galactic Centre" ); + public static readonly OrganicVariant Tubus_05_W = new OrganicVariant("Tubus_05_W",2430511, OrganicSpecies.TubusCompagibus, OrganicGenus.Tubus, (decimal?)0.069, (decimal?)0.073, (decimal?)160, (decimal?)196, (decimal?)0.008, (decimal?)0.01, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_01_F = new OrganicVariant("Tussocks_01_F",2450101, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.175, (decimal?)146, (decimal?)154, (decimal?)0.003, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;N", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_01_G = new OrganicVariant("Tussocks_01_G",2450102, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.076, (decimal?)146, (decimal?)154, (decimal?)0.003, (decimal?)0.011, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_01_K = new OrganicVariant("Tussocks_01_K",2450103, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.039, (decimal?)0.089, (decimal?)146, (decimal?)154, (decimal?)0.002, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;B;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_01_L = new OrganicVariant("Tussocks_01_L",2450105, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.047, (decimal?)0.09, (decimal?)146, (decimal?)154, (decimal?)0.003, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;L;K;M;DCV;M", "L", "", "", null, null, null, "Outer Orion Spur,Perseus Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Dryman's Point,Inner Orion Spur,Achilles's Altar,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_01_M = new OrganicVariant("Tussocks_01_M",2450104, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.088, (decimal?)146, (decimal?)154, (decimal?)0.003, (decimal?)0.011, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;K", "M", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Dryman's Point,Orion-Cygnus Arm,Temple,Outer Orion-Perseus Conflux,Inner Orion Spur,Achilles's Altar,Lyra's Song,Perseus Arm,Vulcan Gate,The Abyss" ); + public static readonly OrganicVariant Tussocks_01_T = new OrganicVariant("Tussocks_01_T",2450106, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.047, (decimal?)0.083, (decimal?)146, (decimal?)154, (decimal?)0.003, (decimal?)0.01, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "L;K;M", "T", "", "", null, null, null, "Elysian Shore,Hawking's Gap,Sanguineous Rim,Orion-Cygnus Arm,Inner Orion Spur,Lyra's Song,Acheron,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_01_W = new OrganicVariant("Tussocks_01_W",2450110, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.045, (decimal?)0.046, (decimal?)146, (decimal?)154, (decimal?)0.003, (decimal?)0.004, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_01_Y = new OrganicVariant("Tussocks_01_Y",2450109, OrganicSpecies.TussockPennata, OrganicGenus.Tussocks, (decimal?)0.051, (decimal?)0.057, (decimal?)146, (decimal?)153, (decimal?)0.003, (decimal?)0.005, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "K;M", "Y", "", "", null, null, null, "Orion-Cygnus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_02_D = new OrganicVariant("Tussocks_02_D",2450211, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.057, (decimal?)0.072, (decimal?)155, (decimal?)160, (decimal?)0.009, (decimal?)0.015, "RockyBody", "Thin,CarbonDioxide", "", "None", "DA", "D", "", "", null, null, null, "Izanami,Temple" ); + public static readonly OrganicVariant Tussocks_02_F = new OrganicVariant("Tussocks_02_F",2450201, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.039, (decimal?)0.16, (decimal?)155, (decimal?)160, (decimal?)0.002, (decimal?)0.048, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;N;O", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Odin's Hold,Lyra's Song,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_02_G = new OrganicVariant("Tussocks_02_G",2450202, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.117, (decimal?)155, (decimal?)160, (decimal?)0.003, (decimal?)0.022, "RockyBody;HighMetalContentBody;IcyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K", "G", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_02_K = new OrganicVariant("Tussocks_02_K",2450203, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.039, (decimal?)0.124, (decimal?)155, (decimal?)160, (decimal?)0.002, (decimal?)0.022, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_02_L = new OrganicVariant("Tussocks_02_L",2450205, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.048, (decimal?)0.119, (decimal?)155, (decimal?)160, (decimal?)0.003, (decimal?)0.02, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;M;M", "L", "", "", null, null, null, "Outer Orion Spur,Perseus Arm,Sagittarius-Carina Arm,Elysian Shore,Hawking's Gap,Sanguineous Rim,Tenebrae,Dryman's Point,Orion-Cygnus Arm,Inner Orion Spur,Lyra's Song,Ryker's Hope,Temple,Vulcan Gate,The Abyss" ); + public static readonly OrganicVariant Tussocks_02_M = new OrganicVariant("Tussocks_02_M",2450204, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.127, (decimal?)155, (decimal?)160, (decimal?)0.003, (decimal?)0.022, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;DAB;M;K", "M", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_02_T = new OrganicVariant("Tussocks_02_T",2450206, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.115, (decimal?)155, (decimal?)160, (decimal?)0.002, (decimal?)0.018, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;L;K;M", "T", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Inner Orion Spur,Achilles's Altar,Lyra's Song,Ryker's Hope,Temple,The Abyss" ); + public static readonly OrganicVariant Tussocks_02_W = new OrganicVariant("Tussocks_02_W",2450210, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.05, (decimal?)0.056, (decimal?)155, (decimal?)160, (decimal?)0.004, (decimal?)0.006, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_02_Y = new OrganicVariant("Tussocks_02_Y",2450209, OrganicSpecies.TussockVentusa, OrganicGenus.Tussocks, (decimal?)0.055, (decimal?)0.097, (decimal?)155, (decimal?)160, (decimal?)0.004, (decimal?)0.013, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_03_D = new OrganicVariant("Tussocks_03_D",2450311, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.098, (decimal?)0.134, (decimal?)161, (decimal?)170, (decimal?)0.017, (decimal?)0.033, "RockyBody", "Thin,CarbonDioxide", "", "None", "H;DBZ;DA", "D", "", "", null, null, null, "Izanami,Temple,Dryman's Point" ); + public static readonly OrganicVariant Tussocks_03_F = new OrganicVariant("Tussocks_03_F",2450301, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.19, (decimal?)161, (decimal?)170, (decimal?)0.003, (decimal?)0.053, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_03_G = new OrganicVariant("Tussocks_03_G",2450302, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.188, (decimal?)161, (decimal?)170, (decimal?)0.001, (decimal?)0.053, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;B;K", "G", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_03_K = new OrganicVariant("Tussocks_03_K",2450303, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.192, (decimal?)161, (decimal?)170, (decimal?)0.003, (decimal?)0.052, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;M;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_03_L = new OrganicVariant("Tussocks_03_L",2450305, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.188, (decimal?)161, (decimal?)170, (decimal?)0.002, (decimal?)0.049, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M;M;DC;H", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_03_M = new OrganicVariant("Tussocks_03_M",2450304, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.193, (decimal?)161, (decimal?)170, (decimal?)0.003, (decimal?)0.051, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M;M;DC;H;K", "M", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_03_T = new OrganicVariant("Tussocks_03_T",2450306, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.049, (decimal?)0.186, (decimal?)161, (decimal?)170, (decimal?)0.003, (decimal?)0.048, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Perseus Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Inner Orion Spur,Ryker's Hope,Lyra's Song,Acheron,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_03_W = new OrganicVariant("Tussocks_03_W",2450310, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.069, (decimal?)0.103, (decimal?)161, (decimal?)170, (decimal?)0.008, (decimal?)0.02, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_03_Y = new OrganicVariant("Tussocks_03_Y",2450309, OrganicSpecies.TussockIgnis, OrganicGenus.Tussocks, (decimal?)0.061, (decimal?)0.089, (decimal?)161, (decimal?)170, (decimal?)0.005, (decimal?)0.011, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "K;M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_04_D = new OrganicVariant("Tussocks_04_D",2450411, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.197, (decimal?)0.208, (decimal?)152, (decimal?)177, (decimal?)0.002, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "F;D", "D", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_04_F = new OrganicVariant("Tussocks_04_F",2450401, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.048, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;F;G;A;N;B;H", "F", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Vulcan Gate,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_04_G = new OrganicVariant("Tussocks_04_G",2450402, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.276, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;H;A;K;N;B;A", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_04_K = new OrganicVariant("Tussocks_04_K",2450403, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody;IcyBody", "Thin,Ammonia", "", "", "F;G;H;A;K;M;M;N;M;DC;K", "K", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_04_L = new OrganicVariant("Tussocks_04_L",2450405, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.276, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "DB;F;G;A;L;K;N;M;DCV;M;DC;DA;C;H;K", "L", "", "", null, null, null, "Outer Orion Spur,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_04_M = new OrganicVariant("Tussocks_04_M",2450404, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.28, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.011, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;S;A;L;K;M;N;O;M;DC;H;K", "M", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Norma Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_04_T = new OrganicVariant("Tussocks_04_T",2450406, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.052, (decimal?)0.274, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;L;K;N;M;B;DA;M;H;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Izanami,Orion-Cygnus Arm,Temple,Odin's Hold,Inner Orion Spur,Galactic Centre,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_04_W = new OrganicVariant("Tussocks_04_W",2450410, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.14, (decimal?)0.198, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,Ammonia", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_04_Y = new OrganicVariant("Tussocks_04_Y",2450409, OrganicSpecies.TussockCultro, OrganicGenus.Tussocks, (decimal?)0.058, (decimal?)0.22, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.007, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "G;K;N;M;H", "Y", "", "", null, null, null, "Izanami,Odin's Hold,Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_05_D = new OrganicVariant("Tussocks_05_D",2450511, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.167, (decimal?)0.168, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.002, "RockyBody", "Thin,Ammonia", "", "None", "DAV", "D", "", "", null, null, null, "Formorian Frontier" ); + public static readonly OrganicVariant Tussocks_05_F = new OrganicVariant("Tussocks_05_F",2450501, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;A;N;B;H", "F", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Newton's Vault,Hawking's Gap,Hieronymus Delta,Orion-Cygnus Arm,Arcadian Stream,Trojan Belt,The Veils,Inner Orion Spur,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_05_G = new OrganicVariant("Tussocks_05_G",2450502, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.043, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;H;A;K;N;B", "G", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Orion-Cygnus Arm,Arcadian Stream,Trojan Belt,The Veils,Inner Orion Spur,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_05_K = new OrganicVariant("Tussocks_05_K",2450503, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;A;K;N;DA;M;H", "K", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Orion-Cygnus Arm,Trojan Belt,The Veils,Inner Orion Spur,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_05_L = new OrganicVariant("Tussocks_05_L",2450505, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;A;L;K;N;DAB;M;DC;H", "L", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Trojan Belt,The Veils,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_05_M = new OrganicVariant("Tussocks_05_M",2450504, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.045, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;H;A;DBZ;K;N;DAB;DA;M;DC;K", "M", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hawking's Gap,Hieronymus Delta,Trojan Belt,The Veils,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_05_T = new OrganicVariant("Tussocks_05_T",2450506, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.053, (decimal?)0.272, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "", "F;G;A;L;K;N;DA;M;H;DAV", "T", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Void,Norma Expanse,The Veils" ); + public static readonly OrganicVariant Tussocks_05_Y = new OrganicVariant("Tussocks_05_Y",2450509, OrganicSpecies.TussockCatena, OrganicGenus.Tussocks, (decimal?)0.157, (decimal?)0.238, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.004, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "L;H", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_06_D = new OrganicVariant("Tussocks_06_D",2450611, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.062, (decimal?)0.142, (decimal?)147, (decimal?)196, (decimal?)0.007, (decimal?)0.093, "RockyBody", "Thin,CarbonDioxide", "", "None", "DB;DA;H", "D", "", "", null, null, null, "Empyrean Straits,Norma Arm,Newton's Vault" ); + public static readonly OrganicVariant Tussocks_06_F = new OrganicVariant("Tussocks_06_F",2450601, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.271, (decimal?)147, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;S;G;A;N;B;H", "F", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Aquila's Halo,Inner Scutum-Centaurus Arm,Newton's Vault,The Formidine Rift,Izanami,Arcadian Stream,Empyrean Straits,The Conduit,Odin's Hold,Galactic Centre,Outer Arm,Norma Expanse,Norma Arm" ); + public static readonly OrganicVariant Tussocks_06_G = new OrganicVariant("Tussocks_06_G",2450602, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.97, (decimal?)147, (decimal?)196, (decimal?)0.003, (decimal?)1012.827, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N;K", "G", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Inner Scutum-Centaurus Arm,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,The Conduit,Odin's Hold,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Tussocks_06_K = new OrganicVariant("Tussocks_06_K",2450603, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.269, (decimal?)147, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;CJ;CN;K;N;M;B;DA;M;DC;H", "K", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,The Formidine Rift,Norma Expanse,Norma Arm,Kepler's Crest,Errant Marches,Newton's Vault,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Xibalba,Empyrean Straits,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_06_L = new OrganicVariant("Tussocks_06_L",2450605, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.051, (decimal?)0.269, (decimal?)147, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;DAB;DA;M;DC;H;MS", "L", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Inner Scutum-Centaurus Arm,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,The Conduit,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Tussocks_06_M = new OrganicVariant("Tussocks_06_M",2450604, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.269, (decimal?)147, (decimal?)196, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DBV;F;G;S;DBZ;A;K;N;M;DAB;DA;M;H", "M", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,The Conduit,Odin's Hold,Galactic Centre,Outer Arm,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Tussocks_06_T = new OrganicVariant("Tussocks_06_T",2450606, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.048, (decimal?)0.268, (decimal?)147, (decimal?)196, (decimal?)0.004, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;L;K;N;M;H", "T", "", "", null, null, null, "Xibalba,Kepler's Crest,Errant Marches,Newton's Vault,The Formidine Rift,Arcadian Stream,Empyrean Straits,The Conduit,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Tussocks_06_Y = new OrganicVariant("Tussocks_06_Y",2450609, OrganicSpecies.TussockPennatis, OrganicGenus.Tussocks, (decimal?)0.052, (decimal?)0.211, (decimal?)147, (decimal?)196, (decimal?)0.003, (decimal?)0.082, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;K;H;M", "Y", "", "", null, null, null, "Newton's Vault,The Formidine Rift,Empyrean Straits,Galactic Centre,Outer Arm,Norma Arm" ); + public static readonly OrganicVariant Tussocks_07_D = new OrganicVariant("Tussocks_07_D",2450711, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.102, (decimal?)0.103, (decimal?)171, (decimal?)174, (decimal?)0.019, (decimal?)0.02, "RockyBody", "Thin,CarbonDioxide", "", "None", "DAV", "D", "", "", null, null, null, "Izanami" ); + public static readonly OrganicVariant Tussocks_07_F = new OrganicVariant("Tussocks_07_F",2450701, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.043, (decimal?)0.223, (decimal?)171, (decimal?)174, (decimal?)0, (decimal?)0.069, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_07_G = new OrganicVariant("Tussocks_07_G",2450702, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.209, (decimal?)171, (decimal?)174, (decimal?)0.01, (decimal?)0.071, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;H", "G", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Formorian Frontier,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_07_K = new OrganicVariant("Tussocks_07_K",2450703, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.044, (decimal?)0.225, (decimal?)171, (decimal?)174, (decimal?)0.01, (decimal?)0.07, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;M;N;M;K", "K", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Odin's Hold,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_07_L = new OrganicVariant("Tussocks_07_L",2450705, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.082, (decimal?)0.221, (decimal?)171, (decimal?)174, (decimal?)0.011, (decimal?)0.067, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;DA;M;DC;H", "L", "", "", null, null, null, "Outer Orion Spur,Perseus Arm,Sagittarius-Carina Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Tenebrae,Dryman's Point,Orion-Cygnus Arm,Inner Orion Spur,Lyra's Song,Ryker's Hope,Temple,Vulcan Gate,The Abyss" ); + public static readonly OrganicVariant Tussocks_07_M = new OrganicVariant("Tussocks_07_M",2450704, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.048, (decimal?)0.226, (decimal?)171, (decimal?)174, (decimal?)0.011, (decimal?)0.07, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;M;N;M;K", "M", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_07_T = new OrganicVariant("Tussocks_07_T",2450706, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.092, (decimal?)0.214, (decimal?)171, (decimal?)174, (decimal?)0.011, (decimal?)0.063, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DBV;F;G;L;K;M;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Perseus Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Inner Orion Spur,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_07_Y = new OrganicVariant("Tussocks_07_Y",2450709, OrganicSpecies.TussockSerrati, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.047, (decimal?)171, (decimal?)174, (decimal?)0.037, (decimal?)0.038, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_08_D = new OrganicVariant("Tussocks_08_D",2450811, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.103, (decimal?)0.209, (decimal?)175, (decimal?)180, (decimal?)0.019, (decimal?)0.081, "RockyBody", "Thin,CarbonDioxide", "", "None", "DA;H", "D", "", "", null, null, null, "Temple,Izanami,Outer Orion-Perseus Conflux,Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_08_F = new OrganicVariant("Tussocks_08_F",2450801, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.27, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;N;M;H", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_08_G = new OrganicVariant("Tussocks_08_G",2450802, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.043, (decimal?)0.266, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_08_K = new OrganicVariant("Tussocks_08_K",2450803, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.045, (decimal?)0.271, (decimal?)175, (decimal?)175, (decimal?)0.016, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;DA;K", "K", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_08_L = new OrganicVariant("Tussocks_08_L",2450805, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.071, (decimal?)0.269, (decimal?)175, (decimal?)180, (decimal?)0.017, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;L;K;N;DAB;M;DC;H;K", "L", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_08_M = new OrganicVariant("Tussocks_08_M",2450804, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.045, (decimal?)0.27, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;DAB;M;MS", "M", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_08_T = new OrganicVariant("Tussocks_08_T",2450806, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.051, (decimal?)0.256, (decimal?)175, (decimal?)180, (decimal?)0.016, (decimal?)0.09, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;L;K;N;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Acheron,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Outer Orion-Perseus Conflux,Inner Orion Spur,Achilles's Altar,Ryker's Hope,Temple,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_08_W = new OrganicVariant("Tussocks_08_W",2450810, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.161, (decimal?)0.162, (decimal?)175, (decimal?)180, (decimal?)0.048, (decimal?)0.049, "RockyBody", "Thin,CarbonDioxide", "", "None", "W", "W", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_08_Y = new OrganicVariant("Tussocks_08_Y",2450809, OrganicSpecies.TussockAlbata, OrganicGenus.Tussocks, (decimal?)0.149, (decimal?)0.15, (decimal?)175, (decimal?)180, (decimal?)0.03, (decimal?)0.031, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_09_D = new OrganicVariant("Tussocks_09_D",2450911, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.058, (decimal?)0.192, (decimal?)145, (decimal?)197, (decimal?)0.006, (decimal?)0.068, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DB;N;DA;DC;DAV", "D", "", "", null, null, null, "Formorian Frontier,Inner Scutum-Centaurus Arm,Odin's Hold,Galactic Centre,Norma Expanse" ); + public static readonly OrganicVariant Tussocks_09_F = new OrganicVariant("Tussocks_09_F",2450901, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.271, (decimal?)145, (decimal?)197, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;N;B;H", "F", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Arcadian Stream,Trojan Belt,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Scutum-Centaurus Arm,Galactic Centre,The Void,Norma Expanse,Temple,The Veils" ); + public static readonly OrganicVariant Tussocks_09_G = new OrganicVariant("Tussocks_09_G",2450902, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.265, (decimal?)145, (decimal?)197, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;B;H", "G", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Norma Arm,Arcadian Stream,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Inner Orion Spur,Galactic Centre,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_09_K = new OrganicVariant("Tussocks_09_K",2450903, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.039, (decimal?)0.271, (decimal?)145, (decimal?)197, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;S;H;A;K;MS;N;M;B;M;K", "K", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Sagittarius-Carina Arm,Inner Scutum-Centaurus Arm,Hieronymus Delta,Hawking's Gap,Inner Orion-Perseus Conflux,Norma Arm,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Temple,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_09_L = new OrganicVariant("Tussocks_09_L",2450905, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.048, (decimal?)0.271, (decimal?)145, (decimal?)197, (decimal?)0.003, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;DA;M;DC;DCV;H", "L", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_09_M = new OrganicVariant("Tussocks_09_M",2450904, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.044, (decimal?)0.268, (decimal?)145, (decimal?)197, (decimal?)0.002, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;S;A;K;N;M;DAB;DA;M;DC;H;MS", "M", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,Empyrean Straits,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_09_T = new OrganicVariant("Tussocks_09_T",2450906, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.05, (decimal?)0.266, (decimal?)145, (decimal?)197, (decimal?)0.004, (decimal?)0.097, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;DA;M;DC;H", "T", "", "", null, null, null, "Formorian Frontier,Aquila's Halo,Inner Scutum-Centaurus Arm,Hieronymus Delta,Trojan Belt,The Veils,Odin's Hold,Galactic Centre,The Void,Norma Expanse,Outer Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_09_Y = new OrganicVariant("Tussocks_09_Y",2450909, OrganicSpecies.TussockPropagito, OrganicGenus.Tussocks, (decimal?)0.071, (decimal?)0.197, (decimal?)145, (decimal?)197, (decimal?)0.006, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "N;K;H;M", "Y", "", "", null, null, null, "Odin's Hold,Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_10_D = new OrganicVariant("Tussocks_10_D",2451011, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.129, (decimal?)0.217, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.003, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "DB;DA;H", "D", "", "", null, null, null, "Ryker's Hope,Outer Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_10_F = new OrganicVariant("Tussocks_10_F",2451001, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.012, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;A;N;B;H", "F", "", "", null, null, null, "Xibalba,Elysian Shore,The Formidine Rift,Sanguineous Rim,Tenebrae,Empyrean Straits,Outer Orion-Perseus Conflux,Achilles's Altar,Outer Arm,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_10_G = new OrganicVariant("Tussocks_10_G",2451002, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Metallic Magma;Minor Water Magma;None", "F;G;A;K;N;B", "G", "", "", null, null, null, "Errant Marches,Elysian Shore,Sanguineous Rim,Tenebrae,Orion-Cygnus Arm,Outer Orion-Perseus Conflux,Odin's Hold,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_10_K = new OrganicVariant("Tussocks_10_K",2451003, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.044, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "Major Silicate Vapour Geysers;None", "F;G;H;A;K;N;DAB;M;K", "K", "", "", null, null, null, "Errant Marches,Elysian Shore,The Formidine Rift,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Odin's Hold,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_10_L = new OrganicVariant("Tussocks_10_L",2451005, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.045, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.01, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "DBV;F;G;A;L;K;N;M;DA;M;H;DAV", "L", "", "", null, null, null, "Elysian Shore,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_10_M = new OrganicVariant("Tussocks_10_M",2451004, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.049, (decimal?)0.275, (decimal?)152, (decimal?)177, (decimal?)0, (decimal?)0.009, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "F;G;A;CJ;K;N;M;DAB;DA;M;DC", "M", "", "", null, null, null, "Kepler's Crest,Elysian Shore,The Formidine Rift,Izanami,Sanguineous Rim,Tenebrae,Outer Orion-Perseus Conflux,Galactic Centre,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_10_T = new OrganicVariant("Tussocks_10_T",2451006, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.053, (decimal?)0.273, (decimal?)152, (decimal?)177, (decimal?)0.001, (decimal?)0.013, "RockyBody;HighMetalContentBody", "Thin,Ammonia", "", "None", "L;K;N;M;DC;H", "T", "", "", null, null, null, "Elysian Shore,Sanguineous Rim,Outer Orion-Perseus Conflux,Achilles's Altar,Lyra's Song,Ryker's Hope,Perseus Arm,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_10_Y = new OrganicVariant("Tussocks_10_Y",2451009, OrganicSpecies.TussockDivisa, OrganicGenus.Tussocks, (decimal?)0.052, (decimal?)0.07, (decimal?)152, (decimal?)177, (decimal?)0.002, (decimal?)0.013, "HighMetalContentBody", "Thin,Ammonia", "", "None;Major Rocky Magma", "M", "Y", "", "", null, null, null, "Ryker's Hope,Elysian Shore" ); + public static readonly OrganicVariant Tussocks_11_D = new OrganicVariant("Tussocks_11_D",2451111, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.136, (decimal?)0.185, (decimal?)181, (decimal?)190, (decimal?)0.034, (decimal?)0.061, "RockyBody", "Thin,CarbonDioxide", "", "None", "DA;N;H", "D", "", "", null, null, null, "Izanami" ); + public static readonly OrganicVariant Tussocks_11_F = new OrganicVariant("Tussocks_11_F",2451101, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.043, (decimal?)0.27, (decimal?)181, (decimal?)190, (decimal?)0.001, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A;N;B", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_11_G = new OrganicVariant("Tussocks_11_G",2451102, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.269, (decimal?)181, (decimal?)190, (decimal?)0.028, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;B", "G", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_11_K = new OrganicVariant("Tussocks_11_K",2451103, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.293, (decimal?)181, (decimal?)190, (decimal?)0.027, (decimal?)0.099, "RockyBody;HighMetalContentBody;IcyBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;B;K", "K", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Kepler's Crest,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_11_L = new OrganicVariant("Tussocks_11_L",2451105, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.057, (decimal?)0.269, (decimal?)181, (decimal?)190, (decimal?)0.029, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DB;F;G;A;L;K;N;M;DAB;DA;M;DC;H;K", "L", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_11_M = new OrganicVariant("Tussocks_11_M",2451104, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.27, (decimal?)181, (decimal?)190, (decimal?)0.027, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;M;N;DA;M;DC;K", "M", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Perseus Arm,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_11_T = new OrganicVariant("Tussocks_11_T",2451106, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.047, (decimal?)0.268, (decimal?)181, (decimal?)190, (decimal?)0.029, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "G;L;K;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Outer Orion-Perseus Conflux,Inner Orion Spur,Ryker's Hope,Acheron,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_11_Y = new OrganicVariant("Tussocks_11_Y",2451109, OrganicSpecies.TussockCaputus, OrganicGenus.Tussocks, (decimal?)0.162, (decimal?)0.163, (decimal?)181, (decimal?)190, (decimal?)0.035, (decimal?)0.036, "HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "M", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_12_D = new OrganicVariant("Tussocks_12_D",2451211, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.221, (decimal?)0.222, (decimal?)191, (decimal?)196, (decimal?)0.091, (decimal?)0.092, "RockyBody", "Thin,CarbonDioxide", "", "None", "H", "D", "", "", null, null, null, "Elysian Shore" ); + public static readonly OrganicVariant Tussocks_12_F = new OrganicVariant("Tussocks_12_F",2451201, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.269, (decimal?)191, (decimal?)196, (decimal?)0.058, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;N;H", "F", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_12_G = new OrganicVariant("Tussocks_12_G",2451202, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.043, (decimal?)0.272, (decimal?)191, (decimal?)196, (decimal?)0.059, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;H;A", "G", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_12_K = new OrganicVariant("Tussocks_12_K",2451203, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.043, (decimal?)0.271, (decimal?)191, (decimal?)196, (decimal?)0.058, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K", "K", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Errant Marches,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_12_L = new OrganicVariant("Tussocks_12_L",2451205, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.048, (decimal?)0.268, (decimal?)191, (decimal?)196, (decimal?)0.059, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;L;K;N;M", "L", "", "", null, null, null, "Outer Orion Spur,Mare Somnia,Sagittarius-Carina Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Tenebrae,Orion-Cygnus Arm,Dryman's Point,Temple,Inner Orion Spur,Achilles's Altar,Ryker's Hope,Perseus Arm,Vulcan Gate,The Abyss" ); + public static readonly OrganicVariant Tussocks_12_M = new OrganicVariant("Tussocks_12_M",2451204, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.045, (decimal?)0.268, (decimal?)191, (decimal?)196, (decimal?)0.059, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "F;G;A;K;N;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Hawking's Gap,Izanami,Sanguineous Rim,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Tenebrae,Dryman's Point,Outer Orion-Perseus Conflux,Acheron,Inner Orion-Perseus Conflux,Orion-Cygnus Arm,Lyra's Song,The Abyss,Elysian Shore,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_12_T = new OrganicVariant("Tussocks_12_T",2451206, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.139, (decimal?)0.266, (decimal?)191, (decimal?)196, (decimal?)0.061, (decimal?)0.098, "RockyBody;HighMetalContentBody", "Thin,CarbonDioxide", "", "None", "DB;F;A;K;B;M;H", "T", "", "", null, null, null, "Outer Orion Spur,Sagittarius-Carina Arm,Perseus Arm,Elysian Shore,Hawking's Gap,Izanami,Sanguineous Rim,Orion-Cygnus Arm,Inner Orion Spur,Lyra's Song,Ryker's Hope,Temple,Vulcan Gate" ); + public static readonly OrganicVariant Tussocks_12_Y = new OrganicVariant("Tussocks_12_Y",2451209, OrganicSpecies.TussockTriticum, OrganicGenus.Tussocks, (decimal?)0.203, (decimal?)0.204, (decimal?)191, (decimal?)196, (decimal?)0.076, (decimal?)0.077, "RockyBody", "Thin,CarbonDioxide", "", "None", "K", "Y", "", "", null, null, null, "Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_13_D = new OrganicVariant("Tussocks_13_D",2451311, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.269, (decimal?)0.27, (decimal?)132, (decimal?)167, (decimal?)0.003, (decimal?)0.004, "RockyBody", "Thin,SulphurDioxide", "", "None", "DA", "D", "", "", null, null, null, "Inner Scutum-Centaurus Arm" ); + public static readonly OrganicVariant Tussocks_13_F = new OrganicVariant("Tussocks_13_F",2451301, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.275, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.005, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "Metallic Magma;None;Minor Water Magma;Major Silicate Vapour Geysers;Minor Metallic Magma", "F;N;H", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_13_G = new OrganicVariant("Tussocks_13_G",2451302, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.044, (decimal?)0.275, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.025, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;Metallic Magma;None;Minor Metallic Magma", "F;G;A;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,Mare Somnia,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,The Abyss,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_13_K = new OrganicVariant("Tussocks_13_K",2451303, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.042, (decimal?)0.275, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.022, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;Metallic Magma;None;Minor Metallic Magma", "F;G;A;K;N;H", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Outer Scutum-Centaurus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_13_L = new OrganicVariant("Tussocks_13_L",2451305, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.071, (decimal?)0.276, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.003, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "Minor Silicate Vapour Geysers;None", "F;M;H;K", "L", "", "", null, null, null, "Kepler's Crest,Inner Scutum-Centaurus Arm,Elysian Shore,Izanami,Arcadian Stream,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Orion-Perseus Conflux,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Tussocks_13_M = new OrganicVariant("Tussocks_13_M",2451304, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.05, (decimal?)0.276, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.002, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "None", "F;G;A;K;N;M", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,The Void,Galactic Centre,The Abyss,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_13_T = new OrganicVariant("Tussocks_13_T",2451306, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.245, (decimal?)0.274, (decimal?)132, (decimal?)167, (decimal?)0, (decimal?)0.004, "RockyBody;HighMetalContentBody", "Thin,SulphurDioxide", "", "Major Silicate Vapour Geysers;None", "K;H;M", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Arcadian Stream,Empyrean Straits,Odin's Hold,Outer Orion-Perseus Conflux,Inner Orion Spur,Ryker's Hope,Norma Arm" ); + public static readonly OrganicVariant Tussocks_13_Y = new OrganicVariant("Tussocks_13_Y",2451309, OrganicSpecies.TussockStigmasis, OrganicGenus.Tussocks, (decimal?)0.263, (decimal?)0.275, (decimal?)132, (decimal?)167, (decimal?)0.001, (decimal?)0.003, "RockyBody", "Thin,SulphurDioxide", "", "Metallic Magma;Major Silicate Vapour Geysers;None", "H;K", "Y", "", "", null, null, null, "Empyrean Straits,Inner Scutum-Centaurus Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_14_F = new OrganicVariant("Tussocks_14_F",2451401, OrganicSpecies.TussockVirgam, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "Minor Water Magma;None", "F;F;G;A;M;N;B;H;K", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_14_G = new OrganicVariant("Tussocks_14_G",2451402, OrganicSpecies.TussockVirgam, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "Minor Water Magma;None", "F;G;A;G;K;N", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_14_K = new OrganicVariant("Tussocks_14_K",2451403, OrganicSpecies.TussockVirgam, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.054, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "None", "F;G;A;K;N;K", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_14_L = new OrganicVariant("Tussocks_14_L",2451405, OrganicSpecies.TussockVirgam, OrganicGenus.Tussocks, (decimal?)0.046, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.055, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "None", "F;G;A;L;K;N;M;M;DC", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_14_M = new OrganicVariant("Tussocks_14_M",2451404, OrganicSpecies.TussockVirgam, OrganicGenus.Tussocks, (decimal?)0.041, (decimal?)0.063, (decimal?)390, (decimal?)450, (decimal?)0.052, (decimal?)0.099, "RockyBody;HighMetalContentBody", "Thin,Water", "", "None", "F;G;H;A;K;M;N;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_14_T = new OrganicVariant("Tussocks_14_T",2451406, OrganicSpecies.TussockVirgam, OrganicGenus.Tussocks, (decimal?)0.047, (decimal?)0.064, (decimal?)390, (decimal?)450, (decimal?)0.058, (decimal?)0.099, "HighMetalContentBody", "Thin,Water", "", "None", "F;G;A;L;K;N;M;DAV", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Temple,Vulcan Gate,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Odin's Hold,The Void,Galactic Centre,Lyra's Song,Elysian Shore,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_15_D = new OrganicVariant("Tussocks_15_D",2451511, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.066, (decimal?)0.248, (decimal?)80, (decimal?)110, (decimal?)0.001, (decimal?)0.027, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "None;Minor Metallic Magma", "DC;H", "D", "", "", null, null, null, "Ryker's Hope,Norma Arm,Inner Orion Spur" ); + public static readonly OrganicVariant Tussocks_15_F = new OrganicVariant("Tussocks_15_F",2451501, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.05, (decimal?)0.275, (decimal?)80, (decimal?)130, (decimal?)0, (decimal?)0.095, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "Metallic Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;H;A;N", "F", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Tenebrae,Dryman's Point,Trojan Belt,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_15_G = new OrganicVariant("Tussocks_15_G",2451502, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.04, (decimal?)0.276, (decimal?)80, (decimal?)170, (decimal?)0.001, (decimal?)0.094, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "Metallic Magma;Major Silicate Vapour Geysers;None", "F;G;A;K", "G", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Perseus Arm,Vulcan Gate,Outer Scutum-Centaurus Arm,Temple,Sagittarius-Carina Arm,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Formorian Frontier,Kepler's Crest,Errant Marches,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_15_K = new OrganicVariant("Tussocks_15_K",2451503, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.037, (decimal?)0.275, (decimal?)80, (decimal?)130, (decimal?)0, (decimal?)0.096, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "Any", "F;G;A;K;H", "K", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_15_L = new OrganicVariant("Tussocks_15_L",2451505, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.037, (decimal?)0.275, (decimal?)80, (decimal?)130, (decimal?)0, (decimal?)0.097, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "Water Magma;None;Minor Carbon Dioxide Geysers", "G;L;K;N;M;DA;M;H;DAV", "L", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Outer Arm,Perseus Arm,Vulcan Gate,Temple,Sagittarius-Carina Arm,The Formidine Rift,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope" ); + public static readonly OrganicVariant Tussocks_15_M = new OrganicVariant("Tussocks_15_M",2451504, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.033, (decimal?)0.276, (decimal?)80, (decimal?)130, (decimal?)0, (decimal?)0.099, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "Major Water Magma;Major Silicate Vapour Geysers;None;Minor Metallic Magma", "F;G;A;K;M;N;DA;M;DC", "M", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,The Conduit,Outer Arm,Temple,Vulcan Gate,Outer Scutum-Centaurus Arm,Perseus Arm,Sagittarius-Carina Arm,Mare Somnia,The Formidine Rift,Dryman's Point,Tenebrae,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Acheron,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Errant Marches,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Lyra's Song,The Abyss,Xibalba,Aquila's Halo,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Achilles's Altar,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_15_T = new OrganicVariant("Tussocks_15_T",2451506, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.037, (decimal?)0.275, (decimal?)80, (decimal?)130, (decimal?)0, (decimal?)0.091, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "Metallic Magma;None;Major Silicate Vapour Geysers;Water Geysers;Minor Metallic Magma", "DB;G;L;K;B;M;DC;H", "T", "", "", null, null, null, "Outer Orion Spur,Inner Scutum-Centaurus Arm,Hawking's Gap,Izanami,Sanguineous Rim,Temple,Vulcan Gate,Perseus Arm,The Formidine Rift,Dryman's Point,Trojan Belt,Outer Orion-Perseus Conflux,Norma Expanse,Norma Arm,Inner Orion-Perseus Conflux,Formorian Frontier,Kepler's Crest,Newton's Vault,Orion-Cygnus Arm,Arcadian Stream,Odin's Hold,The Void,Galactic Centre,Elysian Shore,Hieronymus Delta,Empyrean Straits,Inner Orion Spur,Ryker's Hope,The Veils" ); + public static readonly OrganicVariant Tussocks_15_Y = new OrganicVariant("Tussocks_15_Y",2451509, OrganicSpecies.TussockCapillum, OrganicGenus.Tussocks, (decimal?)0.055, (decimal?)0.266, (decimal?)80, (decimal?)110, (decimal?)0.001, (decimal?)0.096, "RockyBody;RockyIceBody", "Thin,Methane;Thin,Argon", "", "None;Minor Silicate Vapour Geysers;Major Silicate Vapour Geysers;Minor Metallic Magma", "DA;H;M", "Y", "", "", null, null, null, "Inner Scutum-Centaurus Arm,Izanami,Orion-Cygnus Arm,Empyrean Straits,Odin's Hold,Inner Orion Spur,Outer Arm,Ryker's Hope,Norma Arm,Inner Orion-Perseus Conflux" ); + public static readonly OrganicVariant Vents = new OrganicVariant("Vents",2101400, OrganicSpecies.AmphoraPlant, OrganicGenus.Vents, (decimal?)0.042, (decimal?)3, (decimal?)1000, (decimal?)1500, null, null, "MetalRichBody", "No Atmosphere", "", "Major Metallic Magma;Major Silicate Vapour Geysers;Major Rocky Magma", "A;B", "", "", "EarthLikeBody,AmmoniaWorld,GasGiantWithWaterBasedLife;GasGiantWithAmmoniaBasedLife,WaterGiant", null, null, null, "Sagittarius-Carina Arm,Mare Somnia,Hawking's Gap,Dryman's Point,Norma Expanse" ); + + + + public long? entryID; + public OrganicSpecies species; + public OrganicGenus genus; + public decimal? minG; + public decimal? maxG; + public decimal? minK; + public decimal? maxK; + public decimal? minP; + public decimal? maxP; + public IList planetClass; + public IList atmosphereClass; + public IList atmosphereComposition; // The composition type and minimum amount comma separated and groups seperated by ';' (i.e. "SulphurDioxide,0.5" ) + public IList volcanism; + public IList primaryStar; // a.k.a. Main Star; Star class and Luminosity (if needed). Group seperator of ';', if no ',' in group then just star class + public IList localStar; // a.k.a. Parent Star; Local star to the body (this could be the primary star, but not always since many systems have more than one star) + public IList materials; // The rare materials present on the body, used for Material type predictions + public IList systemBodies; // Body types must be present in system (hard to predict if the system hasn't been fully scanned) + public decimal? nebulaDistance; // Must be within the distance (Ly) from nebula. (Need to incorporate "Catalogue of Galactic Nebulae" for this) + public decimal? distanceFromArrival; // Must be outside this distance (Ls) from arrival star. + public decimal? geologicalsPresent; // Must have this many geological present. + public IList regions; // Galactic regions that this has been reported in. + + [JsonIgnore] + public bool isPredictable => minG != null || + maxG != null || + minK != null || + maxK != null || + minP != null || + maxP != null || + planetClass.Any() || + atmosphereClass.Any() || + atmosphereComposition.Any() || + volcanism.Any() || + primaryStar.Any() || + localStar.Any() || + materials.Any() || + systemBodies.Any() || + nebulaDistance != null || + distanceFromArrival != null || + geologicalsPresent != null || + regions.Any(); + + // dummy used to ensure that the static constructor has run + public OrganicVariant () : this( "" ) + { } + + private OrganicVariant ( string edname, + long? entryID = null, + OrganicSpecies species = null, + OrganicGenus genus = null, + decimal? minG = null, + decimal? maxG = null, + decimal? minK = null, + decimal? maxK = null, + decimal? minP = null, + decimal? maxP = null, + string planetClass = null, + string atmosphereClass = null, + string atmosphereComposition = null, + string volcanism = null, + string primaryStar = null, + string localStar = null, + string materials = null, + string systemBodies = null, + decimal? nebulaDistance = null, + decimal? distanceFromArrival = null, + decimal? geologicalsPresent = null, + string regions = null + ) : base( edname, edname ) + { + this.entryID = entryID; + this.species = species; + this.genus = genus; + this.minG = minG; + this.maxG = maxG; + this.minK = minK; + this.maxK = maxK; + this.minP = minP; + this.maxP = maxP; + this.planetClass = !string.IsNullOrEmpty( planetClass ) ? planetClass.Split( ';' ).ToList() : new List(); + this.atmosphereClass = !string.IsNullOrEmpty( atmosphereClass ) ? atmosphereClass.Split( ';' ).ToList() : new List(); + this.atmosphereComposition = !string.IsNullOrEmpty( atmosphereComposition ) ? atmosphereComposition.Split( ';' ).ToList() : new List(); + this.volcanism = !string.IsNullOrEmpty( volcanism ) ? volcanism.Split( ';' ).ToList() : new List(); + this.primaryStar = !string.IsNullOrEmpty( primaryStar ) ? primaryStar.Split( ';' ).ToList() : new List(); + this.localStar = !string.IsNullOrEmpty( localStar ) ? localStar.Split( ';' ).ToList() : new List(); + this.materials = !string.IsNullOrEmpty( materials ) ? materials.Split( ',' ).ToList() : new List(); + this.systemBodies = !string.IsNullOrEmpty( systemBodies ) ? systemBodies.Split( ',' ).ToList() : new List(); + this.nebulaDistance = nebulaDistance; + this.distanceFromArrival = distanceFromArrival; + this.geologicalsPresent = geologicalsPresent; + this.regions = !string.IsNullOrEmpty( regions ) ? regions.Split( ',' ).ToList() : new List(); + } + + /// + /// Try getting data from the entryid first, then use variant name as a fallback + /// + public static OrganicVariant Lookup ( long? entryId, string edname ) + { + try + { + if ( entryId != null ) + { + return AllOfThem.Single( a => a.entryID == entryId ); + } + } + catch ( InvalidOperationException e ) + { + if ( AllOfThem.Count( a => a.entryID == entryId ) > 1 ) + { + Logging.Error( $"Duplicate EntryID value {entryId} in {nameof( OrganicVariant )}.", e ); + } + else if ( AllOfThem.All( a => a.entryID != entryId ) ) + { + Logging.Error( $"Unknown EntryID value {entryId} with normalized edname {NormalizeVariant( edname )} in {nameof( OrganicVariant )}.", e ); + } + } + + return FromEDName( NormalizeVariant( edname ) ) ?? + new OrganicVariant( NormalizeVariant( edname ), entryId ); // No match. + } + + public static new OrganicVariant FromEDName ( string edname ) + { + return ResourceBasedLocalizedEDName.FromEDName( NormalizeVariant( edname ) ); + } + + public static string NormalizeVariant ( string edname ) + { + return edname? + .Replace( "Codex_Ent_", "" ) + .Replace( "$", "" ) + .Replace( "_Name;", "" ) + .Replace( "_name;", "" ) + .Replace( ";", "" ); + } + } +} diff --git a/DataDefinitions/Properties/Astronomical.Designer.cs b/DataDefinitions/Properties/Astronomical.Designer.cs new file mode 100644 index 0000000000..c0385b3358 --- /dev/null +++ b/DataDefinitions/Properties/Astronomical.Designer.cs @@ -0,0 +1,891 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Astronomical { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Astronomical() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.Astronomical", typeof(Astronomical).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to A-Type Star. + /// + public static string A_Type { + get { + return ResourceManager.GetString("A_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A-Type Giant. + /// + public static string A_TypeGiant { + get { + return ResourceManager.GetString("A_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A-Type SuperGiant. + /// + public static string A_TypeSuperGiant { + get { + return ResourceManager.GetString("A_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A-E-B-E-Type Star. + /// + public static string AEBE_Type { + get { + return ResourceManager.GetString("AEBE_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B-Type Star. + /// + public static string B_Type { + get { + return ResourceManager.GetString("B_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B-Type Giant. + /// + public static string B_TypeGiant { + get { + return ResourceManager.GetString("B_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B-Type SuperGiant. + /// + public static string B_TypeSuperGiant { + get { + return ResourceManager.GetString("B_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Black Hole. + /// + public static string Black_Holes { + get { + return ResourceManager.GetString("Black_Holes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-Type Star. + /// + public static string C_Type { + get { + return ResourceManager.GetString("C_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-Type Giant. + /// + public static string C_TypeGiant { + get { + return ResourceManager.GetString("C_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-Type HyperGiant. + /// + public static string C_TypeHyperGiant { + get { + return ResourceManager.GetString("C_TypeHyperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-Type SuperGiant. + /// + public static string C_TypeSuperGiant { + get { + return ResourceManager.GetString("C_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-J-Type Star. + /// + public static string CJ_Type { + get { + return ResourceManager.GetString("CJ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-N-Type Star. + /// + public static string CN_Type { + get { + return ResourceManager.GetString("CN_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-Type Star. + /// + public static string D_Type { + get { + return ResourceManager.GetString("D_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-Type Star. + /// + public static string DA_Type { + get { + return ResourceManager.GetString("DA_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-B-Type Star. + /// + public static string DAB_Type { + get { + return ResourceManager.GetString("DAB_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-V-Type Star. + /// + public static string DAV_Type { + get { + return ResourceManager.GetString("DAV_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-Z-Type Star. + /// + public static string DAZ_Type { + get { + return ResourceManager.GetString("DAZ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-B-Type Star. + /// + public static string DB_Type { + get { + return ResourceManager.GetString("DB_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-B-V-Type Star. + /// + public static string DBV_Type { + get { + return ResourceManager.GetString("DBV_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-B-Z-Type Star. + /// + public static string DBZ_Type { + get { + return ResourceManager.GetString("DBZ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-C-Type Star. + /// + public static string DC_Type { + get { + return ResourceManager.GetString("DC_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-C-V-Type Star. + /// + public static string DCV_Type { + get { + return ResourceManager.GetString("DCV_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-Q-Type Star. + /// + public static string DQ_Type { + get { + return ResourceManager.GetString("DQ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Earth-Like Planet. + /// + public static string Earth_Likes { + get { + return ResourceManager.GetString("Earth_Likes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to F-Type Star. + /// + public static string F_Type { + get { + return ResourceManager.GetString("F_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to F-Type Giant. + /// + public static string F_TypeGiant { + get { + return ResourceManager.GetString("F_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to F-Type SuperGiant. + /// + public static string F_TypeSuperGiant { + get { + return ResourceManager.GetString("F_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to G-Type Star. + /// + public static string G_Type { + get { + return ResourceManager.GetString("G_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to G-Type Giant. + /// + public static string G_TypeGiant { + get { + return ResourceManager.GetString("G_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to G-Type SuperGiant. + /// + public static string G_TypeSuperGiant { + get { + return ResourceManager.GetString("G_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Gas Giant. + /// + public static string Green_Giant_With_Ammonia_Life { + get { + return ResourceManager.GetString("Green_Giant_With_Ammonia_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Gas Giant with Ammonia Life. + /// + public static string Green_Giant_With_Water_Life { + get { + return ResourceManager.GetString("Green_Giant_With_Water_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Class 1 Gas Giant. + /// + public static string Green_Sudarsky_Class_I { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_I", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Class 2 Gas Giant. + /// + public static string Green_Sudarsky_Class_II { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_II", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Class 3 Gas Giant. + /// + public static string Green_Sudarsky_Class_III { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_III", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Class 4 Gas Giant. + /// + public static string Green_Sudarsky_Class_IV { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_IV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Class 5 Gas Giant. + /// + public static string Green_Sudarsky_Class_V { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_V", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green Water Giant. + /// + public static string Green_Water_Giant { + get { + return ResourceManager.GetString("Green_Water_Giant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-Type Star. + /// + public static string K_Type { + get { + return ResourceManager.GetString("K_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-Type Giant. + /// + public static string K_TypeGiant { + get { + return ResourceManager.GetString("K_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-Type SuperGiant. + /// + public static string K_TypeSuperGiant { + get { + return ResourceManager.GetString("K_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L-Type Star. + /// + public static string L_Type { + get { + return ResourceManager.GetString("L_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-Type Star. + /// + public static string M_Type { + get { + return ResourceManager.GetString("M_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-Type Giant. + /// + public static string M_TypeGiant { + get { + return ResourceManager.GetString("M_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-Type SuperGiant. + /// + public static string M_TypeSuperGiant { + get { + return ResourceManager.GetString("M_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-S-Type Star. + /// + public static string MS_Type { + get { + return ResourceManager.GetString("MS_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Neutron Star. + /// + public static string Neutron_Stars { + get { + return ResourceManager.GetString("Neutron_Stars", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to O-Type Star. + /// + public static string O_Type { + get { + return ResourceManager.GetString("O_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to O-Type Giant. + /// + public static string O_TypeGiant { + get { + return ResourceManager.GetString("O_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to O-Type SuperGiant. + /// + public static string O_TypeSuperGiant { + get { + return ResourceManager.GetString("O_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to S-Type Star. + /// + public static string S_Type { + get { + return ResourceManager.GetString("S_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to S-Type Giant. + /// + public static string S_TypeGiant { + get { + return ResourceManager.GetString("S_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ammonia Planet. + /// + public static string Standard_Ammonia_Worlds { + get { + return ResourceManager.GetString("Standard_Ammonia_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Gas Giant Planet with Ammonia-Based Life. + /// + public static string Standard_Giant_With_Ammonia_Life { + get { + return ResourceManager.GetString("Standard_Giant_With_Ammonia_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Gas Giant Planet with Water-Based Life. + /// + public static string Standard_Giant_With_Water_Life { + get { + return ResourceManager.GetString("Standard_Giant_With_Water_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Helium Gas Giant. + /// + public static string Standard_Helium { + get { + return ResourceManager.GetString("Standard_Helium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Helium-Rich Gas Giant. + /// + public static string Standard_Helium_Rich { + get { + return ResourceManager.GetString("Standard_Helium_Rich", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content Planet. + /// + public static string Standard_High_Metal_Content_No_Atmos { + get { + return ResourceManager.GetString("Standard_High_Metal_Content_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice Planet. + /// + public static string Standard_Ice_No_Atmos { + get { + return ResourceManager.GetString("Standard_Ice_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich Planet. + /// + public static string Standard_Metal_Rich_No_Atmos { + get { + return ResourceManager.GetString("Standard_Metal_Rich_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Ice Planet. + /// + public static string Standard_Rocky_Ice_No_Atmos { + get { + return ResourceManager.GetString("Standard_Rocky_Ice_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Planet. + /// + public static string Standard_Rocky_No_Atmos { + get { + return ResourceManager.GetString("Standard_Rocky_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Class 1 Gas Giant. + /// + public static string Standard_Sudarsky_Class_I { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_I", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Class 2 Gas Giant. + /// + public static string Standard_Sudarsky_Class_II { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_II", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Class 3 Gas Giant. + /// + public static string Standard_Sudarsky_Class_III { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_III", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Class 4 Gas Giant. + /// + public static string Standard_Sudarsky_Class_IV { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_IV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Class 5 Gas Giant. + /// + public static string Standard_Sudarsky_Class_V { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_V", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content Planet. + /// + public static string Standard_Ter_High_Metal_Content { + get { + return ResourceManager.GetString("Standard_Ter_High_Metal_Content", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice Planet. + /// + public static string Standard_Ter_Ice { + get { + return ResourceManager.GetString("Standard_Ter_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich Planet. + /// + public static string Standard_Ter_Metal_Rich { + get { + return ResourceManager.GetString("Standard_Ter_Metal_Rich", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Planet. + /// + public static string Standard_Ter_Rocky { + get { + return ResourceManager.GetString("Standard_Ter_Rocky", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Ice Planet. + /// + public static string Standard_Ter_Rocky_Ice { + get { + return ResourceManager.GetString("Standard_Ter_Rocky_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Water Giant. + /// + public static string Standard_Water_Giant { + get { + return ResourceManager.GetString("Standard_Water_Giant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Planet. + /// + public static string Standard_Water_Worlds { + get { + return ResourceManager.GetString("Standard_Water_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supermassive Black Hole. + /// + public static string SupermassiveBlack_Holes { + get { + return ResourceManager.GetString("SupermassiveBlack_Holes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T-Type Star. + /// + public static string T_Type { + get { + return ResourceManager.GetString("T_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ammonia Planet. + /// + public static string TRF_Ammonia_Worlds { + get { + return ResourceManager.GetString("TRF_Ammonia_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content Planet. + /// + public static string TRF_High_Metal_Content_No_Atmos { + get { + return ResourceManager.GetString("TRF_High_Metal_Content_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Planet. + /// + public static string TRF_Rocky_No_Atmos { + get { + return ResourceManager.GetString("TRF_Rocky_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content Planet. + /// + public static string TRF_Ter_High_Metal_Content { + get { + return ResourceManager.GetString("TRF_Ter_High_Metal_Content", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich Planet. + /// + public static string TRF_Ter_Metal_Rich { + get { + return ResourceManager.GetString("TRF_Ter_Metal_Rich", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Planet. + /// + public static string TRF_Ter_Rocky { + get { + return ResourceManager.GetString("TRF_Ter_Rocky", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Planet. + /// + public static string TRF_Water_Worlds { + get { + return ResourceManager.GetString("TRF_Water_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T-Tauri Star. + /// + public static string TTS_Type { + get { + return ResourceManager.GetString("TTS_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W-Type Star. + /// + public static string W_Type { + get { + return ResourceManager.GetString("W_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W-C-Type Star. + /// + public static string WC_Type { + get { + return ResourceManager.GetString("WC_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W-N-Type Star. + /// + public static string WN_Type { + get { + return ResourceManager.GetString("WN_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W-N-C-Type Star. + /// + public static string WNC_Type { + get { + return ResourceManager.GetString("WNC_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to W-O-Type Star. + /// + public static string WO_Type { + get { + return ResourceManager.GetString("WO_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-Type Star. + /// + public static string Y_Type { + get { + return ResourceManager.GetString("Y_Type", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/Astronomical.resx b/DataDefinitions/Properties/Astronomical.resx new file mode 100644 index 0000000000..ae812cdb71 --- /dev/null +++ b/DataDefinitions/Properties/Astronomical.resx @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A-E-B-E-Type Star + + + A-Type Star + + + A-Type Giant + + + A-Type SuperGiant + + + Black Hole + + + B-Type Star + + + B-Type Giant + + + B-Type SuperGiant + + + C-J-Type Star + + + C-N-Type Star + + + C-Type Star + + + C-Type Giant + + + C-Type HyperGiant + + + C-Type SuperGiant + + + D-A-B-Type Star + + + D-A-V-Type Star + + + D-A-Z-Type Star + + + D-A-Type Star + + + D-B-V-Type Star + + + D-B-Z-Type Star + + + D-B-Type Star + + + D-C-V-Type Star + + + D-C-Type Star + + + D-Q-Type Star + + + D-Type Star + + + Earth-Like Planet + + + F-Type Star + + + F-Type Giant + + + F-Type SuperGiant + + + Green Gas Giant + + + Green Gas Giant with Ammonia Life + + + Green Class 1 Gas Giant + + + Green Class 2 Gas Giant + + + Green Class 3 Gas Giant + + + Green Class 4 Gas Giant + + + Green Class 5 Gas Giant + + + Green Water Giant + + + G-Type Star + + + G-Type Giant + + + G-Type SuperGiant + + + K-Type Star + + + K-Type Giant + + + K-Type SuperGiant + + + L-Type Star + + + M-S-Type Star + + + M-Type Star + + + M-Type Giant + + + M-Type SuperGiant + + + Neutron Star + + + O-Type Star + + + O-Type Giant + + + O-Type SuperGiant + + + Ammonia Planet + + + Standard Gas Giant Planet with Ammonia-Based Life + + + Standard Gas Giant Planet with Water-Based Life + + + Standard Helium Gas Giant + + + Standard Helium-Rich Gas Giant + + + High Metal Content Planet + + + Ice Planet + + + Metal-Rich Planet + + + Rocky Ice Planet + + + Rocky Planet + + + Standard Class 1 Gas Giant + + + Standard Class 2 Gas Giant + + + Standard Class 3 Gas Giant + + + Standard Class 4 Gas Giant + + + Standard Class 5 Gas Giant + + + High Metal Content Planet + + + Ice Planet + + + Metal-Rich Planet + + + Rocky Planet + + + Rocky Ice Planet + + + Standard Water Giant + + + Water Planet + + + Supermassive Black Hole + + + S-Type Star + + + S-Type Giant + + + Ammonia Planet + + + High Metal Content Planet + + + Rocky Planet + + + High Metal Content Planet + + + Metal-Rich Planet + + + Rocky Planet + + + Water Planet + + + T-Tauri Star + + + T-Type Star + + + W-C-Type Star + + + W-N-C-Type Star + + + W-N-Type Star + + + W-O-Type Star + + + W-Type Star + + + Y-Type Star + + \ No newline at end of file diff --git a/DataDefinitions/Properties/AstronomicalDesc.Designer.cs b/DataDefinitions/Properties/AstronomicalDesc.Designer.cs new file mode 100644 index 0000000000..e60a805266 --- /dev/null +++ b/DataDefinitions/Properties/AstronomicalDesc.Designer.cs @@ -0,0 +1,891 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class AstronomicalDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AstronomicalDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.AstronomicalDesc", typeof(AstronomicalDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to A-type stars are hot white or bluish-white main sequence stars. They usually range in mass from 1.4 to 2.1 solar masses and have a surface temperature reaching 10,000 Kelvin.. + /// + public static string A_Type { + get { + return ResourceManager.GetString("A_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A-type stars are hot white or bluish-white main sequence stars. They usually range in mass from 1.4 to 2.1 solar masses and have a surface temperature reaching 10,000 Kelvin. This particular star is a giant.. + /// + public static string A_TypeGiant { + get { + return ResourceManager.GetString("A_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A-type stars are hot white or bluish-white main sequence stars. They usually range in mass from 1.4 to 2.1 solar masses and have a surface temperature reaching 10,000 Kelvin. This particular star is a supergiant.. + /// + public static string A_TypeSuperGiant { + get { + return ResourceManager.GetString("A_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Herbig A-e-B-e stars are young stars typically less than 10 million years old, with characteristics of either class A or B main sequence stars. They are usually between 2 and 8 solar masses. The mass of the proto-star determines its spectral class when it joins the main sequence.. + /// + public static string AEBE_Type { + get { + return ResourceManager.GetString("AEBE_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B-type stars are very luminous blue-white stars. They usually range in mass from 2 to 16 solar masses and have a surface temperature reaching 30,000 Kelvin. Their lifetimes are shorter than most main sequence stars.. + /// + public static string B_Type { + get { + return ResourceManager.GetString("B_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B-type stars are very luminous blue-white stars. They usually range in mass from 2 to 16 solar masses and have a surface temperature reaching 30,000 Kelvin. Their lifetimes are shorter than most main sequence stars. This particular star is a giant.. + /// + public static string B_TypeGiant { + get { + return ResourceManager.GetString("B_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to B-type stars are very luminous blue-white stars. They usually range in mass from 2 to 16 solar masses and have a surface temperature reaching 30,000 Kelvin. Their lifetimes are shorter than most main sequence stars. This particular star is a supergiant.. + /// + public static string B_TypeSuperGiant { + get { + return ResourceManager.GetString("B_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Black holes are the stellar remnants of supermassive stars of 20 solar masses or more, collapsed to the point where gravity is so extreme that light can no longer escape. Typically a black hole is only visible by the gravitational distortion in its vicinity.. + /// + public static string Black_Holes { + get { + return ResourceManager.GetString("Black_Holes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin.. + /// + public static string C_Type { + get { + return ResourceManager.GetString("C_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. This particular star is a giant.. + /// + public static string C_TypeGiant { + get { + return ResourceManager.GetString("C_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. This particular star is a hypergiant.. + /// + public static string C_TypeHyperGiant { + get { + return ResourceManager.GetString("C_TypeHyperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. This particular star is a supergiant.. + /// + public static string C_TypeSuperGiant { + get { + return ResourceManager.GetString("C_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-J-type stars are variants of carbon stars, which are stars approaching the end of their stellar lives as hydrogen fusion begins to stop. The C J variant has much more carbon-13 in its atmosphere.. + /// + public static string CJ_Type { + get { + return ResourceManager.GetString("CJ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to C-N-type stars are variants of carbon stars, which are stars approaching the end of their stellar lives as hydrogen fusion begins to stop. They were once K or M-type stars.. + /// + public static string CN_Type { + get { + return ResourceManager.GetString("CN_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White dwarf stars are stellar remnants. Nuclear fusion has now ceased, and in the absence of radiation pressure the core has collapsed, heating it up greatly before it begins its slow cooling-down phase. Surface temperatures are usually between 8,000 and 40,000 Kelvin, so these stellar remnants are blue-white.. + /// + public static string D_Type { + get { + return ResourceManager.GetString("D_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-type stars are white dwarf stars with a hydrogen-rich atmosphere.. + /// + public static string DA_Type { + get { + return ResourceManager.GetString("DA_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-B-type stars are white dwarf stars with hydrogen and helium-rich atmospheres and neutral helium emission lines.. + /// + public static string DAB_Type { + get { + return ResourceManager.GetString("DAB_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-V-type stars are known as pulsating white dwarfs. They have hydrogen-rich atmospheres and their luminosity changes according to non-radial gravity waves within the star.. + /// + public static string DAV_Type { + get { + return ResourceManager.GetString("DAV_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-A-Z-type stars are white dwarfs, which are hydrogen-rich metallic stars.. + /// + public static string DAZ_Type { + get { + return ResourceManager.GetString("DAZ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-B-type stars are white dwarfs with a helium-rich atmosphere with neutral helium emission lines.. + /// + public static string DB_Type { + get { + return ResourceManager.GetString("DB_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-B-V-type stars are known as pulsating white dwarfs. They have helium-rich atmospheres and their luminosity changes according to non-radial gravity waves within the star.. + /// + public static string DBV_Type { + get { + return ResourceManager.GetString("DBV_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-B-Z-type stars are helium-rich and metallic white dwarf stars.. + /// + public static string DBZ_Type { + get { + return ResourceManager.GetString("DBZ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-C-type stars are white dwarfs without spectral lines strong enough to classify their atmospheres.. + /// + public static string DC_Type { + get { + return ResourceManager.GetString("DC_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-C-V-type stars are white dwarfs with varying luminosity.. + /// + public static string DCV_Type { + get { + return ResourceManager.GetString("DCV_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to D-Q-type stars are white dwarfs with a carbon-rich atmosphere.. + /// + public static string DQ_Type { + get { + return ResourceManager.GetString("DQ_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A terrestrial planet with an active water-based chemistry and indigenous carbon-water-based life. This planet’s nitogen-oxygen atmosphere is breathable for humans.. + /// + public static string Earth_Likes { + get { + return ResourceManager.GetString("Earth_Likes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to F-type stars are white main sequence stars. They usually range in mass from 1 to 1.4 solar masses and have a surface temperature reaching 7,600 Kelvin.. + /// + public static string F_Type { + get { + return ResourceManager.GetString("F_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to F-type stars are white main sequence stars. They usually range in mass from 1 to 1.4 solar masses and have a surface temperature reaching 7,600 Kelvin. This particular star is a giant.. + /// + public static string F_TypeGiant { + get { + return ResourceManager.GetString("F_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to F-type stars are white main sequence stars. They usually range in mass from 1 to 1.4 solar masses and have a surface temperature reaching 7,600 Kelvin. This particular star is a supergiant.. + /// + public static string F_TypeSuperGiant { + get { + return ResourceManager.GetString("F_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to G-type stars are white-yellow main sequence stars. They usually range in mass from 0.8 to 1.2 solar masses and have a surface temperature reaching 6,000 Kelvin.. + /// + public static string G_Type { + get { + return ResourceManager.GetString("G_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to G-type stars are white-yellow main sequence stars. They usually range in mass from 0.8 to 1.2 solar masses and have a surface temperature reaching 6,000 Kelvin. This particular star is a giant.. + /// + public static string G_TypeGiant { + get { + return ResourceManager.GetString("G_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to G-type stars are white-yellow main sequence stars. They usually range in mass from 0.8 to 1.2 solar masses and have a surface temperature reaching 6,000 Kelvin. This particular star is a supergiant.. + /// + public static string G_TypeSuperGiant { + get { + return ResourceManager.GetString("G_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gas giants such as this one are primarily hydrogen and helium based, with life just below the surface-cloud layer. This particular gas giant exhibits vivid coloration due to the presence of free-floating radioplankton - carbon-based algae that extract energy from the planet's intense radiation flux.. + /// + public static string Green_Giant_With_Ammonia_Life { + get { + return ResourceManager.GetString("Green_Giant_With_Ammonia_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a primarily hydrogen and helium atmosphere and bioluminescent life, based in the water-cloud layer just below the atmospheric surface. An excess of oxygen and many carbon-based compounds produces vivid colors. There are vast quantities of free-floating radioplankton. Tiny carbon-based algae.. + /// + public static string Green_Giant_With_Water_Life { + get { + return ResourceManager.GetString("Green_Giant_With_Water_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a primarily hydrogen and helium atmosphere with clouds of ammonia, water vapor, hydrogen sulfide, phosphine and sulfur. Upper cloud layer temperatures are typically less than 150 Kelvin. Vivid cloud layer coloration suggests bioluminescent organisms. There are vast quantities of free-floating radioplankton. Tiny carbon-based algae.. + /// + public static string Green_Sudarsky_Class_I { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_I", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An entity I have no information about.. + /// + public static string Green_Sudarsky_Class_II { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_II", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with primarily hydrogen and helium atmosphere but without distinctive cloud layers. Surface temperatures range between 350 and 800 Kelvin. Optical scattering causes a blue color, with wispy cloud layers from sulfides and chlorides. Vivid, luminous vapor in the upper atmosphere suggests extremophile bioluminescent life.. + /// + public static string Green_Sudarsky_Class_III { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_III", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An entity I have no information about.. + /// + public static string Green_Sudarsky_Class_IV { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_IV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An entity I have no information about.. + /// + public static string Green_Sudarsky_Class_V { + get { + return ResourceManager.GetString("Green_Sudarsky_Class_V", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An entity I have no information about.. + /// + public static string Green_Water_Giant { + get { + return ResourceManager.GetString("Green_Water_Giant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-type stars are yellow-orange main sequence stars with a long and generally stable life. They usually range in mass from 0.6 to 0.9 solar masses and have a surface temperature reaching 5,000 Kelvin.. + /// + public static string K_Type { + get { + return ResourceManager.GetString("K_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-type stars are yellow-orange main sequence stars with a long and generally stable life. They usually range in mass from 0.6 to 0.9 solar masses and have a surface temperature reaching 5,000 Kelvin. This particular star is a giant.. + /// + public static string K_TypeGiant { + get { + return ResourceManager.GetString("K_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-type stars are yellow-orange main sequence stars with a long and generally stable life. They usually range in mass from 0.6 to 0.9 solar masses and have a surface temperature reaching 5,000 Kelvin. This particular star is a supergiant.. + /// + public static string K_TypeSuperGiant { + get { + return ResourceManager.GetString("K_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L-type stars are dwarf stars on the cusp of supporting hydrogen fusion in their cores. Their temperatures range from 1,300 to 2,400 Kelvin. Cool enough to have alkaline metals and metal hydrides in their atmospheres.. + /// + public static string L_Type { + get { + return ResourceManager.GetString("L_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-type stars are red stars that comprise the bulk of the galaxy’s main sequence stars. They usually range from 0.075 to 0.50 solar masses, and their surface temperature is less than 4,000 Kelvin.. + /// + public static string M_Type { + get { + return ResourceManager.GetString("M_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-type stars are red stars that comprise the bulk of the galaxy’s main sequence stars. They usually range from 0.075 to 0.50 solar masses, and their surface temperature is less than 4,000 Kelvin. This particular star is a giant.. + /// + public static string M_TypeGiant { + get { + return ResourceManager.GetString("M_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-type stars are red stars that comprise the bulk of the galaxy’s main sequence stars. They usually range from 0.075 to 0.50 solar masses, and their surface temperature is less than 4,000 Kelvin. This particular star is a supergiant.. + /// + public static string M_TypeSuperGiant { + get { + return ResourceManager.GetString("M_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to M-S-type stars are late sequence stars that have progressed from the M class stage and are heading towards becoming carbon stars. They are nearing the end of their stellar lives.. + /// + public static string MS_Type { + get { + return ResourceManager.GetString("MS_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Neutron stars are the stellar remnants of massive stars. Once nuclear fusion was exhausted, the star collapsed into an extreme high-density state made up entirely of neutrons, though with insufficient mass to become a black hole.. + /// + public static string Neutron_Stars { + get { + return ResourceManager.GetString("Neutron_Stars", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to O-type stars are the most luminous and massive main sequence stars. They usually range from 15 to 90 solar masses, with a surface temperature reaching 52,000 Kelvin, so they appear very blue. They are very short lived with lifetimes of 1-10 million years, ending in a supernova.. + /// + public static string O_Type { + get { + return ResourceManager.GetString("O_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to O-type stars are the most luminous and massive main sequence stars. They usually range from 15 to 90 solar masses, with a surface temperature reaching 52,000 Kelvin, so they appear very blue. They are very short lived with lifetimes of 1-10 million years, ending in a supernova. This particular star is a giant.. + /// + public static string O_TypeGiant { + get { + return ResourceManager.GetString("O_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to O-type stars are the most luminous and massive main sequence stars. They usually range from 15 to 90 solar masses, with a surface temperature reaching 52,000 Kelvin, so they appear very blue. They are very short lived with lifetimes of 1-10 million years, ending in a supernova. This particular star is a supergiant.. + /// + public static string O_TypeSuperGiant { + get { + return ResourceManager.GetString("O_TypeSuperGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to S-type stars are late sequence stars that were once M class stars. They have begun the cycle towards becoming carbon stars, and are nearing the end of their stellar lives.. + /// + public static string S_Type { + get { + return ResourceManager.GetString("S_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to S-type stars are late sequence stars that were once M class stars. They have begun the cycle towards becoming carbon stars, and are nearing the end of their stellar lives. This particular star is a giant.. + /// + public static string S_TypeGiant { + get { + return ResourceManager.GetString("S_TypeGiant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A terrestrial ammonia planet with an active ammonia-based chemistry and carbon-ammonia-based life.. + /// + public static string Standard_Ammonia_Worlds { + get { + return ResourceManager.GetString("Standard_Ammonia_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a hydrogen and helium-based atmosphere. Vivid colors are produced by oxygen and carbon-based compounds. This planet contains life forms in the ammonia-cloud layer, with vast quantities of free-floating radioplankton. Tiny carbon-based algae.. + /// + public static string Standard_Giant_With_Ammonia_Life { + get { + return ResourceManager.GetString("Standard_Giant_With_Ammonia_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with hydrogen and helium-based atmosphere. Vivid colors are produced by oxygen and carbon-based compounds. This planet contains life forms in a hot layer of high-pressure water, with vast quantities of free-floating radioplankton. Tiny carbon-based algae.. + /// + public static string Standard_Giant_With_Water_Life { + get { + return ResourceManager.GetString("Standard_Giant_With_Water_Life", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with more helium in its atmosphere compared to hydrogen. Most or all hydrogen has been lost due to insufficient mass to hold on to it. Past temperatures may have been much higher, driving off the hydrogen at a greater rate.. + /// + public static string Standard_Helium { + get { + return ResourceManager.GetString("Standard_Helium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with primarily helium atmosphere. Most of all hydrogen has been lost due to insufficient mass to hold on to it. Past temperatures may have been much higher, driving off the hydrogen at a greater rate.. + /// + public static string Standard_Helium_Rich { + get { + return ResourceManager.GetString("Standard_Helium_Rich", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has no atmosphere.. + /// + public static string Standard_High_Metal_Content_No_Atmos { + get { + return ResourceManager.GetString("Standard_High_Metal_Content_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An ice planet composed mainly of water ice. Planets like this form in the cooler regions of a star system, and retain many volatiles as solids within their crust. This body has no atmosphere.. + /// + public static string Standard_Ice_No_Atmos { + get { + return ResourceManager.GetString("Standard_Ice_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A metal-rich planet that has a large metallic core, with plentiful metallic ores even at the surface. Some high metals can be found in their elemental form, especially around areas of past or current volcanism or liquid erosion. This body has no atmosphere.. + /// + public static string Standard_Metal_Rich_No_Atmos { + get { + return ResourceManager.GetString("Standard_Metal_Rich_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A rocky ice planet with a small metal core and thick rocky mantle with a crust of very deep ice. Geological activity is common because of the large quantities of volatiles in the crust, often creating a thin, sometimes seasonal atmosphere. This body has no atmosphere.. + /// + public static string Standard_Rocky_Ice_No_Atmos { + get { + return ResourceManager.GetString("Standard_Rocky_Ice_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has no atmosphere.. + /// + public static string Standard_Rocky_No_Atmos { + get { + return ResourceManager.GetString("Standard_Rocky_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a primarily hydrogen and helium atmosphere. Vivid colors are produced by clouds in the upper atmosphere of ammonia, water vapor, hydrogen sulfide, phosphine and sulfur. Upper cloud layer temperatures are typically less than 150 Kelvin.. + /// + public static string Standard_Sudarsky_Class_I { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_I", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a primarily hydrogen and helium atmosphere. Water vapor in the upper cloud layers gives a much higher albedo. Surface temperatures are typically around 250 Kelvin.. + /// + public static string Standard_Sudarsky_Class_II { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_II", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with primarily hydrogen and helium atmosphere but without distinctive cloud layers. Optical scattering causes a blue color, with the chance of wispy cloud layers from sulfides and chlorides. Surface temperatures range between 350 and 800 Kelvin.. + /// + public static string Standard_Sudarsky_Class_III { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_III", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a primarily hydrogen and helium atmosphere., with carbon monoxide and upper clouds of alkali metals above lower cloud layers of silicates and iron compounds, hence the brighter colors. Upper cloud layer temperatures are typically above 900 Kelvin.. + /// + public static string Standard_Sudarsky_Class_IV { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_IV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a primarily hydrogen and helium atmosphere, with thick clouds of silicates and iron compounds, even metallic iron. They are the hottest type of gas giants with upper cloud temperatures above 1,400 Kelvin and much hotter lower layers.. + /// + public static string Standard_Sudarsky_Class_V { + get { + return ResourceManager.GetString("Standard_Sudarsky_Class_V", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has an atmosphere.. + /// + public static string Standard_Ter_High_Metal_Content { + get { + return ResourceManager.GetString("Standard_Ter_High_Metal_Content", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An ice planet composed mainly of water ice. Planets like this form in the cooler regions of a star system, and retain many volatiles as solids within their crust. This body has an atmosphere.. + /// + public static string Standard_Ter_Ice { + get { + return ResourceManager.GetString("Standard_Ter_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A metal-rich planet that has a large metallic core, with plentiful metallic ores even at the surface. Some high metals can be found in their elemental form, especially around areas of past or current volcanism or liquid erosion. This body has an atmosphere.. + /// + public static string Standard_Ter_Metal_Rich { + get { + return ResourceManager.GetString("Standard_Ter_Metal_Rich", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has an atmosphere.. + /// + public static string Standard_Ter_Rocky { + get { + return ResourceManager.GetString("Standard_Ter_Rocky", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A rocky ice planet with a small metal core and thick rocky mantle with a crust of very deep ice. Geological activity is common because of the large quantities of volatiles in the crust, often creating a thin, sometimes seasonal atmosphere. This body has an atmosphere.. + /// + public static string Standard_Ter_Rocky_Ice { + get { + return ResourceManager.GetString("Standard_Ter_Rocky_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gas giant with a very thick atmosphere dominated by water vapor.. + /// + public static string Standard_Water_Giant { + get { + return ResourceManager.GetString("Standard_Water_Giant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A terrestrial water planet with an active water-based chemistry and carbon-water-based life.. + /// + public static string Standard_Water_Worlds { + get { + return ResourceManager.GetString("Standard_Water_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supermassive black holes tend to form when a black hole consumes a number of other bodies, including other black holes. Over time acquire vast mass, sometimes attaining several million solar masses.. + /// + public static string SupermassiveBlack_Holes { + get { + return ResourceManager.GetString("SupermassiveBlack_Holes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T-type stars are brown dwarfs with a surface temperature between 700 and 1,300 Kelvin. They are sometimes known as methane dwarfs due to the prominence of methane in their composition.. + /// + public static string T_Type { + get { + return ResourceManager.GetString("T_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A terrestrial ammonia planet with an active ammonia-based chemistry and carbon-ammonia-based life. This body is terraformable.. + /// + public static string TRF_Ammonia_Worlds { + get { + return ResourceManager.GetString("TRF_Ammonia_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has no atmosphere and is terraformable.. + /// + public static string TRF_High_Metal_Content_No_Atmos { + get { + return ResourceManager.GetString("TRF_High_Metal_Content_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has no atmosphere and is terraformable.. + /// + public static string TRF_Rocky_No_Atmos { + get { + return ResourceManager.GetString("TRF_Rocky_No_Atmos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has an atmosphere and is terraformable.. + /// + public static string TRF_Ter_High_Metal_Content { + get { + return ResourceManager.GetString("TRF_Ter_High_Metal_Content", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A metal-rich planet that has a large metallic core, with plentiful metallic ores even at the surface. Some high metals can be found in their elemental form, especially around areas of past or current volcanism or liquid erosion. This body has an atmosphere and is terraformable.. + /// + public static string TRF_Ter_Metal_Rich { + get { + return ResourceManager.GetString("TRF_Ter_Metal_Rich", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has an atmosphere and is terraformable.. + /// + public static string TRF_Ter_Rocky { + get { + return ResourceManager.GetString("TRF_Ter_Rocky", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A terrestrial water planet with an active water-based chemistry and carbon-water-based life. This body is terraformable.. + /// + public static string TRF_Water_Worlds { + get { + return ResourceManager.GetString("TRF_Water_Worlds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T-Tauri stars are very young stars in the process of gravitational contraction prior to their cores beginning hydrogen fusion.. + /// + public static string TTS_Type { + get { + return ResourceManager.GetString("TTS_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wolf-Rayet stars are massive stars nearing the end of their life cycle, past their hydrogen-burning phase. They were once over 20 solar masses but now shed material through solar wind. Their surface temperature can reach 200,000 Kelvin, so they appear a brilliant blue.. + /// + public static string W_Type { + get { + return ResourceManager.GetString("W_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The W-C-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized carbon lines.. + /// + public static string WC_Type { + get { + return ResourceManager.GetString("WC_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The W-N-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized nitrogen and helium lines.. + /// + public static string WN_Type { + get { + return ResourceManager.GetString("WN_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The W-N-C-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized nitrogen, carbon-oxygen and and helium lines.. + /// + public static string WNC_Type { + get { + return ResourceManager.GetString("WNC_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The W-O-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized oxygen lines.. + /// + public static string WO_Type { + get { + return ResourceManager.GetString("WO_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-type stars are the coolest of the brown dwarf stars. Surface temperatures are less than 700 Kelvin, and they are effectively very large gas giant planets with some stellar properties.. + /// + public static string Y_Type { + get { + return ResourceManager.GetString("Y_Type", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/AstronomicalDesc.resx b/DataDefinitions/Properties/AstronomicalDesc.resx new file mode 100644 index 0000000000..67258a1678 --- /dev/null +++ b/DataDefinitions/Properties/AstronomicalDesc.resx @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Herbig A-e-B-e stars are young stars typically less than 10 million years old, with characteristics of either class A or B main sequence stars. They are usually between 2 and 8 solar masses. The mass of the proto-star determines its spectral class when it joins the main sequence. + + + A-type stars are hot white or bluish-white main sequence stars. They usually range in mass from 1.4 to 2.1 solar masses and have a surface temperature reaching 10,000 Kelvin. + + + A-type stars are hot white or bluish-white main sequence stars. They usually range in mass from 1.4 to 2.1 solar masses and have a surface temperature reaching 10,000 Kelvin. This particular star is a giant. + + + A-type stars are hot white or bluish-white main sequence stars. They usually range in mass from 1.4 to 2.1 solar masses and have a surface temperature reaching 10,000 Kelvin. This particular star is a supergiant. + + + Black holes are the stellar remnants of supermassive stars of 20 solar masses or more, collapsed to the point where gravity is so extreme that light can no longer escape. Typically a black hole is only visible by the gravitational distortion in its vicinity. + + + B-type stars are very luminous blue-white stars. They usually range in mass from 2 to 16 solar masses and have a surface temperature reaching 30,000 Kelvin. Their lifetimes are shorter than most main sequence stars. + + + B-type stars are very luminous blue-white stars. They usually range in mass from 2 to 16 solar masses and have a surface temperature reaching 30,000 Kelvin. Their lifetimes are shorter than most main sequence stars. This particular star is a giant. + + + B-type stars are very luminous blue-white stars. They usually range in mass from 2 to 16 solar masses and have a surface temperature reaching 30,000 Kelvin. Their lifetimes are shorter than most main sequence stars. This particular star is a supergiant. + + + C-J-type stars are variants of carbon stars, which are stars approaching the end of their stellar lives as hydrogen fusion begins to stop. The C J variant has much more carbon-13 in its atmosphere. + + + C-N-type stars are variants of carbon stars, which are stars approaching the end of their stellar lives as hydrogen fusion begins to stop. They were once K or M-type stars. + + + C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. + + + C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. This particular star is a giant. + + + C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. This particular star is a hypergiant. + + + C-type stars are carbon stars approaching the end of their lives. Hydrogen fusion is beginning to stop, and can alternate. They can be identified by the carbon component in the atmosphere being greater than oxygen. The surface temperature is rarely high than 4,300 Kelvin. This particular star is a supergiant. + + + D-A-B-type stars are white dwarf stars with hydrogen and helium-rich atmospheres and neutral helium emission lines. + + + D-A-V-type stars are known as pulsating white dwarfs. They have hydrogen-rich atmospheres and their luminosity changes according to non-radial gravity waves within the star. + + + D-A-Z-type stars are white dwarfs, which are hydrogen-rich metallic stars. + + + D-A-type stars are white dwarf stars with a hydrogen-rich atmosphere. + + + D-B-V-type stars are known as pulsating white dwarfs. They have helium-rich atmospheres and their luminosity changes according to non-radial gravity waves within the star. + + + D-B-Z-type stars are helium-rich and metallic white dwarf stars. + + + D-B-type stars are white dwarfs with a helium-rich atmosphere with neutral helium emission lines. + + + D-C-V-type stars are white dwarfs with varying luminosity. + + + D-C-type stars are white dwarfs without spectral lines strong enough to classify their atmospheres. + + + D-Q-type stars are white dwarfs with a carbon-rich atmosphere. + + + White dwarf stars are stellar remnants. Nuclear fusion has now ceased, and in the absence of radiation pressure the core has collapsed, heating it up greatly before it begins its slow cooling-down phase. Surface temperatures are usually between 8,000 and 40,000 Kelvin, so these stellar remnants are blue-white. + + + A terrestrial planet with an active water-based chemistry and indigenous carbon-water-based life. This planet’s nitogen-oxygen atmosphere is breathable for humans. + + + F-type stars are white main sequence stars. They usually range in mass from 1 to 1.4 solar masses and have a surface temperature reaching 7,600 Kelvin. + + + F-type stars are white main sequence stars. They usually range in mass from 1 to 1.4 solar masses and have a surface temperature reaching 7,600 Kelvin. This particular star is a giant. + + + F-type stars are white main sequence stars. They usually range in mass from 1 to 1.4 solar masses and have a surface temperature reaching 7,600 Kelvin. This particular star is a supergiant. + + + Gas giants such as this one are primarily hydrogen and helium based, with life just below the surface-cloud layer. This particular gas giant exhibits vivid coloration due to the presence of free-floating radioplankton - carbon-based algae that extract energy from the planet's intense radiation flux. + + + A gas giant with a primarily hydrogen and helium atmosphere and bioluminescent life, based in the water-cloud layer just below the atmospheric surface. An excess of oxygen and many carbon-based compounds produces vivid colors. There are vast quantities of free-floating radioplankton. Tiny carbon-based algae. + + + A gas giant with a primarily hydrogen and helium atmosphere with clouds of ammonia, water vapor, hydrogen sulfide, phosphine and sulfur. Upper cloud layer temperatures are typically less than 150 Kelvin. Vivid cloud layer coloration suggests bioluminescent organisms. There are vast quantities of free-floating radioplankton. Tiny carbon-based algae. + + + An entity I have no information about. + + + A gas giant with primarily hydrogen and helium atmosphere but without distinctive cloud layers. Surface temperatures range between 350 and 800 Kelvin. Optical scattering causes a blue color, with wispy cloud layers from sulfides and chlorides. Vivid, luminous vapor in the upper atmosphere suggests extremophile bioluminescent life. + + + An entity I have no information about. + + + An entity I have no information about. + + + An entity I have no information about. + + + G-type stars are white-yellow main sequence stars. They usually range in mass from 0.8 to 1.2 solar masses and have a surface temperature reaching 6,000 Kelvin. + + + G-type stars are white-yellow main sequence stars. They usually range in mass from 0.8 to 1.2 solar masses and have a surface temperature reaching 6,000 Kelvin. This particular star is a giant. + + + G-type stars are white-yellow main sequence stars. They usually range in mass from 0.8 to 1.2 solar masses and have a surface temperature reaching 6,000 Kelvin. This particular star is a supergiant. + + + K-type stars are yellow-orange main sequence stars with a long and generally stable life. They usually range in mass from 0.6 to 0.9 solar masses and have a surface temperature reaching 5,000 Kelvin. + + + K-type stars are yellow-orange main sequence stars with a long and generally stable life. They usually range in mass from 0.6 to 0.9 solar masses and have a surface temperature reaching 5,000 Kelvin. This particular star is a giant. + + + K-type stars are yellow-orange main sequence stars with a long and generally stable life. They usually range in mass from 0.6 to 0.9 solar masses and have a surface temperature reaching 5,000 Kelvin. This particular star is a supergiant. + + + L-type stars are dwarf stars on the cusp of supporting hydrogen fusion in their cores. Their temperatures range from 1,300 to 2,400 Kelvin. Cool enough to have alkaline metals and metal hydrides in their atmospheres. + + + M-S-type stars are late sequence stars that have progressed from the M class stage and are heading towards becoming carbon stars. They are nearing the end of their stellar lives. + + + M-type stars are red stars that comprise the bulk of the galaxy’s main sequence stars. They usually range from 0.075 to 0.50 solar masses, and their surface temperature is less than 4,000 Kelvin. + + + M-type stars are red stars that comprise the bulk of the galaxy’s main sequence stars. They usually range from 0.075 to 0.50 solar masses, and their surface temperature is less than 4,000 Kelvin. This particular star is a giant. + + + M-type stars are red stars that comprise the bulk of the galaxy’s main sequence stars. They usually range from 0.075 to 0.50 solar masses, and their surface temperature is less than 4,000 Kelvin. This particular star is a supergiant. + + + Neutron stars are the stellar remnants of massive stars. Once nuclear fusion was exhausted, the star collapsed into an extreme high-density state made up entirely of neutrons, though with insufficient mass to become a black hole. + + + O-type stars are the most luminous and massive main sequence stars. They usually range from 15 to 90 solar masses, with a surface temperature reaching 52,000 Kelvin, so they appear very blue. They are very short lived with lifetimes of 1-10 million years, ending in a supernova. + + + O-type stars are the most luminous and massive main sequence stars. They usually range from 15 to 90 solar masses, with a surface temperature reaching 52,000 Kelvin, so they appear very blue. They are very short lived with lifetimes of 1-10 million years, ending in a supernova. This particular star is a giant. + + + O-type stars are the most luminous and massive main sequence stars. They usually range from 15 to 90 solar masses, with a surface temperature reaching 52,000 Kelvin, so they appear very blue. They are very short lived with lifetimes of 1-10 million years, ending in a supernova. This particular star is a supergiant. + + + A terrestrial ammonia planet with an active ammonia-based chemistry and carbon-ammonia-based life. + + + A gas giant with a hydrogen and helium-based atmosphere. Vivid colors are produced by oxygen and carbon-based compounds. This planet contains life forms in the ammonia-cloud layer, with vast quantities of free-floating radioplankton. Tiny carbon-based algae. + + + A gas giant with hydrogen and helium-based atmosphere. Vivid colors are produced by oxygen and carbon-based compounds. This planet contains life forms in a hot layer of high-pressure water, with vast quantities of free-floating radioplankton. Tiny carbon-based algae. + + + A gas giant with more helium in its atmosphere compared to hydrogen. Most or all hydrogen has been lost due to insufficient mass to hold on to it. Past temperatures may have been much higher, driving off the hydrogen at a greater rate. + + + A gas giant with primarily helium atmosphere. Most of all hydrogen has been lost due to insufficient mass to hold on to it. Past temperatures may have been much higher, driving off the hydrogen at a greater rate. + + + A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has no atmosphere. + + + An ice planet composed mainly of water ice. Planets like this form in the cooler regions of a star system, and retain many volatiles as solids within their crust. This body has no atmosphere. + + + A metal-rich planet that has a large metallic core, with plentiful metallic ores even at the surface. Some high metals can be found in their elemental form, especially around areas of past or current volcanism or liquid erosion. This body has no atmosphere. + + + A rocky ice planet with a small metal core and thick rocky mantle with a crust of very deep ice. Geological activity is common because of the large quantities of volatiles in the crust, often creating a thin, sometimes seasonal atmosphere. This body has no atmosphere. + + + A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has no atmosphere. + + + A gas giant with a primarily hydrogen and helium atmosphere. Vivid colors are produced by clouds in the upper atmosphere of ammonia, water vapor, hydrogen sulfide, phosphine and sulfur. Upper cloud layer temperatures are typically less than 150 Kelvin. + + + A gas giant with a primarily hydrogen and helium atmosphere. Water vapor in the upper cloud layers gives a much higher albedo. Surface temperatures are typically around 250 Kelvin. + + + A gas giant with primarily hydrogen and helium atmosphere but without distinctive cloud layers. Optical scattering causes a blue color, with the chance of wispy cloud layers from sulfides and chlorides. Surface temperatures range between 350 and 800 Kelvin. + + + A gas giant with a primarily hydrogen and helium atmosphere., with carbon monoxide and upper clouds of alkali metals above lower cloud layers of silicates and iron compounds, hence the brighter colors. Upper cloud layer temperatures are typically above 900 Kelvin. + + + A gas giant with a primarily hydrogen and helium atmosphere, with thick clouds of silicates and iron compounds, even metallic iron. They are the hottest type of gas giants with upper cloud temperatures above 1,400 Kelvin and much hotter lower layers. + + + A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has an atmosphere. + + + An ice planet composed mainly of water ice. Planets like this form in the cooler regions of a star system, and retain many volatiles as solids within their crust. This body has an atmosphere. + + + A metal-rich planet that has a large metallic core, with plentiful metallic ores even at the surface. Some high metals can be found in their elemental form, especially around areas of past or current volcanism or liquid erosion. This body has an atmosphere. + + + A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has an atmosphere. + + + A rocky ice planet with a small metal core and thick rocky mantle with a crust of very deep ice. Geological activity is common because of the large quantities of volatiles in the crust, often creating a thin, sometimes seasonal atmosphere. This body has an atmosphere. + + + A gas giant with a very thick atmosphere dominated by water vapor. + + + A terrestrial water planet with an active water-based chemistry and carbon-water-based life. + + + Supermassive black holes tend to form when a black hole consumes a number of other bodies, including other black holes. Over time acquire vast mass, sometimes attaining several million solar masses. + + + S-type stars are late sequence stars that were once M class stars. They have begun the cycle towards becoming carbon stars, and are nearing the end of their stellar lives. + + + S-type stars are late sequence stars that were once M class stars. They have begun the cycle towards becoming carbon stars, and are nearing the end of their stellar lives. This particular star is a giant. + + + A terrestrial ammonia planet with an active ammonia-based chemistry and carbon-ammonia-based life. This body is terraformable. + + + A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has no atmosphere and is terraformable. + + + A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has no atmosphere and is terraformable. + + + A high metal content planet with a metallic core. Planets like this can have metallic ores near the surface in places, especially around areas of past volcanism. This body has an atmosphere and is terraformable. + + + A metal-rich planet that has a large metallic core, with plentiful metallic ores even at the surface. Some high metals can be found in their elemental form, especially around areas of past or current volcanism or liquid erosion. This body has an atmosphere and is terraformable. + + + A rocky planet with little or no surface metal content. Planets like this have lost most of their volatiles due to past heating, and any metallic content will form a small central core. This body has an atmosphere and is terraformable. + + + A terrestrial water planet with an active water-based chemistry and carbon-water-based life. This body is terraformable. + + + T-Tauri stars are very young stars in the process of gravitational contraction prior to their cores beginning hydrogen fusion. + + + T-type stars are brown dwarfs with a surface temperature between 700 and 1,300 Kelvin. They are sometimes known as methane dwarfs due to the prominence of methane in their composition. + + + The W-C-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized carbon lines. + + + The W-N-C-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized nitrogen, carbon-oxygen and and helium lines. + + + The W-N-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized nitrogen and helium lines. + + + The W-O-type are variants of Wolf-Rayet stars whose spectrum is dominated by ionized oxygen lines. + + + Wolf-Rayet stars are massive stars nearing the end of their life cycle, past their hydrogen-burning phase. They were once over 20 solar masses but now shed material through solar wind. Their surface temperature can reach 200,000 Kelvin, so they appear a brilliant blue. + + + Y-type stars are the coolest of the brown dwarf stars. Surface temperatures are less than 700 Kelvin, and they are effectively very large gas giant planets with some stellar properties. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/AstronomicalType.Designer.cs b/DataDefinitions/Properties/AstronomicalType.Designer.cs new file mode 100644 index 0000000000..467e8e94d5 --- /dev/null +++ b/DataDefinitions/Properties/AstronomicalType.Designer.cs @@ -0,0 +1,90 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class AstronomicalType { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AstronomicalType() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.AstronomicalType", typeof(AstronomicalType).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Gas Giants. + /// + public static string Gas_Giants { + get { + return ResourceManager.GetString("Gas_Giants", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stars. + /// + public static string Stars { + get { + return ResourceManager.GetString("Stars", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Terrestrials. + /// + public static string Terrestrials { + get { + return ResourceManager.GetString("Terrestrials", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/AstronomicalType.resx b/DataDefinitions/Properties/AstronomicalType.resx new file mode 100644 index 0000000000..cd9b18d8b9 --- /dev/null +++ b/DataDefinitions/Properties/AstronomicalType.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Gas Giants + + + Stars + + + Terrestrials + + \ No newline at end of file diff --git a/DataDefinitions/Properties/AtmosphereThickness.Designer.cs b/DataDefinitions/Properties/AtmosphereThickness.Designer.cs new file mode 100644 index 0000000000..f980ee97b9 --- /dev/null +++ b/DataDefinitions/Properties/AtmosphereThickness.Designer.cs @@ -0,0 +1,117 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class AtmosphereThickness { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AtmosphereThickness() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.AtmosphereThickness", typeof(AtmosphereThickness).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Gas Giant. + /// + public static string gas_giant { + get { + return ResourceManager.GetString("gas_giant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hot Thick. + /// + public static string hot_thick { + get { + return ResourceManager.GetString("hot_thick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No atmosphere. + /// + public static string none { + get { + return ResourceManager.GetString("none", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Normal. + /// + public static string normal { + get { + return ResourceManager.GetString("normal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thick. + /// + public static string thick { + get { + return ResourceManager.GetString("thick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thin. + /// + public static string thin { + get { + return ResourceManager.GetString("thin", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/AtmosphereThickness.resx b/DataDefinitions/Properties/AtmosphereThickness.resx new file mode 100644 index 0000000000..a78c763a5a --- /dev/null +++ b/DataDefinitions/Properties/AtmosphereThickness.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + No atmosphere + + + Thin + + + Thick + + + Hot Thick + + + Normal + + + Gas Giant + + \ No newline at end of file diff --git a/DataDefinitions/Properties/Geology.Designer.cs b/DataDefinitions/Properties/Geology.Designer.cs new file mode 100644 index 0000000000..bcde2d1016 --- /dev/null +++ b/DataDefinitions/Properties/Geology.Designer.cs @@ -0,0 +1,855 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Geology { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Geology() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.Geology", typeof(Geology).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Carbon Dioxide Fumarole. + /// + public static string Fumarole_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("Fumarole_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate Vapour Fumarole. + /// + public static string Fumarole_SilicateVapourGeysers { + get { + return ResourceManager.GetString("Fumarole_SilicateVapourGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sulphur Dioxide Fumarole. + /// + public static string Fumarole_SulphurDioxideMagma { + get { + return ResourceManager.GetString("Fumarole_SulphurDioxideMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Fumarole. + /// + public static string Fumarole_WaterGeysers { + get { + return ResourceManager.GetString("Fumarole_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum Lagrange Cloud. + /// + public static string Gas_Clds_Blue { + get { + return ResourceManager.GetString("Gas_Clds_Blue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride Lagrange Cloud. + /// + public static string Gas_Clds_Green { + get { + return ResourceManager.GetString("Gas_Clds_Green", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride Lagrange Storm Cloud. + /// + public static string Gas_Clds_Green_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Green_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proto-Lagrange Cloud. + /// + public static string Gas_Clds_Light { + get { + return ResourceManager.GetString("Gas_Clds_Light", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum Lagrange Cloud. + /// + public static string Gas_Clds_Orange { + get { + return ResourceManager.GetString("Gas_Clds_Orange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum Lagrange Storm Cloud. + /// + public static string Gas_Clds_Orange_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Orange_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum Lagrange Cloud. + /// + public static string Gas_Clds_Pink { + get { + return ResourceManager.GetString("Gas_Clds_Pink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum Lagrange Storm Cloud. + /// + public static string Gas_Clds_Pink_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Pink_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubicundum Lagrange Cloud. + /// + public static string Gas_Clds_Red { + get { + return ResourceManager.GetString("Gas_Clds_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubicundum Lagrange Storm Cloud. + /// + public static string Gas_Clds_Red_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Red_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Croceum Lagrange Cloud. + /// + public static string Gas_Clds_Yellow { + get { + return ResourceManager.GetString("Gas_Clds_Yellow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Croceum Lagrange Storm Cloud. + /// + public static string Gas_Clds_Yellow_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Yellow_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Carbon Dioxide Gas Vent. + /// + public static string Gas_Vents_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("Gas_Vents_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate Vapour Gas Vent. + /// + public static string Gas_Vents_SilicateVapourGeysers { + get { + return ResourceManager.GetString("Gas_Vents_SilicateVapourGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sulphur Dioxide Gas Vent. + /// + public static string Gas_Vents_SulphurDioxideMagma { + get { + return ResourceManager.GetString("Gas_Vents_SulphurDioxideMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Gas Vent. + /// + public static string Gas_Vents_WaterGeysers { + get { + return ResourceManager.GetString("Gas_Vents_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Geyser. + /// + public static string Geysers_WaterGeysers { + get { + return ResourceManager.GetString("Geysers_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ammonia Ice Fumarole. + /// + public static string IceFumarole_AmmoniaGeysers { + get { + return ResourceManager.GetString("IceFumarole_AmmoniaGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Carbon Dioxide Ice Fumarole. + /// + public static string IceFumarole_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("IceFumarole_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Methane Ice Fumarole. + /// + public static string IceFumarole_MethaneGeysers { + get { + return ResourceManager.GetString("IceFumarole_MethaneGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nitrogen Ice Fumarole. + /// + public static string IceFumarole_NitrogenGeysers { + get { + return ResourceManager.GetString("IceFumarole_NitrogenGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate Vapour Ice Fumarole. + /// + public static string IceFumarole_SilicateVapourGeysers { + get { + return ResourceManager.GetString("IceFumarole_SilicateVapourGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sulphur Dioxide Ice Fumarole. + /// + public static string IceFumarole_SulphurDioxideMagma { + get { + return ResourceManager.GetString("IceFumarole_SulphurDioxideMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Ice Fumarole. + /// + public static string IceFumarole_WaterGeysers { + get { + return ResourceManager.GetString("IceFumarole_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ammonia Ice Geyser. + /// + public static string IceGeysers_AmmoniaGeysers { + get { + return ResourceManager.GetString("IceGeysers_AmmoniaGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Carbon Dioxide Ice Geyser. + /// + public static string IceGeysers_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("IceGeysers_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Methane Ice Geyser. + /// + public static string IceGeysers_MethaneGeysers { + get { + return ResourceManager.GetString("IceGeysers_MethaneGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nitrogen Ice Geyser. + /// + public static string IceGeysers_NitrogenGeysers { + get { + return ResourceManager.GetString("IceGeysers_NitrogenGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Ice Geyser. + /// + public static string IceGeysers_WaterGeysers { + get { + return ResourceManager.GetString("IceGeysers_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K01-Type Anomaly. + /// + public static string L_Phn_Part_Cld_001 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_001", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K02-Type Anomaly. + /// + public static string L_Phn_Part_Cld_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K03-Type Anomaly. + /// + public static string L_Phn_Part_Cld_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K04-Type Anomaly. + /// + public static string L_Phn_Part_Cld_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K05-Type Anomaly. + /// + public static string L_Phn_Part_Cld_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K06-Type Anomaly. + /// + public static string L_Phn_Part_Cld_006 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_006", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E04-Type Anomaly. + /// + public static string L_Phn_Part_Cld_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K07-Type Anomaly. + /// + public static string L_Phn_Part_Cld_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K08-Type Anomaly. + /// + public static string L_Phn_Part_Cld_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K09-Type Anomaly. + /// + public static string L_Phn_Part_Cld_010 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_010", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K10-Type Anomaly. + /// + public static string L_Phn_Part_Cld_011 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K11-Type Anomaly. + /// + public static string L_Phn_Part_Cld_012 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E01-Type Anomaly. + /// + public static string L_Phn_Part_Cld_013 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E02-Type Anomaly. + /// + public static string L_Phn_Part_Cld_014 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_014", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E03-Type Anomaly. + /// + public static string L_Phn_Part_Cld_015 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_015", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K12-Type Anomaly. + /// + public static string L_Phn_Part_Cld_016 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_016", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K13-Type Anomaly. + /// + public static string L_Phn_Part_Cld_017 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_017", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T01-Type Anomaly. + /// + public static string L_Phn_Part_Clus_001 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_001", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T02-Type Anomaly. + /// + public static string L_Phn_Part_Clus_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L01-Type Anomaly. + /// + public static string L_Phn_Part_Clus_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T03-Type Anomaly. + /// + public static string L_Phn_Part_Clus_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T04-Type Anomaly. + /// + public static string L_Phn_Part_Clus_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L03-Type Anomaly. + /// + public static string L_Phn_Part_Clus_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L04-Type Anomaly. + /// + public static string L_Phn_Part_Clus_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L05-Type Anomaly. + /// + public static string L_Phn_Part_Clus_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L06-Type Anomaly. + /// + public static string L_Phn_Part_Clus_010 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_010", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L07-Type Anomaly. + /// + public static string L_Phn_Part_Clus_011 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L08-Type Anomaly. + /// + public static string L_Phn_Part_Clus_012 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L09-Type Anomaly. + /// + public static string L_Phn_Part_Clus_013 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P01-Type Anomaly. + /// + public static string L_Phn_Part_Eng_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P02-Type Anomaly. + /// + public static string L_Phn_Part_Eng_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P03-Type Anomaly. + /// + public static string L_Phn_Part_Eng_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P04-Type Anomaly. + /// + public static string L_Phn_Part_Eng_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P05-Type Anomaly. + /// + public static string L_Phn_Part_Eng_006 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_006", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P06-Type Anomaly. + /// + public static string L_Phn_Part_Eng_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P07-Type Anomaly. + /// + public static string L_Phn_Part_Eng_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P08-Type Anomaly. + /// + public static string L_Phn_Part_Eng_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P09-Type Anomaly. + /// + public static string L_Phn_Part_Eng_010 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_010", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P10-Type Anomaly. + /// + public static string L_Phn_Part_Eng_011 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P11-Type Anomaly. + /// + public static string L_Phn_Part_Eng_012 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P12-Type Anomaly. + /// + public static string L_Phn_Part_Eng_013 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P13-Type Anomaly. + /// + public static string L_Phn_Part_Eng_014 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_014", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P14-Type Anomaly. + /// + public static string L_Phn_Part_Eng_015 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_015", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P15-Type Anomaly. + /// + public static string L_Phn_Part_Eng_016 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_016", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q01-Type Anomaly. + /// + public static string L_Phn_Part_Orb_001 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_001", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q02-Type Anomaly. + /// + public static string L_Phn_Part_Orb_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q03-Type Anomaly. + /// + public static string L_Phn_Part_Orb_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q04-Type Anomaly. + /// + public static string L_Phn_Part_Orb_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q05-Type Anomaly. + /// + public static string L_Phn_Part_Orb_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q06-Type Anomaly. + /// + public static string L_Phn_Part_Orb_006 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_006", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q07-Type Anomaly. + /// + public static string L_Phn_Part_Orb_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q08-Type Anomaly. + /// + public static string L_Phn_Part_Orb_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q09-Type Anomaly. + /// + public static string L_Phn_Part_Orb_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Iron Magma Lava Spout. + /// + public static string Lava_Spouts_IronMagma { + get { + return ResourceManager.GetString("Lava_Spouts_IronMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate Magma Lava Spout. + /// + public static string Lava_Spouts_SilicateMagma { + get { + return ResourceManager.GetString("Lava_Spouts_SilicateMagma", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/Geology.resx b/DataDefinitions/Properties/Geology.resx new file mode 100644 index 0000000000..5fdd849c91 --- /dev/null +++ b/DataDefinitions/Properties/Geology.resx @@ -0,0 +1,384 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Carbon Dioxide Fumarole + + + Silicate Vapour Fumarole + + + Sulphur Dioxide Fumarole + + + Water Fumarole + + + Caeruleum Lagrange Cloud + + + Viride Lagrange Cloud + + + Viride Lagrange Storm Cloud + + + Proto-Lagrange Cloud + + + Luteolum Lagrange Cloud + + + Luteolum Lagrange Storm Cloud + + + Roseum Lagrange Cloud + + + Roseum Lagrange Storm Cloud + + + Rubicundum Lagrange Cloud + + + Rubicundum Lagrange Storm Cloud + + + Croceum Lagrange Cloud + + + Croceum Lagrange Storm Cloud + + + Carbon Dioxide Gas Vent + + + Silicate Vapour Gas Vent + + + Sulphur Dioxide Gas Vent + + + Water Gas Vent + + + Water Geyser + + + Ammonia Ice Fumarole + + + Carbon Dioxide Ice Fumarole + + + Methane Ice Fumarole + + + Nitrogen Ice Fumarole + + + Silicate Vapour Ice Fumarole + + + Sulphur Dioxide Ice Fumarole + + + Water Ice Fumarole + + + Ammonia Ice Geyser + + + Carbon Dioxide Ice Geyser + + + Methane Ice Geyser + + + Nitrogen Ice Geyser + + + Water Ice Geyser + + + Iron Magma Lava Spout + + + Silicate Magma Lava Spout + + + K01-Type Anomaly + + + K02-Type Anomaly + + + K03-Type Anomaly + + + K04-Type Anomaly + + + K05-Type Anomaly + + + K06-Type Anomaly + + + E04-Type Anomaly + + + K07-Type Anomaly + + + K08-Type Anomaly + + + K09-Type Anomaly + + + K10-Type Anomaly + + + K11-Type Anomaly + + + E01-Type Anomaly + + + E02-Type Anomaly + + + E03-Type Anomaly + + + K12-Type Anomaly + + + K13-Type Anomaly + + + T01-Type Anomaly + + + T02-Type Anomaly + + + L01-Type Anomaly + + + T03-Type Anomaly + + + T04-Type Anomaly + + + L03-Type Anomaly + + + L04-Type Anomaly + + + L05-Type Anomaly + + + L06-Type Anomaly + + + L07-Type Anomaly + + + L08-Type Anomaly + + + L09-Type Anomaly + + + P01-Type Anomaly + + + P02-Type Anomaly + + + P03-Type Anomaly + + + P04-Type Anomaly + + + P05-Type Anomaly + + + P06-Type Anomaly + + + P07-Type Anomaly + + + P08-Type Anomaly + + + P09-Type Anomaly + + + P10-Type Anomaly + + + P11-Type Anomaly + + + P12-Type Anomaly + + + P13-Type Anomaly + + + P14-Type Anomaly + + + P15-Type Anomaly + + + Q01-Type Anomaly + + + Q02-Type Anomaly + + + Q03-Type Anomaly + + + Q04-Type Anomaly + + + Q05-Type Anomaly + + + Q06-Type Anomaly + + + Q07-Type Anomaly + + + Q08-Type Anomaly + + + Q09-Type Anomaly + + \ No newline at end of file diff --git a/DataDefinitions/Properties/GeologyDesc.Designer.cs b/DataDefinitions/Properties/GeologyDesc.Designer.cs new file mode 100644 index 0000000000..d1fe562e85 --- /dev/null +++ b/DataDefinitions/Properties/GeologyDesc.Designer.cs @@ -0,0 +1,855 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class GeologyDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal GeologyDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.GeologyDesc", typeof(GeologyDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with carbon dioxide geysers.. + /// + public static string Fumarole_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("Fumarole_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with silicate vapour geysers.. + /// + public static string Fumarole_SilicateVapourGeysers { + get { + return ResourceManager.GetString("Fumarole_SilicateVapourGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with sulphur dioxide magma.. + /// + public static string Fumarole_SulphurDioxideMagma { + get { + return ResourceManager.GetString("Fumarole_SulphurDioxideMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with water geysers.. + /// + public static string Fumarole_WaterGeysers { + get { + return ResourceManager.GetString("Fumarole_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a blue cloud.. + /// + public static string Gas_Clds_Blue { + get { + return ResourceManager.GetString("Gas_Clds_Blue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a green cloud.. + /// + public static string Gas_Clds_Green { + get { + return ResourceManager.GetString("Gas_Clds_Green", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a green cloud that produces irregular electrical discharges.. + /// + public static string Gas_Clds_Green_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Green_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is a light accumulation of gas.. + /// + public static string Gas_Clds_Light { + get { + return ResourceManager.GetString("Gas_Clds_Light", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a orange cloud.. + /// + public static string Gas_Clds_Orange { + get { + return ResourceManager.GetString("Gas_Clds_Orange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a orange cloud that produces irregular electrical discharges.. + /// + public static string Gas_Clds_Orange_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Orange_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a pink cloud.. + /// + public static string Gas_Clds_Pink { + get { + return ResourceManager.GetString("Gas_Clds_Pink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a pink cloud that produces irregular electrical discharges.. + /// + public static string Gas_Clds_Pink_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Pink_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a red cloud.. + /// + public static string Gas_Clds_Red { + get { + return ResourceManager.GetString("Gas_Clds_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a red cloud that produces irregular electrical discharges.. + /// + public static string Gas_Clds_Red_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Red_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a yellow cloud.. + /// + public static string Gas_Clds_Yellow { + get { + return ResourceManager.GetString("Gas_Clds_Yellow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation has a yellow cloud that produces irregular electrical discharges.. + /// + public static string Gas_Clds_Yellow_Storm { + get { + return ResourceManager.GetString("Gas_Clds_Yellow_Storm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with carbon dioxide geysers.. + /// + public static string Gas_Vents_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("Gas_Vents_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with silicate vapour geysers.. + /// + public static string Gas_Vents_SilicateVapourGeysers { + get { + return ResourceManager.GetString("Gas_Vents_SilicateVapourGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with sulphur dioxide magma.. + /// + public static string Gas_Vents_SulphurDioxideMagma { + get { + return ResourceManager.GetString("Gas_Vents_SulphurDioxideMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with water geysers.. + /// + public static string Gas_Vents_WaterGeysers { + get { + return ResourceManager.GetString("Gas_Vents_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with water geysers.. + /// + public static string Geysers_WaterGeysers { + get { + return ResourceManager.GetString("Geysers_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with ammonia geysers.. + /// + public static string IceFumarole_AmmoniaGeysers { + get { + return ResourceManager.GetString("IceFumarole_AmmoniaGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with carbon dioxide geysers.. + /// + public static string IceFumarole_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("IceFumarole_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with methane geysers.. + /// + public static string IceFumarole_MethaneGeysers { + get { + return ResourceManager.GetString("IceFumarole_MethaneGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with nitrogen geysers.. + /// + public static string IceFumarole_NitrogenGeysers { + get { + return ResourceManager.GetString("IceFumarole_NitrogenGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with silicate vapour geysers.. + /// + public static string IceFumarole_SilicateVapourGeysers { + get { + return ResourceManager.GetString("IceFumarole_SilicateVapourGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with sulphur dioxide magma.. + /// + public static string IceFumarole_SulphurDioxideMagma { + get { + return ResourceManager.GetString("IceFumarole_SulphurDioxideMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with water geysers.. + /// + public static string IceFumarole_WaterGeysers { + get { + return ResourceManager.GetString("IceFumarole_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with ammonia geysers.. + /// + public static string IceGeysers_AmmoniaGeysers { + get { + return ResourceManager.GetString("IceGeysers_AmmoniaGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with carbon dioxide geysers.. + /// + public static string IceGeysers_CarbonDioxideGeysers { + get { + return ResourceManager.GetString("IceGeysers_CarbonDioxideGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with methane geysers.. + /// + public static string IceGeysers_MethaneGeysers { + get { + return ResourceManager.GetString("IceGeysers_MethaneGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with helium geysers.. + /// + public static string IceGeysers_NitrogenGeysers { + get { + return ResourceManager.GetString("IceGeysers_NitrogenGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with water geysers.. + /// + public static string IceGeysers_WaterGeysers { + get { + return ResourceManager.GetString("IceGeysers_WaterGeysers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of wispy blue cloud patterns.. + /// + public static string L_Phn_Part_Cld_001 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_001", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of slow-moving clumps of drifting particles.. + /// + public static string L_Phn_Part_Cld_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of billowing multicoloured cloud patterns.. + /// + public static string L_Phn_Part_Cld_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of wispy blue cloud patterns around a denser core.. + /// + public static string L_Phn_Part_Cld_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a slow-moving bright core trailing multicoloured rings.. + /// + public static string L_Phn_Part_Cld_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a billowing multicoloured cloud surrounded by scattered streaks.. + /// + public static string L_Phn_Part_Cld_006 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_006", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright blue-white core emitting scattered particles.. + /// + public static string L_Phn_Part_Cld_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright red core emitting rapid pulsing clouds.. + /// + public static string L_Phn_Part_Cld_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a dull red core emitting slow pulsing clouds.. + /// + public static string L_Phn_Part_Cld_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a dull red core emitting rapid pulsing clouds.. + /// + public static string L_Phn_Part_Cld_010 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_010", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of multiple bright blue-green cores emitting slow-moving clouds. . + /// + public static string L_Phn_Part_Cld_011 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a hazy red core emitting rapid pulsing clouds.. + /// + public static string L_Phn_Part_Cld_012 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a slow-moving ring of red clouds.. + /// + public static string L_Phn_Part_Cld_013 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a slow-moving collection of bright blue clouds.. + /// + public static string L_Phn_Part_Cld_014 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_014", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of scattered pale blue cloud patterns.. + /// + public static string L_Phn_Part_Cld_015 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_015", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a wispy blue core emitting slow-moving pulsing clouds.. + /// + public static string L_Phn_Part_Cld_016 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_016", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is Unknown to me. + /// + public static string L_Phn_Part_Cld_017 { + get { + return ResourceManager.GetString("L_Phn_Part_Cld_017", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright pulsing sphere surrounded by scattered particles.. + /// + public static string L_Phn_Part_Clus_001 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_001", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright pulsing sphere surrounded by clusters of particles.. + /// + public static string L_Phn_Part_Clus_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright pulsing sphere surrounded by particles with a billowing cloud trail.. + /// + public static string L_Phn_Part_Clus_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright pulsing sphere surrounded by fast-moving clusters of particles.. + /// + public static string L_Phn_Part_Clus_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright pulsing sphere surrounded by smaller slow-moving spheres.. + /// + public static string L_Phn_Part_Clus_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright cloud surrounded by slow-moving clusters of particles.. + /// + public static string L_Phn_Part_Clus_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright slow-moving core with a cloud trail.. + /// + public static string L_Phn_Part_Clus_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a group of bright clusters bursting into smaller particles.. + /// + public static string L_Phn_Part_Clus_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright hazy core surrounded by swirling cloud rings.. + /// + public static string L_Phn_Part_Clus_010 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_010", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright hazy core with wispy swirling edges.. + /// + public static string L_Phn_Part_Clus_011 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright circular core surrounded by swirling particles.. + /// + public static string L_Phn_Part_Clus_012 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright cloudy core surrounded by scattered streaks.. + /// + public static string L_Phn_Part_Clus_013 { + get { + return ResourceManager.GetString("L_Phn_Part_Clus_013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a dark core with a bright halo and ring of clouds.. + /// + public static string L_Phn_Part_Eng_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a rotating bright core emitting spiraling cloud trails.. + /// + public static string L_Phn_Part_Eng_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a rotating bright core surrounded by a spiralling ring of clouds.. + /// + public static string L_Phn_Part_Eng_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright hazy core with a ring of thick glowing bands.. + /// + public static string L_Phn_Part_Eng_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core surrounded by slow-moving rotating clouds.. + /// + public static string L_Phn_Part_Eng_006 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_006", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core with a cloudy halo emitting fast-moving pulses.. + /// + public static string L_Phn_Part_Eng_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright cluster emitting green strings of wispy cloud.. + /// + public static string L_Phn_Part_Eng_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright cluster emitting white strings of wispy cloud.. + /// + public static string L_Phn_Part_Eng_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright hazy core emitting regular bursts of lightning.. + /// + public static string L_Phn_Part_Eng_010 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_010", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of bright fragments surrounded by a ring of clouds.. + /// + public static string L_Phn_Part_Eng_011 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of an intensely bright core emitting fast-moving clouds and particles.. + /// + public static string L_Phn_Part_Eng_012 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of an intensely bright core emitting fast-moving clusters of particles.. + /// + public static string L_Phn_Part_Eng_013 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright circular core emitting slow-moving particles.. + /// + public static string L_Phn_Part_Eng_014 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_014", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a rotating group of bright clusters emitting fast-moving clouds.. + /// + public static string L_Phn_Part_Eng_015 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_015", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core emitting cloud rings and regular bursts of lightning.. + /// + public static string L_Phn_Part_Eng_016 { + get { + return ResourceManager.GetString("L_Phn_Part_Eng_016", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core emitting slow-moving hazy clouds.. + /// + public static string L_Phn_Part_Orb_001 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_001", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright hazy core pulsing fast-moving rings of clouds.. + /// + public static string L_Phn_Part_Orb_002 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_002", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core emitting slow-moving cloud rings and regular bursts of lightning.. + /// + public static string L_Phn_Part_Orb_003 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_003", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a pulsing irregular core with a halo of clouds.. + /// + public static string L_Phn_Part_Orb_004 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_004", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a pulsing irregular core with a ring of clouds.. + /// + public static string L_Phn_Part_Orb_005 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_005", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core radiating intense light.. + /// + public static string L_Phn_Part_Orb_006 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_006", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core with a circular halo radiating intense light.. + /// + public static string L_Phn_Part_Orb_007 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_007", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core radiating intense light with a ring of clouds.. + /// + public static string L_Phn_Part_Orb_008 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_008", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is comprised of a bright core radiating hazy light with a ring of clouds.. + /// + public static string L_Phn_Part_Orb_009 { + get { + return ResourceManager.GetString("L_Phn_Part_Orb_009", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with iron magma.. + /// + public static string Lava_Spouts_IronMagma { + get { + return ResourceManager.GetString("Lava_Spouts_IronMagma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This variation is found on terrestrial planets with silicate magma.. + /// + public static string Lava_Spouts_SilicateMagma { + get { + return ResourceManager.GetString("Lava_Spouts_SilicateMagma", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/GeologyDesc.resx b/DataDefinitions/Properties/GeologyDesc.resx new file mode 100644 index 0000000000..fd14cf5818 --- /dev/null +++ b/DataDefinitions/Properties/GeologyDesc.resx @@ -0,0 +1,384 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This variation is found on terrestrial planets with carbon dioxide geysers. + + + This variation is found on terrestrial planets with silicate vapour geysers. + + + This variation is found on terrestrial planets with sulphur dioxide magma. + + + This variation is found on terrestrial planets with water geysers. + + + This variation has a blue cloud. + + + This variation has a green cloud. + + + This variation has a green cloud that produces irregular electrical discharges. + + + This variation is a light accumulation of gas. + + + This variation has a orange cloud. + + + This variation has a orange cloud that produces irregular electrical discharges. + + + This variation has a pink cloud. + + + This variation has a pink cloud that produces irregular electrical discharges. + + + This variation has a red cloud. + + + This variation has a red cloud that produces irregular electrical discharges. + + + This variation has a yellow cloud. + + + This variation has a yellow cloud that produces irregular electrical discharges. + + + This variation is found on terrestrial planets with carbon dioxide geysers. + + + This variation is found on terrestrial planets with silicate vapour geysers. + + + This variation is found on terrestrial planets with sulphur dioxide magma. + + + This variation is found on terrestrial planets with water geysers. + + + This variation is found on terrestrial planets with water geysers. + + + This variation is found on terrestrial planets with ammonia geysers. + + + This variation is found on terrestrial planets with carbon dioxide geysers. + + + This variation is found on terrestrial planets with methane geysers. + + + This variation is found on terrestrial planets with nitrogen geysers. + + + This variation is found on terrestrial planets with silicate vapour geysers. + + + This variation is found on terrestrial planets with sulphur dioxide magma. + + + This variation is found on terrestrial planets with water geysers. + + + This variation is found on terrestrial planets with ammonia geysers. + + + This variation is found on terrestrial planets with carbon dioxide geysers. + + + This variation is found on terrestrial planets with methane geysers. + + + This variation is found on terrestrial planets with helium geysers. + + + This variation is found on terrestrial planets with water geysers. + + + This variation is found on terrestrial planets with iron magma. + + + This variation is found on terrestrial planets with silicate magma. + + + This variation is comprised of wispy blue cloud patterns. + + + This variation is comprised of slow-moving clumps of drifting particles. + + + This variation is comprised of billowing multicoloured cloud patterns. + + + This variation is comprised of wispy blue cloud patterns around a denser core. + + + This variation is comprised of a slow-moving bright core trailing multicoloured rings. + + + This variation is comprised of a billowing multicoloured cloud surrounded by scattered streaks. + + + This variation is comprised of a bright blue-white core emitting scattered particles. + + + This variation is comprised of a bright red core emitting rapid pulsing clouds. + + + This variation is comprised of a dull red core emitting slow pulsing clouds. + + + This variation is comprised of a dull red core emitting rapid pulsing clouds. + + + This variation is comprised of multiple bright blue-green cores emitting slow-moving clouds. + + + This variation is comprised of a hazy red core emitting rapid pulsing clouds. + + + This variation is comprised of a slow-moving ring of red clouds. + + + This variation is comprised of a slow-moving collection of bright blue clouds. + + + This variation is comprised of scattered pale blue cloud patterns. + + + This variation is comprised of a wispy blue core emitting slow-moving pulsing clouds. + + + This variation is Unknown to me + + + This variation is comprised of a bright pulsing sphere surrounded by scattered particles. + + + This variation is comprised of a bright pulsing sphere surrounded by clusters of particles. + + + This variation is comprised of a bright pulsing sphere surrounded by particles with a billowing cloud trail. + + + This variation is comprised of a bright pulsing sphere surrounded by fast-moving clusters of particles. + + + This variation is comprised of a bright pulsing sphere surrounded by smaller slow-moving spheres. + + + This variation is comprised of a bright cloud surrounded by slow-moving clusters of particles. + + + This variation is comprised of a bright slow-moving core with a cloud trail. + + + This variation is comprised of a group of bright clusters bursting into smaller particles. + + + This variation is comprised of a bright hazy core surrounded by swirling cloud rings. + + + This variation is comprised of a bright hazy core with wispy swirling edges. + + + This variation is comprised of a bright circular core surrounded by swirling particles. + + + This variation is comprised of a bright cloudy core surrounded by scattered streaks. + + + This variation is comprised of a dark core with a bright halo and ring of clouds. + + + This variation is comprised of a rotating bright core emitting spiraling cloud trails. + + + This variation is comprised of a rotating bright core surrounded by a spiralling ring of clouds. + + + This variation is comprised of a bright hazy core with a ring of thick glowing bands. + + + This variation is comprised of a bright core surrounded by slow-moving rotating clouds. + + + This variation is comprised of a bright core with a cloudy halo emitting fast-moving pulses. + + + This variation is comprised of a bright cluster emitting green strings of wispy cloud. + + + This variation is comprised of a bright cluster emitting white strings of wispy cloud. + + + This variation is comprised of a bright hazy core emitting regular bursts of lightning. + + + This variation is comprised of bright fragments surrounded by a ring of clouds. + + + This variation is comprised of an intensely bright core emitting fast-moving clouds and particles. + + + This variation is comprised of an intensely bright core emitting fast-moving clusters of particles. + + + This variation is comprised of a bright circular core emitting slow-moving particles. + + + This variation is comprised of a rotating group of bright clusters emitting fast-moving clouds. + + + This variation is comprised of a bright core emitting cloud rings and regular bursts of lightning. + + + This variation is comprised of a bright core emitting slow-moving hazy clouds. + + + This variation is comprised of a bright hazy core pulsing fast-moving rings of clouds. + + + This variation is comprised of a bright core emitting slow-moving cloud rings and regular bursts of lightning. + + + This variation is comprised of a pulsing irregular core with a halo of clouds. + + + This variation is comprised of a pulsing irregular core with a ring of clouds. + + + This variation is comprised of a bright core radiating intense light. + + + This variation is comprised of a bright core with a circular halo radiating intense light. + + + This variation is comprised of a bright core radiating intense light with a ring of clouds. + + + This variation is comprised of a bright core radiating hazy light with a ring of clouds. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/GeologyType.Designer.cs b/DataDefinitions/Properties/GeologyType.Designer.cs new file mode 100644 index 0000000000..9deab23bd6 --- /dev/null +++ b/DataDefinitions/Properties/GeologyType.Designer.cs @@ -0,0 +1,189 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class GeologyType { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal GeologyType() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.GeologyType", typeof(GeologyType).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to E-Type Anomoly. + /// + public static string E_TypeAnomoly { + get { + return ResourceManager.GetString("E_TypeAnomoly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fumarole. + /// + public static string Fumarole { + get { + return ResourceManager.GetString("Fumarole", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gas Vent. + /// + public static string GasVent { + get { + return ResourceManager.GetString("GasVent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice Fumarole. + /// + public static string IceFumarole { + get { + return ResourceManager.GetString("IceFumarole", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice Geyser. + /// + public static string IceGeyser { + get { + return ResourceManager.GetString("IceGeyser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-Type Anomoly. + /// + public static string K_TypeAnomoly { + get { + return ResourceManager.GetString("K_TypeAnomoly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L-Type Anomoly. + /// + public static string L_TypeAnomoly { + get { + return ResourceManager.GetString("L_TypeAnomoly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lagrange Cloud. + /// + public static string LagrangeCloud { + get { + return ResourceManager.GetString("LagrangeCloud", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lava Spout. + /// + public static string LavaSpout { + get { + return ResourceManager.GetString("LavaSpout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P-Type Anomoly. + /// + public static string P_TypeAnomoly { + get { + return ResourceManager.GetString("P_TypeAnomoly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q-Type Anomoly. + /// + public static string Q_TypeAnomoly { + get { + return ResourceManager.GetString("Q_TypeAnomoly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Storm Cloud. + /// + public static string StormCloud { + get { + return ResourceManager.GetString("StormCloud", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T-Type Anomoly. + /// + public static string T_TypeAnomoly { + get { + return ResourceManager.GetString("T_TypeAnomoly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Geyser. + /// + public static string WaterGeyser { + get { + return ResourceManager.GetString("WaterGeyser", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/GeologyType.resx b/DataDefinitions/Properties/GeologyType.resx new file mode 100644 index 0000000000..1dfbe5bcbb --- /dev/null +++ b/DataDefinitions/Properties/GeologyType.resx @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + E-Type Anomoly + + + Fumarole + + + Gas Vent + + + Ice Fumarole + + + Ice Geyser + + + K-Type Anomoly + + + Lagrange Cloud + + + Lava Spout + + + L-Type Anomoly + + + P-Type Anomoly + + + Q-Type Anomoly + + + Storm Cloud + + + T-Type Anomoly + + + Water Geyser + + \ No newline at end of file diff --git a/DataDefinitions/Properties/GeologyTypeDesc.Designer.cs b/DataDefinitions/Properties/GeologyTypeDesc.Designer.cs new file mode 100644 index 0000000000..399b52c7bb --- /dev/null +++ b/DataDefinitions/Properties/GeologyTypeDesc.Designer.cs @@ -0,0 +1,189 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class GeologyTypeDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal GeologyTypeDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.GeologyTypeDesc", typeof(GeologyTypeDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to E-Type anomalies are a range of phenomena characterized by slow-moving elements.. + /// + public static string E_TypeAnomaly { + get { + return ResourceManager.GetString("E_TypeAnomaly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fumaroles are gaps in a planet’s crust through which gases and steam are emitted. The ejected material often accumulates around the opening.. + /// + public static string Fumarole { + get { + return ResourceManager.GetString("Fumarole", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gas vents are the result of internal pressure high enough to burst through a planet’s crust.. + /// + public static string GasVent { + get { + return ResourceManager.GetString("GasVent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice fumaroles are gaps in an icy planet’s crust that allow liquid or gaseous material to escape under high pressure.. + /// + public static string IceFumarole { + get { + return ResourceManager.GetString("IceFumarole", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice geysers, also known as cryogeysers, are eruptions of ice, dust and volatiles.. + /// + public static string IceGeyser { + get { + return ResourceManager.GetString("IceGeyser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to K-Type anomalies are a range of high-energy phenomena characterized by luminous cloud patterns.. + /// + public static string K_TypeAnomaly { + get { + return ResourceManager.GetString("K_TypeAnomaly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to L-Type anomalies are a range of phenomena characterized by luminous clusters of energy.. + /// + public static string L_TypeAnomaly { + get { + return ResourceManager.GetString("L_TypeAnomaly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lagrange clouds are a dense accumulation of gas fixed in place at a Lagrange point, where the combined gravitational forces of multiple bodies create a stable region.. + /// + public static string LagrangeCloud { + get { + return ResourceManager.GetString("LagrangeCloud", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lava spouts are weakened areas of a planet’s surface where molten material percolates, generating heat and emitting vapor and gases. The nature of the material varies according to the planet’s composition and circumstances.. + /// + public static string LavaSpout { + get { + return ResourceManager.GetString("LavaSpout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to P-Type anomalies are a range of phenomena characterized by intensity bright energy patterns.. + /// + public static string P_TypeAnomaly { + get { + return ResourceManager.GetString("P_TypeAnomaly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Q-Type anomalies are a range of phenomena characterized by energetic center orbs.. + /// + public static string Q_TypeAnomaly { + get { + return ResourceManager.GetString("Q_TypeAnomaly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Storm clouds are a dense accumulation of gas fixed in place at a Lagrange point, where the combined gravitational forces of multiple bodies create a stable region.. + /// + public static string StormCloud { + get { + return ResourceManager.GetString("StormCloud", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to T-Type anomalies are a range of phenomena characterized by the presence of a bright pulsing sphere.. + /// + public static string T_TypeAnomaly { + get { + return ResourceManager.GetString("T_TypeAnomaly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Geysers are eruptions of liquid created by pressure from local geological activity.. + /// + public static string WaterGeyser { + get { + return ResourceManager.GetString("WaterGeyser", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/GeologyTypeDesc.resx b/DataDefinitions/Properties/GeologyTypeDesc.resx new file mode 100644 index 0000000000..6728ea14c9 --- /dev/null +++ b/DataDefinitions/Properties/GeologyTypeDesc.resx @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + E-Type anomalies are a range of phenomena characterized by slow-moving elements. + + + Fumaroles are gaps in a planet’s crust through which gases and steam are emitted. The ejected material often accumulates around the opening. + + + Gas vents are the result of internal pressure high enough to burst through a planet’s crust. + + + Ice fumaroles are gaps in an icy planet’s crust that allow liquid or gaseous material to escape under high pressure. + + + Ice geysers, also known as cryogeysers, are eruptions of ice, dust and volatiles. + + + K-Type anomalies are a range of high-energy phenomena characterized by luminous cloud patterns. + + + Lagrange clouds are a dense accumulation of gas fixed in place at a Lagrange point, where the combined gravitational forces of multiple bodies create a stable region. + + + Lava spouts are weakened areas of a planet’s surface where molten material percolates, generating heat and emitting vapor and gases. The nature of the material varies according to the planet’s composition and circumstances. + + + L-Type anomalies are a range of phenomena characterized by luminous clusters of energy. + + + P-Type anomalies are a range of phenomena characterized by intensity bright energy patterns. + + + Q-Type anomalies are a range of phenomena characterized by energetic center orbs. + + + Storm clouds are a dense accumulation of gas fixed in place at a Lagrange point, where the combined gravitational forces of multiple bodies create a stable region. + + + T-Type anomalies are a range of phenomena characterized by the presence of a bright pulsing sphere. + + + Geysers are eruptions of liquid created by pressure from local geological activity. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/Guardian.Designer.cs b/DataDefinitions/Properties/Guardian.Designer.cs new file mode 100644 index 0000000000..a130bf3c4c --- /dev/null +++ b/DataDefinitions/Properties/Guardian.Designer.cs @@ -0,0 +1,117 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Guardian { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Guardian() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.Guardian", typeof(Guardian).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Guardian Beacon. + /// + public static string Guardian_Beacons { + get { + return ResourceManager.GetString("Guardian_Beacons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Codex. + /// + public static string Guardian_Data_Logs { + get { + return ResourceManager.GetString("Guardian_Data_Logs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Pylon. + /// + public static string Guardian_Pylon { + get { + return ResourceManager.GetString("Guardian_Pylon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Sentinel. + /// + public static string Guardian_Sentinel { + get { + return ResourceManager.GetString("Guardian_Sentinel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Data Terminal. + /// + public static string Guardian_Terminal { + get { + return ResourceManager.GetString("Guardian_Terminal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Relic Tower. + /// + public static string Relic_Tower { + get { + return ResourceManager.GetString("Relic_Tower", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/Guardian.resx b/DataDefinitions/Properties/Guardian.resx new file mode 100644 index 0000000000..e80c7866d1 --- /dev/null +++ b/DataDefinitions/Properties/Guardian.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Guardian Beacon + + + Guardian Codex + + + Guardian Pylon + + + Guardian Sentinel + + + Guardian Data Terminal + + + Guardian Relic Tower + + \ No newline at end of file diff --git a/DataDefinitions/Properties/GuardianDesc.Designer.cs b/DataDefinitions/Properties/GuardianDesc.Designer.cs new file mode 100644 index 0000000000..ccb7df8bbd --- /dev/null +++ b/DataDefinitions/Properties/GuardianDesc.Designer.cs @@ -0,0 +1,117 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class GuardianDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal GuardianDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.GuardianDesc", typeof(GuardianDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to A vast, space-based structure created several million years ago by the Guardians, an extinct nonhuman civilization.. + /// + public static string Guardian_Beacons { + get { + return ResourceManager.GetString("Guardian_Beacons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A data-storage device created several million years ago by the Guardians, an extinct nonhuman civilization.. + /// + public static string Guardian_Data_Logs { + get { + return ResourceManager.GetString("Guardian_Data_Logs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A structure created several million years ago by the Guardians, an extinct nonhuman civilization.. + /// + public static string Guardian_Pylon { + get { + return ResourceManager.GetString("Guardian_Pylon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These constructs were created by the Guardians to defend sites of importance. They are still fully functional despite being several million years old.. + /// + public static string Guardian_Sentinel { + get { + return ResourceManager.GetString("Guardian_Sentinel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A data-storage device created several million years ago by the Guardians, an extinct nonhuman civilization.. + /// + public static string Guardian_Terminal { + get { + return ResourceManager.GetString("Guardian_Terminal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A structure created several million years ago by the Guardians, an extinct nonhuman civilization.. + /// + public static string Relic_Tower { + get { + return ResourceManager.GetString("Relic_Tower", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/GuardianDesc.resx b/DataDefinitions/Properties/GuardianDesc.resx new file mode 100644 index 0000000000..61bf6eb536 --- /dev/null +++ b/DataDefinitions/Properties/GuardianDesc.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A vast, space-based structure created several million years ago by the Guardians, an extinct nonhuman civilization. + + + A data-storage device created several million years ago by the Guardians, an extinct nonhuman civilization. + + + A structure created several million years ago by the Guardians, an extinct nonhuman civilization. + + + These constructs were created by the Guardians to defend sites of importance. They are still fully functional despite being several million years old. + + + A data-storage device created several million years ago by the Guardians, an extinct nonhuman civilization. + + + A structure created several million years ago by the Guardians, an extinct nonhuman civilization. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/GuardianSiteBlueprint.Designer.cs b/DataDefinitions/Properties/GuardianSiteBlueprint.Designer.cs new file mode 100644 index 0000000000..dd4a1dad5a --- /dev/null +++ b/DataDefinitions/Properties/GuardianSiteBlueprint.Designer.cs @@ -0,0 +1,99 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class GuardianSiteBlueprint { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal GuardianSiteBlueprint() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.GuardianSiteBlueprint", typeof(GuardianSiteBlueprint).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Module. + /// + public static string Module { + get { + return ResourceManager.GetString("Module", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string None { + get { + return ResourceManager.GetString("None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vessel. + /// + public static string Vessel { + get { + return ResourceManager.GetString("Vessel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Weapon. + /// + public static string Weapon { + get { + return ResourceManager.GetString("Weapon", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/GuardianSiteBlueprint.resx b/DataDefinitions/Properties/GuardianSiteBlueprint.resx new file mode 100644 index 0000000000..65998fc239 --- /dev/null +++ b/DataDefinitions/Properties/GuardianSiteBlueprint.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Module + + + None + + + Vessel + + + Weapon + + \ No newline at end of file diff --git a/DataDefinitions/Properties/GuardianSiteType.Designer.cs b/DataDefinitions/Properties/GuardianSiteType.Designer.cs new file mode 100644 index 0000000000..21bb447f58 --- /dev/null +++ b/DataDefinitions/Properties/GuardianSiteType.Designer.cs @@ -0,0 +1,99 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class GuardianSiteType { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal GuardianSiteType() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.GuardianSiteType", typeof(GuardianSiteType).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Beacon. + /// + public static string Beacon { + get { + return ResourceManager.GetString("Beacon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string None { + get { + return ResourceManager.GetString("None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ruins. + /// + public static string Ruin { + get { + return ResourceManager.GetString("Ruin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Structure. + /// + public static string Structure { + get { + return ResourceManager.GetString("Structure", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/GuardianSiteType.resx b/DataDefinitions/Properties/GuardianSiteType.resx new file mode 100644 index 0000000000..9d9d13776e --- /dev/null +++ b/DataDefinitions/Properties/GuardianSiteType.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Beacon + + + None + + + Ruins + + + Structure + + \ No newline at end of file diff --git a/DataDefinitions/Properties/NebulaType.Designer.cs b/DataDefinitions/Properties/NebulaType.Designer.cs new file mode 100644 index 0000000000..ae64f40f63 --- /dev/null +++ b/DataDefinitions/Properties/NebulaType.Designer.cs @@ -0,0 +1,99 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class NebulaType { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal NebulaType() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.NebulaType", typeof(NebulaType).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to None. + /// + public static string None { + get { + return ResourceManager.GetString("None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Planetary. + /// + public static string Planetary { + get { + return ResourceManager.GetString("Planetary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Real. + /// + public static string Real { + get { + return ResourceManager.GetString("Real", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard. + /// + public static string Standard { + get { + return ResourceManager.GetString("Standard", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/NebulaType.resx b/DataDefinitions/Properties/NebulaType.resx new file mode 100644 index 0000000000..00a80f94a8 --- /dev/null +++ b/DataDefinitions/Properties/NebulaType.resx @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + None + + + Planetary + + + Real + + + Standard + + \ No newline at end of file diff --git a/DataDefinitions/Properties/OrganicGenus.Designer.cs b/DataDefinitions/Properties/OrganicGenus.Designer.cs new file mode 100644 index 0000000000..4215337efc --- /dev/null +++ b/DataDefinitions/Properties/OrganicGenus.Designer.cs @@ -0,0 +1,531 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class OrganicGenus { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal OrganicGenus() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.OrganicGenus", typeof(OrganicGenus).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Aleoida. + /// + public static string Aleoids { + get { + return ResourceManager.GetString("Aleoids", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string AsterPod { + get { + return ResourceManager.GetString("AsterPod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tree. + /// + public static string AsterTree { + get { + return ResourceManager.GetString("AsterTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bacterium. + /// + public static string Bacterial { + get { + return ResourceManager.GetString("Bacterial", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Brain Tree. + /// + public static string Brancae { + get { + return ResourceManager.GetString("Brancae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cactoida. + /// + public static string Cactoid { + get { + return ResourceManager.GetString("Cactoid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plates. + /// + public static string CalcitePlates { + get { + return ResourceManager.GetString("CalcitePlates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string ChalicePod { + get { + return ResourceManager.GetString("ChalicePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clypeus. + /// + public static string Clypeus { + get { + return ResourceManager.GetString("Clypeus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string CollaredPod { + get { + return ResourceManager.GetString("CollaredPod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Concha. + /// + public static string Conchas { + get { + return ResourceManager.GetString("Conchas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bark Mounds. + /// + public static string Cone { + get { + return ResourceManager.GetString("Cone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Electricae. + /// + public static string Electricae { + get { + return ResourceManager.GetString("Electricae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fonticulua. + /// + public static string Fonticulus { + get { + return ResourceManager.GetString("Fonticulus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fumerola. + /// + public static string Fumerolas { + get { + return ResourceManager.GetString("Fumerolas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fungoida. + /// + public static string Fungoids { + get { + return ResourceManager.GetString("Fungoids", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crystalline Shards. + /// + public static string GroundStructIce { + get { + return ResourceManager.GetString("GroundStructIce", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string GyrePod { + get { + return ResourceManager.GetString("GyrePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tree. + /// + public static string GyreTree { + get { + return ResourceManager.GetString("GyreTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crystals. + /// + public static string IceCrystals { + get { + return ResourceManager.GetString("IceCrystals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crystals. + /// + public static string MetallicCrystals { + get { + return ResourceManager.GetString("MetallicCrystals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spheres. + /// + public static string MineralSpheres { + get { + return ResourceManager.GetString("MineralSpheres", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscBell { + get { + return ResourceManager.GetString("MolluscBell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscBulb { + get { + return ResourceManager.GetString("MolluscBulb", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscBullet { + get { + return ResourceManager.GetString("MolluscBullet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscCapsule { + get { + return ResourceManager.GetString("MolluscCapsule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscGlobe { + get { + return ResourceManager.GetString("MolluscGlobe", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscGourd { + get { + return ResourceManager.GetString("MolluscGourd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscParasol { + get { + return ResourceManager.GetString("MolluscParasol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscReel { + get { + return ResourceManager.GetString("MolluscReel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscSquid { + get { + return ResourceManager.GetString("MolluscSquid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscTorus { + get { + return ResourceManager.GetString("MolluscTorus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mollusc. + /// + public static string MolluscUmbrella { + get { + return ResourceManager.GetString("MolluscUmbrella", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Osseus. + /// + public static string Osseus { + get { + return ResourceManager.GetString("Osseus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string PedunclePod { + get { + return ResourceManager.GetString("PedunclePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tree. + /// + public static string PeduncleTree { + get { + return ResourceManager.GetString("PeduncleTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string QuadripartitePod { + get { + return ResourceManager.GetString("QuadripartitePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recepta. + /// + public static string Recepta { + get { + return ResourceManager.GetString("Recepta", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string RhizomePod { + get { + return ResourceManager.GetString("RhizomePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Frutexa. + /// + public static string Shrubs { + get { + return ResourceManager.GetString("Shrubs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crystals. + /// + public static string SilicateCrystals { + get { + return ResourceManager.GetString("SilicateCrystals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Anemone. + /// + public static string Sphere { + get { + return ResourceManager.GetString("Sphere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string StolonPod { + get { + return ResourceManager.GetString("StolonPod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tree. + /// + public static string StolonTree { + get { + return ResourceManager.GetString("StolonTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stratum. + /// + public static string Stratum { + get { + return ResourceManager.GetString("Stratum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid. + /// + public static string ThargoidBarnacle { + get { + return ResourceManager.GetString("ThargoidBarnacle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tuber. + /// + public static string Tubers { + get { + return ResourceManager.GetString("Tubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tubus. + /// + public static string Tubus { + get { + return ResourceManager.GetString("Tubus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tussock. + /// + public static string Tussocks { + get { + return ResourceManager.GetString("Tussocks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amphora. + /// + public static string Vents { + get { + return ResourceManager.GetString("Vents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heart. + /// + public static string VoidHeart { + get { + return ResourceManager.GetString("VoidHeart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pod. + /// + public static string VoidPod { + get { + return ResourceManager.GetString("VoidPod", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/OrganicGenus.resx b/DataDefinitions/Properties/OrganicGenus.resx new file mode 100644 index 0000000000..d950f388ff --- /dev/null +++ b/DataDefinitions/Properties/OrganicGenus.resx @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Aleoida + + + Pod + + + Tree + + + Bacterium + + + Brain Tree + + + Cactoida + + + Plates + + + Pod + + + Clypeus + + + Pod + + + Concha + + + Bark Mounds + + + Electricae + + + Fonticulua + + + Fumerola + + + Fungoida + + + Crystalline Shards + + + Pod + + + Tree + + + Crystals + + + Crystals + + + Spheres + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Mollusc + + + Osseus + + + Pod + + + Tree + + + Pod + + + Recepta + + + Pod + + + Frutexa + + + Crystals + + + Anemone + + + Pod + + + Tree + + + Stratum + + + Thargoid + + + Tuber + + + Tubus + + + Tussock + + + Amphora + + + Heart + + + Pod + + \ No newline at end of file diff --git a/DataDefinitions/Properties/OrganicGenusDesc.Designer.cs b/DataDefinitions/Properties/OrganicGenusDesc.Designer.cs new file mode 100644 index 0000000000..37b269c5b2 --- /dev/null +++ b/DataDefinitions/Properties/OrganicGenusDesc.Designer.cs @@ -0,0 +1,531 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class OrganicGenusDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal OrganicGenusDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.OrganicGenusDesc", typeof(OrganicGenusDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Extremely hardy photosynthetic organisms that thrive in arid environments. Thick, waxy leaf structures protect them from extreme surroundings. When gaseous exchange becomes unfavourable. the leaves can completely shut off the organism from the atmosphere causing a state of hibernation. The pointed leaves create precipitation slopes, which draw liquids to the heart of the organism. Here they are absorbed through a series of specialised cells, and stored in the root structure until needed.. + /// + public static string Aleoids { + get { + return ResourceManager.GetString("Aleoids", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These robust seed pods will drift through space for thousands of years before finding a suitable place to release their seeds and spores.. + /// + public static string AsterPod { + get { + return ResourceManager.GetString("AsterPod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures are not trees in the traditional sense, but long-lived and extremely hardy space-based organisms.. + /// + public static string AsterTree { + get { + return ResourceManager.GetString("AsterTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to True unicellular extremophiles capable of living in the full spectrum of temperatures, chemical soups and atmospheres. They form a kaleidoscopic range of patterns and colours based on their method of metabolism. They derive energy from photosynthetic chemosynthetic or thermosynthetic processes. These are believed to be the precursors for many life forms, and are often found in conjunction with other species. Links between the biochemistry of bacterial colonies and neighbouring organisms are likely but as ye [rest of string was truncated]";. + /// + public static string Bacterial { + get { + return ResourceManager.GetString("Bacterial", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures are so called because of the vaguely brain-like growths on the ends of their branches. These resilient organic structures absorb minerals via their subsurface roots and energy via their outer skin.. + /// + public static string Brancae { + get { + return ResourceManager.GetString("Brancae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Photosynthetic organisms that have adapted to extreme conditions by reducing their surface area to volume ratio, thereby protecting more sensitive tissues from exposure.The outer layer is formed from specialised light-transmitting cells. These are filled with an insulating hydrophobic layer, which helps to maintain core temperature and liquid retention. Deep, extensive root structures hold the organisms in place, and facilitate the extraction of trace minerals. Some cactoida species feature explosive seed d [rest of string was truncated]";. + /// + public static string Cactoid { + get { + return ResourceManager.GetString("Cactoid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These calcium-carbonate structures are created by vast numbers of tiny polyp-like creatures.. + /// + public static string CalcitePlates { + get { + return ResourceManager.GetString("CalcitePlates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These robust seed pods are able to survive indefinitely in the vacuum of space.. + /// + public static string ChalicePod { + get { + return ResourceManager.GetString("ChalicePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extremophile organisms that have evolved to create hard shield structures, primarily to protect against stellar radiation. They also collect and condense traces of liquid material in the atmosphere, allowing the organisms to flourish in extremely arid environments. The shields are typically synthesised from surrounding inorganic material. which will frequently define their shape and colouration.. + /// + public static string Clypeus { + get { + return ResourceManager.GetString("Clypeus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organisms absorb energy through their distinctive collar.. + /// + public static string CollaredPod { + get { + return ResourceManager.GetString("CollaredPod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Highly specialised complex extremophiles that have developed protective and sturdy motile shell structures. These open and close based on the suitability of the current environmental conditions. The shells are an organic structure with an excreted inorganic insulated and sometimes reflective casing that help the organism maintain homeostasis. The internal organisms, which are remarkably tough in their own right, are only exposed for metabolic and reproductive purposes.. + /// + public static string Conchas { + get { + return ResourceManager.GetString("Conchas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures survive by absorbing elements from nova and supernova, with the dense outer layer protecting them from the severest radiation.. + /// + public static string Cone { + get { + return ResourceManager.GetString("Cone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Organisms found exclusively on extremely cold ice worlds in the vicinity of frozen lakes. The visible tips can be observed protruding from the ice, often near fissures where it is thinnest. The bulk of the organisms extend down through the ice into subsurface melt potentially for several kilometres. Electricae are superconductive in nature. utilising the thermal circulation of the surrounding fluid to drive an electrochemical process. This is probably why they are limited to planets with atmospheres dominat [rest of string was truncated]";. + /// + public static string Electricae { + get { + return ResourceManager.GetString("Electricae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Photosynthetic colony organisms found exclusively on ice worlds, where they have embraced the surrounding frozen material as a form of protection. As the fonticulus develop they melt ice from around them, absorbing the liquid through tiny cellular pores and passing it to the colony’s reproductive edge. Here the liquid is excreted and immediately refreezes, creating hard translucent exoskeletons that provide protection for the organisms. Frond structures create a wide flat space that expose internal photosyn [rest of string was truncated]";. + /// + public static string Fonticulus { + get { + return ResourceManager.GetString("Fonticulus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extremophile organisms located in regions with active fumaroles. Their metabolism is driven exclusively through chemosynthetic and thermosynthetic mechanisms based on nearby volcanic activity. Proximity to volcanic heat allows them to survive in environments where the ambient temperature is naturally too cold for them. They frequently incorporate minerals from the fumaroles’ ejecta, meaning they can appear inorganic at first glance and may sport exotic colours.. + /// + public static string Fumerolas { + get { + return ResourceManager.GetString("Fumerolas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Organisms that live deep inside a planetary substrate. They share similar morphology to fungi but are not saprophytic, instead their mycelial body drives its metabolism through chemosynthetic and thermosynthetic processes. These are facilitated by the substrate which also protects the organism from environmental extremes. The exposed aspects of the organisms are primarily involved in reproduction. This is frequently through spore ejection, but certain species also support gaseous exchange with the atmospher [rest of string was truncated]";. + /// + public static string Fungoids { + get { + return ResourceManager.GetString("Fungoids", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These crystalline structures are created by large colonies of microorganisms.. + /// + public static string GroundStructIce { + get { + return ResourceManager.GetString("GroundStructIce", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These seed pods are unusual in that they are covered in a fine layer of living tissue.. + /// + public static string GyrePod { + get { + return ResourceManager.GetString("GyrePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organisms are characterised by their long, slender limbs, which often terminate in a large seed pod.. + /// + public static string GyreTree { + get { + return ResourceManager.GetString("GyreTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These crystalline structures are created by microorganisms believed to be some of the oldest life forms in the galaxy.. + /// + public static string IceCrystals { + get { + return ResourceManager.GetString("IceCrystals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These crystalline structures are created by huge numbers of primordial microorganisms.. + /// + public static string MetallicCrystals { + get { + return ResourceManager.GetString("MetallicCrystals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These mineral structures are created by large colonies of ancient microorganisms.. + /// + public static string MineralSpheres { + get { + return ResourceManager.GetString("MineralSpheres", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A bell-shaped organism with distinctive linear patterns on its underside, which feeds off starlight converted into chemical energy.. + /// + public static string MolluscBell { + get { + return ResourceManager.GetString("MolluscBell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This organism is protected by a bulb-shaped husk, allowing it to survive for millennia in the vacuum of space.. + /// + public static string MolluscBulb { + get { + return ResourceManager.GetString("MolluscBulb", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A bullet-shaped orgamism that feeds off starlight converted into chemical energy.. + /// + public static string MolluscBullet { + get { + return ResourceManager.GetString("MolluscBullet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This organism is protected by a capsule-shaped husk, allowing it to survive for millennia in the vacuum of space.. + /// + public static string MolluscCapsule { + get { + return ResourceManager.GetString("MolluscCapsule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organisms are so called because of their spherical shell. Despite being animals, they generate chemical energy through a process similar to photosynthesis, using their tentacles to absorb starlight.. + /// + public static string MolluscGlobe { + get { + return ResourceManager.GetString("MolluscGlobe", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A gourd-shaped organism that feeds off starlight converted into chemical energy.. + /// + public static string MolluscGourd { + get { + return ResourceManager.GetString("MolluscGourd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This organism is protected by a parasol-shaped husk, allowing it to survive for millennia in the vacuum of space.. + /// + public static string MolluscParasol { + get { + return ResourceManager.GetString("MolluscParasol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This organism is protected by a reel-shaped husk, allowing it to survive for millennia in the vacuum of space.. + /// + public static string MolluscReel { + get { + return ResourceManager.GetString("MolluscReel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A squid-shaped organism with tentacles and an extended head, which feeds off starlight converted into chemical energy.. + /// + public static string MolluscSquid { + get { + return ResourceManager.GetString("MolluscSquid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A ring-shaped organism with a twin set of tentacles, which feeds off starlight converted into chemical energy.. + /// + public static string MolluscTorus { + get { + return ResourceManager.GetString("MolluscTorus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This organism is protected by a umbrella-shaped husk, allowing it to survive for millennia in the vacuum of space.. + /// + public static string MolluscUmbrella { + get { + return ResourceManager.GetString("MolluscUmbrella", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Slow-growing organisms that can be found exclusively on rocky areas of planets. They are defined by a symbiotic relationship that has evolved between two unicellular organisms. which are now inseparable. One cell type is solely responsible for energy production by either photosynthetic. chemosynthetic or thermosynthetic processes. The symbiotic cells harvest some of this energy, and in turn deposit a hard rock-like substance extracted from the local geology to create a rigid endoskeleton. This structure pro [rest of string was truncated]";. + /// + public static string Osseus { + get { + return ResourceManager.GetString("Osseus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These robust seed pods contain both seeds and spores.. + /// + public static string PedunclePod { + get { + return ResourceManager.GetString("PedunclePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures are able to survive and propagate in the vacuum of space.. + /// + public static string PeduncleTree { + get { + return ResourceManager.GetString("PeduncleTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These seed pods have a thick husk that protects the fleshy interior from the vacuum of space.. + /// + public static string QuadripartitePod { + get { + return ResourceManager.GetString("QuadripartitePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extremophiles that are found exclusively on planets wlth atmospheres dominated by sulphur dioxide. Using a combination of inorganic and hydrocarbon materials, they build a shielding bubble. This allows them to create an isolated biome with regulated temperature and chemical composition. Growth is a difficult and complex process that requires careful melting, regrowing and freezing of the external shell so that the internal organism can develop. This is a gradual process meaning that larger recepta are of sig [rest of string was truncated]";. + /// + public static string Recepta { + get { + return ResourceManager.GetString("Recepta", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The parent organism of these seed pods has not been identified, and it is possible that they are entirely self-contained.. + /// + public static string RhizomePod { + get { + return ResourceManager.GetString("RhizomePod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Robust woody plants with deep rooting structures to gather liquids and hold themselves in place where the ground may be unstable. They are photosynthetic organisms with specialised photoreceptors that work even in low light conditions. As such they are highly successful, and are widespread and diverse in nature. Their small leaf structures protect them against extremely low temperatures and liquid loss in higher temperatures.. + /// + public static string Shrubs { + get { + return ResourceManager.GetString("Shrubs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These dense crystalline structures are created by large colonies of ancient microorganisms.. + /// + public static string SilicateCrystals { + get { + return ResourceManager.GetString("SilicateCrystals", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Despite their name, these organic structures more closely resemble the shells of sea urchins. These organic structures can tolerate a wide range of temperatures and are able to absorb energy from nearby stars.. + /// + public static string Sphere { + get { + return ResourceManager.GetString("Sphere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These seed pods are colloquially known as space oysters due to the pearlescent object sometimes found at the centre of the pod.. + /// + public static string StolonPod { + get { + return ResourceManager.GetString("StolonPod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures are incredibly long lived, enduring for millennia in the vacuum of space.. + /// + public static string StolonTree { + get { + return ResourceManager.GetString("StolonTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Low-lying photosynthetic organisms that bond tightly to the surface of rocks. The body of the organism may be embedded in the rock subsurface to provide protection from the elements, leaving the tough photosynthetic proto-leaves exposed. Their simple proto-evolutionary nature means that they are a common sight on rocky worlds. Colouration is driven by a mixture of the mineral content of the attached rock and the absorption spectral of the nearby stellar body.. + /// + public static string Stratum { + get { + return ResourceManager.GetString("Stratum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string ThargoidBarnacle { + get { + return ResourceManager.GetString("ThargoidBarnacle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures are distinguished by their tubular shape and vivid colouration. These organic structures are merely the above-ground portion of a much larger subterranean organism.. + /// + public static string Tubers { + get { + return ResourceManager.GetString("Tubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Highly specialised organisms that can grow to extreme heights, which peak when in a mature state. The organisms’ height and ability to survive is largely constrained by gravity. The lack of any real atmospheric weather has not put evolutionaly pressure on the towers to be strong, so they form tall but thin structures which cannot be supported in high-gravity environments. The tower is formed from wrapped leaf-like structures, which create a regulated chimney void. This is used by the organism to create and [rest of string was truncated]";. + /// + public static string Tubus { + get { + return ResourceManager.GetString("Tubus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Robust photosynthetic plants similar in appearance to clump grasses. They have a shallow but complex root structure, which requires a solid surface to produce structural stability. Clumps may form through tillering or wider dispersal through a variety of seeding mechanisms. Some species have adapted cellular structures containing high sugar concentrations to protect against freezing damage.. + /// + public static string Tussocks { + get { + return ResourceManager.GetString("Tussocks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures take their name from a type of container dating from Earth’s Neolithic period.. + /// + public static string Vents { + get { + return ResourceManager.GetString("Vents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These organic structures, sometimes called barbed knots, are noted for periodically emitting tremendous bursts of heat and light.. + /// + public static string VoidHeart { + get { + return ResourceManager.GetString("VoidHeart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These seed pods are distinguished by their leathery exterior and colourful bioluminescence.. + /// + public static string VoidPod { + get { + return ResourceManager.GetString("VoidPod", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/OrganicGenusDesc.resx b/DataDefinitions/Properties/OrganicGenusDesc.resx new file mode 100644 index 0000000000..1187dec04d --- /dev/null +++ b/DataDefinitions/Properties/OrganicGenusDesc.resx @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Extremely hardy photosynthetic organisms that thrive in arid environments. Thick, waxy leaf structures protect them from extreme surroundings. When gaseous exchange becomes unfavourable. the leaves can completely shut off the organism from the atmosphere causing a state of hibernation. The pointed leaves create precipitation slopes, which draw liquids to the heart of the organism. Here they are absorbed through a series of specialised cells, and stored in the root structure until needed. + + + These robust seed pods will drift through space for thousands of years before finding a suitable place to release their seeds and spores. + + + These organic structures are not trees in the traditional sense, but long-lived and extremely hardy space-based organisms. + + + True unicellular extremophiles capable of living in the full spectrum of temperatures, chemical soups and atmospheres. They form a kaleidoscopic range of patterns and colours based on their method of metabolism. They derive energy from photosynthetic chemosynthetic or thermosynthetic processes. These are believed to be the precursors for many life forms, and are often found in conjunction with other species. Links between the biochemistry of bacterial colonies and neighbouring organisms are likely but as yet unproven. + + + These organic structures are so called because of the vaguely brain-like growths on the ends of their branches. These resilient organic structures absorb minerals via their subsurface roots and energy via their outer skin. + + + Photosynthetic organisms that have adapted to extreme conditions by reducing their surface area to volume ratio, thereby protecting more sensitive tissues from exposure.The outer layer is formed from specialised light-transmitting cells. These are filled with an insulating hydrophobic layer, which helps to maintain core temperature and liquid retention. Deep, extensive root structures hold the organisms in place, and facilitate the extraction of trace minerals. Some cactoida species feature explosive seed distribution as a method of reproduction. + + + These calcium-carbonate structures are created by vast numbers of tiny polyp-like creatures. + + + These robust seed pods are able to survive indefinitely in the vacuum of space. + + + Extremophile organisms that have evolved to create hard shield structures, primarily to protect against stellar radiation. They also collect and condense traces of liquid material in the atmosphere, allowing the organisms to flourish in extremely arid environments. The shields are typically synthesised from surrounding inorganic material. which will frequently define their shape and colouration. + + + These organisms absorb energy through their distinctive collar. + + + Highly specialised complex extremophiles that have developed protective and sturdy motile shell structures. These open and close based on the suitability of the current environmental conditions. The shells are an organic structure with an excreted inorganic insulated and sometimes reflective casing that help the organism maintain homeostasis. The internal organisms, which are remarkably tough in their own right, are only exposed for metabolic and reproductive purposes. + + + These organic structures survive by absorbing elements from nova and supernova, with the dense outer layer protecting them from the severest radiation. + + + Organisms found exclusively on extremely cold ice worlds in the vicinity of frozen lakes. The visible tips can be observed protruding from the ice, often near fissures where it is thinnest. The bulk of the organisms extend down through the ice into subsurface melt potentially for several kilometres. Electricae are superconductive in nature. utilising the thermal circulation of the surrounding fluid to drive an electrochemical process. This is probably why they are limited to planets with atmospheres dominated by noble gases. The surface structure exists to provide a connection to the atmosphere, which in turn creates a point of electrical potential difference. A by-product of this is the bioluminescent display that runs through the organism. Although never witnessed, reproduction presumably occurs below the surface by some unidentified process. + + + Photosynthetic colony organisms found exclusively on ice worlds, where they have embraced the surrounding frozen material as a form of protection. As the fonticulus develop they melt ice from around them, absorbing the liquid through tiny cellular pores and passing it to the colony’s reproductive edge. Here the liquid is excreted and immediately refreezes, creating hard translucent exoskeletons that provide protection for the organisms. Frond structures create a wide flat space that expose internal photosynthetic cells to as much light as possible. Reproduction appears to occur by colony division, most likely when a shard of the structure collapses under its own weight and the smaller shard creates a new colony. + + + Extremophile organisms located in regions with active fumaroles. Their metabolism is driven exclusively through chemosynthetic and thermosynthetic mechanisms based on nearby volcanic activity. Proximity to volcanic heat allows them to survive in environments where the ambient temperature is naturally too cold for them. They frequently incorporate minerals from the fumaroles’ ejecta, meaning they can appear inorganic at first glance and may sport exotic colours. + + + Organisms that live deep inside a planetary substrate. They share similar morphology to fungi but are not saprophytic, instead their mycelial body drives its metabolism through chemosynthetic and thermosynthetic processes. These are facilitated by the substrate which also protects the organism from environmental extremes. The exposed aspects of the organisms are primarily involved in reproduction. This is frequently through spore ejection, but certain species also support gaseous exchange with the atmosphere. Some fungoicla exhibit bioluminescent behaviours as part of a metabolic process involved in the breakdown of accumulated toxins. + + + These crystalline structures are created by large colonies of microorganisms. + + + These seed pods are unusual in that they are covered in a fine layer of living tissue. + + + These organisms are characterised by their long, slender limbs, which often terminate in a large seed pod. + + + These crystalline structures are created by microorganisms believed to be some of the oldest life forms in the galaxy. + + + These crystalline structures are created by huge numbers of primordial microorganisms. + + + These mineral structures are created by large colonies of ancient microorganisms. + + + A bell-shaped organism with distinctive linear patterns on its underside, which feeds off starlight converted into chemical energy. + + + This organism is protected by a bulb-shaped husk, allowing it to survive for millennia in the vacuum of space. + + + A bullet-shaped orgamism that feeds off starlight converted into chemical energy. + + + This organism is protected by a capsule-shaped husk, allowing it to survive for millennia in the vacuum of space. + + + These organisms are so called because of their spherical shell. Despite being animals, they generate chemical energy through a process similar to photosynthesis, using their tentacles to absorb starlight. + + + A gourd-shaped organism that feeds off starlight converted into chemical energy. + + + This organism is protected by a parasol-shaped husk, allowing it to survive for millennia in the vacuum of space. + + + This organism is protected by a reel-shaped husk, allowing it to survive for millennia in the vacuum of space. + + + A squid-shaped organism with tentacles and an extended head, which feeds off starlight converted into chemical energy. + + + A ring-shaped organism with a twin set of tentacles, which feeds off starlight converted into chemical energy. + + + This organism is protected by a umbrella-shaped husk, allowing it to survive for millennia in the vacuum of space. + + + Slow-growing organisms that can be found exclusively on rocky areas of planets. They are defined by a symbiotic relationship that has evolved between two unicellular organisms. which are now inseparable. One cell type is solely responsible for energy production by either photosynthetic. chemosynthetic or thermosynthetic processes. The symbiotic cells harvest some of this energy, and in turn deposit a hard rock-like substance extracted from the local geology to create a rigid endoskeleton. This structure provides a solid base for the organism to exist. It features complex folds that help increase available surface area for metabolic interactions. Osseus have been observed to create callus-like cell coverings, and withdraw themselves into the endoskeleton for protection. + + + These robust seed pods contain both seeds and spores. + + + These organic structures are able to survive and propagate in the vacuum of space. + + + These seed pods have a thick husk that protects the fleshy interior from the vacuum of space. + + + Extremophiles that are found exclusively on planets wlth atmospheres dominated by sulphur dioxide. Using a combination of inorganic and hydrocarbon materials, they build a shielding bubble. This allows them to create an isolated biome with regulated temperature and chemical composition. Growth is a difficult and complex process that requires careful melting, regrowing and freezing of the external shell so that the internal organism can develop. This is a gradual process meaning that larger recepta are of significant age. Reproduction is also similarly complex and revolves around a budding process, which creates a smaller version of the adult. Once detached, it can roll under the action of gravity and air currents before coming to rest, where it will deploy a holdfast marking its final position. + + + The parent organism of these seed pods has not been identified, and it is possible that they are entirely self-contained. + + + Robust woody plants with deep rooting structures to gather liquids and hold themselves in place where the ground may be unstable. They are photosynthetic organisms with specialised photoreceptors that work even in low light conditions. As such they are highly successful, and are widespread and diverse in nature. Their small leaf structures protect them against extremely low temperatures and liquid loss in higher temperatures. + + + These dense crystalline structures are created by large colonies of ancient microorganisms. + + + Despite their name, these organic structures more closely resemble the shells of sea urchins. These organic structures can tolerate a wide range of temperatures and are able to absorb energy from nearby stars. + + + These seed pods are colloquially known as space oysters due to the pearlescent object sometimes found at the centre of the pod. + + + These organic structures are incredibly long lived, enduring for millennia in the vacuum of space. + + + Low-lying photosynthetic organisms that bond tightly to the surface of rocks. The body of the organism may be embedded in the rock subsurface to provide protection from the elements, leaving the tough photosynthetic proto-leaves exposed. Their simple proto-evolutionary nature means that they are a common sight on rocky worlds. Colouration is driven by a mixture of the mineral content of the attached rock and the absorption spectral of the nearby stellar body. + + + + + + These organic structures are distinguished by their tubular shape and vivid colouration. These organic structures are merely the above-ground portion of a much larger subterranean organism. + + + Highly specialised organisms that can grow to extreme heights, which peak when in a mature state. The organisms’ height and ability to survive is largely constrained by gravity. The lack of any real atmospheric weather has not put evolutionaly pressure on the towers to be strong, so they form tall but thin structures which cannot be supported in high-gravity environments. The tower is formed from wrapped leaf-like structures, which create a regulated chimney void. This is used by the organism to create and maintain an artificial internal atmosphere, where discrete chemical processes can be undertaken along the length of the tower. Waste gases and other material may he released from the top of the tower. Some species feature external rings that can be used to gauge an organism’s age. + + + Robust photosynthetic plants similar in appearance to clump grasses. They have a shallow but complex root structure, which requires a solid surface to produce structural stability. Clumps may form through tillering or wider dispersal through a variety of seeding mechanisms. Some species have adapted cellular structures containing high sugar concentrations to protect against freezing damage. + + + These organic structures take their name from a type of container dating from Earth’s Neolithic period. + + + These organic structures, sometimes called barbed knots, are noted for periodically emitting tremendous bursts of heat and light. + + + These seed pods are distinguished by their leathery exterior and colourful bioluminescence. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/OrganicSpecies.Designer.cs b/DataDefinitions/Properties/OrganicSpecies.Designer.cs new file mode 100644 index 0000000000..2751807487 --- /dev/null +++ b/DataDefinitions/Properties/OrganicSpecies.Designer.cs @@ -0,0 +1,2250 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class OrganicSpecies { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal OrganicSpecies() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.OrganicSpecies", typeof(OrganicSpecies).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Arcus. + /// + public static string Aleoids_01 { + get { + return ResourceManager.GetString("Aleoids_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Coronamus. + /// + public static string Aleoids_02 { + get { + return ResourceManager.GetString("Aleoids_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spica. + /// + public static string Aleoids_03 { + get { + return ResourceManager.GetString("Aleoids_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laminiae. + /// + public static string Aleoids_04 { + get { + return ResourceManager.GetString("Aleoids_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gravis. + /// + public static string Aleoids_05 { + get { + return ResourceManager.GetString("Aleoids_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aurasus. + /// + public static string Bacterial_01 { + get { + return ResourceManager.GetString("Bacterial_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nebulus. + /// + public static string Bacterial_02 { + get { + return ResourceManager.GetString("Bacterial_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scopulum. + /// + public static string Bacterial_03 { + get { + return ResourceManager.GetString("Bacterial_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Acies. + /// + public static string Bacterial_04 { + get { + return ResourceManager.GetString("Bacterial_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vesicula. + /// + public static string Bacterial_05 { + get { + return ResourceManager.GetString("Bacterial_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alcyoneum. + /// + public static string Bacterial_06 { + get { + return ResourceManager.GetString("Bacterial_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tela. + /// + public static string Bacterial_07 { + get { + return ResourceManager.GetString("Bacterial_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Informem. + /// + public static string Bacterial_08 { + get { + return ResourceManager.GetString("Bacterial_08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Volu. + /// + public static string Bacterial_09 { + get { + return ResourceManager.GetString("Bacterial_09", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullaris. + /// + public static string Bacterial_10 { + get { + return ResourceManager.GetString("Bacterial_10", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Omentum. + /// + public static string Bacterial_11 { + get { + return ResourceManager.GetString("Bacterial_11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cerbrus. + /// + public static string Bacterial_12 { + get { + return ResourceManager.GetString("Bacterial_12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verrata. + /// + public static string Bacterial_13 { + get { + return ResourceManager.GetString("Bacterial_13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cortexum. + /// + public static string Cactoid_01 { + get { + return ResourceManager.GetString("Cactoid_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lapis. + /// + public static string Cactoid_02 { + get { + return ResourceManager.GetString("Cactoid_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vermis. + /// + public static string Cactoid_03 { + get { + return ResourceManager.GetString("Cactoid_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pullulanta. + /// + public static string Cactoid_04 { + get { + return ResourceManager.GetString("Cactoid_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peperatis. + /// + public static string Cactoid_05 { + get { + return ResourceManager.GetString("Cactoid_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lacrimam. + /// + public static string Clypeus_01 { + get { + return ResourceManager.GetString("Clypeus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Margaritus. + /// + public static string Clypeus_02 { + get { + return ResourceManager.GetString("Clypeus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Speculumi. + /// + public static string Clypeus_03 { + get { + return ResourceManager.GetString("Clypeus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Renibus. + /// + public static string Conchas_01 { + get { + return ResourceManager.GetString("Conchas_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aureolas. + /// + public static string Conchas_02 { + get { + return ResourceManager.GetString("Conchas_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Labiata. + /// + public static string Conchas_03 { + get { + return ResourceManager.GetString("Conchas_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biconcavis. + /// + public static string Conchas_04 { + get { + return ResourceManager.GetString("Conchas_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bark Mounds. + /// + public static string Cone { + get { + return ResourceManager.GetString("Cone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pluma. + /// + public static string Electricae_01 { + get { + return ResourceManager.GetString("Electricae_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Radialem. + /// + public static string Electricae_02 { + get { + return ResourceManager.GetString("Electricae_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Segmentatus. + /// + public static string Fonticulus_01 { + get { + return ResourceManager.GetString("Fonticulus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Campestris. + /// + public static string Fonticulus_02 { + get { + return ResourceManager.GetString("Fonticulus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upupam. + /// + public static string Fonticulus_03 { + get { + return ResourceManager.GetString("Fonticulus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lapida. + /// + public static string Fonticulus_04 { + get { + return ResourceManager.GetString("Fonticulus_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fluctus. + /// + public static string Fonticulus_05 { + get { + return ResourceManager.GetString("Fonticulus_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Digitos. + /// + public static string Fonticulus_06 { + get { + return ResourceManager.GetString("Fonticulus_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Carbosis. + /// + public static string Fumerolas_01 { + get { + return ResourceManager.GetString("Fumerolas_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extremus. + /// + public static string Fumerolas_02 { + get { + return ResourceManager.GetString("Fumerolas_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nitris. + /// + public static string Fumerolas_03 { + get { + return ResourceManager.GetString("Fumerolas_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquatis. + /// + public static string Fumerolas_04 { + get { + return ResourceManager.GetString("Fumerolas_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setisis. + /// + public static string Fungoids_01 { + get { + return ResourceManager.GetString("Fungoids_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stabitis. + /// + public static string Fungoids_02 { + get { + return ResourceManager.GetString("Fungoids_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullarum. + /// + public static string Fungoids_03 { + get { + return ResourceManager.GetString("Fungoids_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gelata. + /// + public static string Fungoids_04 { + get { + return ResourceManager.GetString("Fungoids_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crystalline Shards. + /// + public static string Ground_Struct_Ice { + get { + return ResourceManager.GetString("Ground_Struct_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry { + get { + return ResourceManager.GetString("L_Cry_IcCry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry1 { + get { + return ResourceManager.GetString("L_Cry_IcCry1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry2 { + get { + return ResourceManager.GetString("L_Cry_IcCry2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry3 { + get { + return ResourceManager.GetString("L_Cry_IcCry3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry4 { + get { + return ResourceManager.GetString("L_Cry_IcCry4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry5 { + get { + return ResourceManager.GetString("L_Cry_IcCry5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry6 { + get { + return ResourceManager.GetString("L_Cry_IcCry6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ice. + /// + public static string L_Cry_IcCry7 { + get { + return ResourceManager.GetString("L_Cry_IcCry7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metallic. + /// + public static string L_Cry_MetCry { + get { + return ResourceManager.GetString("L_Cry_MetCry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metallic. + /// + public static string L_Cry_MetCry1 { + get { + return ResourceManager.GetString("L_Cry_MetCry1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metallic. + /// + public static string L_Cry_MetCry2 { + get { + return ResourceManager.GetString("L_Cry_MetCry2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metallic. + /// + public static string L_Cry_MetCry3 { + get { + return ResourceManager.GetString("L_Cry_MetCry3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry { + get { + return ResourceManager.GetString("L_Cry_QtzCry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry1 { + get { + return ResourceManager.GetString("L_Cry_QtzCry1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry2 { + get { + return ResourceManager.GetString("L_Cry_QtzCry2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry3 { + get { + return ResourceManager.GetString("L_Cry_QtzCry3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry4 { + get { + return ResourceManager.GetString("L_Cry_QtzCry4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry5 { + get { + return ResourceManager.GetString("L_Cry_QtzCry5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry6 { + get { + return ResourceManager.GetString("L_Cry_QtzCry6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Silicate. + /// + public static string L_Cry_QtzCry7 { + get { + return ResourceManager.GetString("L_Cry_QtzCry7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parasol. + /// + public static string L_Org_Moll03_V1 { + get { + return ResourceManager.GetString("L_Org_Moll03_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parasol. + /// + public static string L_Org_Moll03_V11 { + get { + return ResourceManager.GetString("L_Org_Moll03_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parasol. + /// + public static string L_Org_Moll03_V12 { + get { + return ResourceManager.GetString("L_Org_Moll03_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bulb. + /// + public static string L_Org_Moll03_V2 { + get { + return ResourceManager.GetString("L_Org_Moll03_V2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bulb. + /// + public static string L_Org_Moll03_V21 { + get { + return ResourceManager.GetString("L_Org_Moll03_V21", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bulb. + /// + public static string L_Org_Moll03_V22 { + get { + return ResourceManager.GetString("L_Org_Moll03_V22", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Umbrella. + /// + public static string L_Org_Moll03_V3 { + get { + return ResourceManager.GetString("L_Org_Moll03_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Umbrella. + /// + public static string L_Org_Moll03_V31 { + get { + return ResourceManager.GetString("L_Org_Moll03_V31", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Umbrella. + /// + public static string L_Org_Moll03_V32 { + get { + return ResourceManager.GetString("L_Org_Moll03_V32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Capsule. + /// + public static string L_Org_Moll03_V4 { + get { + return ResourceManager.GetString("L_Org_Moll03_V4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Capsule. + /// + public static string L_Org_Moll03_V41 { + get { + return ResourceManager.GetString("L_Org_Moll03_V41", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Capsule. + /// + public static string L_Org_Moll03_V42 { + get { + return ResourceManager.GetString("L_Org_Moll03_V42", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reel. + /// + public static string L_Org_Moll03_V6 { + get { + return ResourceManager.GetString("L_Org_Moll03_V6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reel. + /// + public static string L_Org_Moll03_V61 { + get { + return ResourceManager.GetString("L_Org_Moll03_V61", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reel. + /// + public static string L_Org_Moll03_V62 { + get { + return ResourceManager.GetString("L_Org_Moll03_V62", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calcite. + /// + public static string L_Org_PltFun_V1 { + get { + return ResourceManager.GetString("L_Org_PltFun_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calcite. + /// + public static string L_Org_PltFun_V11 { + get { + return ResourceManager.GetString("L_Org_PltFun_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calcite. + /// + public static string L_Org_PltFun_V12 { + get { + return ResourceManager.GetString("L_Org_PltFun_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calcite. + /// + public static string L_Org_PltFun_V13 { + get { + return ResourceManager.GetString("L_Org_PltFun_V13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string L_Seed_Pln01_V1 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string L_Seed_Pln01_V11 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string L_Seed_Pln01_V12 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string L_Seed_Pln01_V13 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string L_Seed_Pln01_V14 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V14", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string L_Seed_Pln02_V3 { + get { + return ResourceManager.GetString("L_Seed_Pln02_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string L_Seed_Pln02_V31 { + get { + return ResourceManager.GetString("L_Seed_Pln02_V31", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string L_Seed_Pln02_V32 { + get { + return ResourceManager.GetString("L_Seed_Pln02_V32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stolon. + /// + public static string L_Seed_SdRt02 { + get { + return ResourceManager.GetString("L_Seed_SdRt02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fractus. + /// + public static string Osseus_01 { + get { + return ResourceManager.GetString("Osseus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discus. + /// + public static string Osseus_02 { + get { + return ResourceManager.GetString("Osseus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spiralis. + /// + public static string Osseus_03 { + get { + return ResourceManager.GetString("Osseus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pumice. + /// + public static string Osseus_04 { + get { + return ResourceManager.GetString("Osseus_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cornibus. + /// + public static string Osseus_05 { + get { + return ResourceManager.GetString("Osseus_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pellebantus. + /// + public static string Osseus_06 { + get { + return ResourceManager.GetString("Osseus_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Umbrux. + /// + public static string Recepta_01 { + get { + return ResourceManager.GetString("Recepta_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deltahedronix. + /// + public static string Recepta_02 { + get { + return ResourceManager.GetString("Recepta_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conditivus. + /// + public static string Recepta_03 { + get { + return ResourceManager.GetString("Recepta_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string S_Seed_SdTp01 { + get { + return ResourceManager.GetString("S_Seed_SdTp01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string S_Seed_SdTp011 { + get { + return ResourceManager.GetString("S_Seed_SdTp011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string S_Seed_SdTp012 { + get { + return ResourceManager.GetString("S_Seed_SdTp012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string S_Seed_SdTp013 { + get { + return ResourceManager.GetString("S_Seed_SdTp013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peduncle. + /// + public static string S_Seed_SdTp014 { + get { + return ResourceManager.GetString("S_Seed_SdTp014", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string S_Seed_SdTp02 { + get { + return ResourceManager.GetString("S_Seed_SdTp02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string S_Seed_SdTp021 { + get { + return ResourceManager.GetString("S_Seed_SdTp021", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string S_Seed_SdTp022 { + get { + return ResourceManager.GetString("S_Seed_SdTp022", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string S_Seed_SdTp023 { + get { + return ResourceManager.GetString("S_Seed_SdTp023", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aster. + /// + public static string S_Seed_SdTp024 { + get { + return ResourceManager.GetString("S_Seed_SdTp024", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Octahedral. + /// + public static string S_Seed_SdTp03 { + get { + return ResourceManager.GetString("S_Seed_SdTp03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Octahedral. + /// + public static string S_Seed_SdTp031 { + get { + return ResourceManager.GetString("S_Seed_SdTp031", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Octahedral. + /// + public static string S_Seed_SdTp032 { + get { + return ResourceManager.GetString("S_Seed_SdTp032", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Octahedral. + /// + public static string S_Seed_SdTp033 { + get { + return ResourceManager.GetString("S_Seed_SdTp033", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Octahedral. + /// + public static string S_Seed_SdTp034 { + get { + return ResourceManager.GetString("S_Seed_SdTp034", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collared. + /// + public static string S_Seed_SdTp04 { + get { + return ResourceManager.GetString("S_Seed_SdTp04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collared. + /// + public static string S_Seed_SdTp041 { + get { + return ResourceManager.GetString("S_Seed_SdTp041", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collared. + /// + public static string S_Seed_SdTp042 { + get { + return ResourceManager.GetString("S_Seed_SdTp042", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collared. + /// + public static string S_Seed_SdTp043 { + get { + return ResourceManager.GetString("S_Seed_SdTp043", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chalice. + /// + public static string S_Seed_SdTp05 { + get { + return ResourceManager.GetString("S_Seed_SdTp05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chalice. + /// + public static string S_Seed_SdTp051 { + get { + return ResourceManager.GetString("S_Seed_SdTp051", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chalice. + /// + public static string S_Seed_SdTp052 { + get { + return ResourceManager.GetString("S_Seed_SdTp052", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chalice. + /// + public static string S_Seed_SdTp053 { + get { + return ResourceManager.GetString("S_Seed_SdTp053", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chalice. + /// + public static string S_Seed_SdTp054 { + get { + return ResourceManager.GetString("S_Seed_SdTp054", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gyre. + /// + public static string S_Seed_SdTp06 { + get { + return ResourceManager.GetString("S_Seed_SdTp06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gyre. + /// + public static string S_Seed_SdTp061 { + get { + return ResourceManager.GetString("S_Seed_SdTp061", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rhizome. + /// + public static string S_Seed_SdTp07 { + get { + return ResourceManager.GetString("S_Seed_SdTp07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rhizome. + /// + public static string S_Seed_SdTp071 { + get { + return ResourceManager.GetString("S_Seed_SdTp071", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rhizome. + /// + public static string S_Seed_SdTp072 { + get { + return ResourceManager.GetString("S_Seed_SdTp072", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rhizome. + /// + public static string S_Seed_SdTp073 { + get { + return ResourceManager.GetString("S_Seed_SdTp073", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rhizome. + /// + public static string S_Seed_SdTp074 { + get { + return ResourceManager.GetString("S_Seed_SdTp074", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quadripartite. + /// + public static string S_Seed_SdTp08 { + get { + return ResourceManager.GetString("S_Seed_SdTp08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quadripartite. + /// + public static string S_Seed_SdTp081 { + get { + return ResourceManager.GetString("S_Seed_SdTp081", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quadripartite. + /// + public static string S_Seed_SdTp082 { + get { + return ResourceManager.GetString("S_Seed_SdTp082", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quadripartite. + /// + public static string S_Seed_SdTp083 { + get { + return ResourceManager.GetString("S_Seed_SdTp083", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Seed { + get { + return ResourceManager.GetString("Seed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedABCD_01 { + get { + return ResourceManager.GetString("SeedABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedABCD_02 { + get { + return ResourceManager.GetString("SeedABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedABCD_03 { + get { + return ResourceManager.GetString("SeedABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH { + get { + return ResourceManager.GetString("SeedEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH_01 { + get { + return ResourceManager.GetString("SeedEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH_02 { + get { + return ResourceManager.GetString("SeedEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH_03 { + get { + return ResourceManager.GetString("SeedEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flabellum. + /// + public static string Shrubs_01 { + get { + return ResourceManager.GetString("Shrubs_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Acus. + /// + public static string Shrubs_02 { + get { + return ResourceManager.GetString("Shrubs_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metallicum. + /// + public static string Shrubs_03 { + get { + return ResourceManager.GetString("Shrubs_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flammasis. + /// + public static string Shrubs_04 { + get { + return ResourceManager.GetString("Shrubs_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fera. + /// + public static string Shrubs_05 { + get { + return ResourceManager.GetString("Shrubs_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sponsae. + /// + public static string Shrubs_06 { + get { + return ResourceManager.GetString("Shrubs_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collum. + /// + public static string Shrubs_07 { + get { + return ResourceManager.GetString("Shrubs_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V1 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V11 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V12 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V13 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V14 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V14", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V15 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V15", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gourd. + /// + public static string Small_Org_Moll01_V16 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V16", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Torus. + /// + public static string Small_Org_Moll01_V2 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Torus. + /// + public static string Small_Org_Moll01_V21 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V21", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Torus. + /// + public static string Small_Org_Moll01_V22 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V22", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Torus. + /// + public static string Small_Org_Moll01_V23 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V23", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Torus. + /// + public static string Small_Org_Moll01_V24 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V24", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squid. + /// + public static string Small_Org_Moll01_V3 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squid. + /// + public static string Small_Org_Moll01_V31 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V31", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squid. + /// + public static string Small_Org_Moll01_V32 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squid. + /// + public static string Small_Org_Moll01_V33 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V33", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squid. + /// + public static string Small_Org_Moll01_V34 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V34", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullet. + /// + public static string Small_Org_Moll01_V4 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullet. + /// + public static string Small_Org_Moll01_V41 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V41", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullet. + /// + public static string Small_Org_Moll01_V42 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V42", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullet. + /// + public static string Small_Org_Moll01_V43 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V43", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bullet. + /// + public static string Small_Org_Moll01_V44 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V44", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V5 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V51 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V51", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V52 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V52", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V53 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V53", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V54 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V54", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V55 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V55", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Globe. + /// + public static string Small_Org_Moll01_V56 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V56", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bell. + /// + public static string Small_Org_Moll01_V6 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bell. + /// + public static string Small_Org_Moll01_V61 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V61", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bell. + /// + public static string Small_Org_Moll01_V62 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V62", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bell. + /// + public static string Small_Org_Moll01_V63 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V63", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bell. + /// + public static string Small_Org_Moll01_V64 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V64", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + public static string Sphere { + get { + return ResourceManager.GetString("Sphere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Croceum. + /// + public static string SphereABCD_01 { + get { + return ResourceManager.GetString("SphereABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Puniceum. + /// + public static string SphereABCD_02 { + get { + return ResourceManager.GetString("SphereABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + public static string SphereABCD_03 { + get { + return ResourceManager.GetString("SphereABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum Bioluminescent. + /// + public static string SphereEFGH { + get { + return ResourceManager.GetString("SphereEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum Bioluminescent. + /// + public static string SphereEFGH_01 { + get { + return ResourceManager.GetString("SphereEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum Bioluminescent. + /// + public static string SphereEFGH_02 { + get { + return ResourceManager.GetString("SphereEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum Bioluminescent. + /// + public static string SphereEFGH_03 { + get { + return ResourceManager.GetString("SphereEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mineral. + /// + public static string SPOI { + get { + return ResourceManager.GetString("SPOI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mineral. + /// + public static string SPOI_Ball { + get { + return ResourceManager.GetString("SPOI_Ball", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stolon. + /// + public static string SPOI_Root { + get { + return ResourceManager.GetString("SPOI_Root", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gyre. + /// + public static string SPOI_SeedPolyp01 { + get { + return ResourceManager.GetString("SPOI_SeedPolyp01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gyre. + /// + public static string SPOI_SeedPolyp01_V1 { + get { + return ResourceManager.GetString("SPOI_SeedPolyp01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Void. + /// + public static string SPOI_SeedWeed01 { + get { + return ResourceManager.GetString("SPOI_SeedWeed01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Excutitus. + /// + public static string Stratum_01 { + get { + return ResourceManager.GetString("Stratum_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paleas. + /// + public static string Stratum_02 { + get { + return ResourceManager.GetString("Stratum_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laminamus. + /// + public static string Stratum_03 { + get { + return ResourceManager.GetString("Stratum_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Araneamus. + /// + public static string Stratum_04 { + get { + return ResourceManager.GetString("Stratum_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Limaxus. + /// + public static string Stratum_05 { + get { + return ResourceManager.GetString("Stratum_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cucumisis. + /// + public static string Stratum_06 { + get { + return ResourceManager.GetString("Stratum_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tectonicas. + /// + public static string Stratum_07 { + get { + return ResourceManager.GetString("Stratum_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Frigus. + /// + public static string Stratum_08 { + get { + return ResourceManager.GetString("Stratum_08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Barnacle. + /// + public static string Thargoid_Barnacle { + get { + return ResourceManager.GetString("Thargoid_Barnacle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Barnacle. + /// + public static string Thargoid_Barnacle1 { + get { + return ResourceManager.GetString("Thargoid_Barnacle1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Barnacle. + /// + public static string Thargoid_Barnacle2 { + get { + return ResourceManager.GetString("Thargoid_Barnacle2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string Tube { + get { + return ResourceManager.GetString("Tube", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeABCD_01 { + get { + return ResourceManager.GetString("TubeABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeABCD_02 { + get { + return ResourceManager.GetString("TubeABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeABCD_03 { + get { + return ResourceManager.GetString("TubeABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeEFGH { + get { + return ResourceManager.GetString("TubeEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeEFGH_01 { + get { + return ResourceManager.GetString("TubeEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeEFGH_02 { + get { + return ResourceManager.GetString("TubeEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sinuous. + /// + public static string TubeEFGH_03 { + get { + return ResourceManager.GetString("TubeEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conifer. + /// + public static string Tubus_01 { + get { + return ResourceManager.GetString("Tubus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sororibus. + /// + public static string Tubus_02 { + get { + return ResourceManager.GetString("Tubus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cavas. + /// + public static string Tubus_03 { + get { + return ResourceManager.GetString("Tubus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rosarium. + /// + public static string Tubus_04 { + get { + return ResourceManager.GetString("Tubus_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compagibus. + /// + public static string Tubus_05 { + get { + return ResourceManager.GetString("Tubus_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pennata. + /// + public static string Tussocks_01 { + get { + return ResourceManager.GetString("Tussocks_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ventusa. + /// + public static string Tussocks_02 { + get { + return ResourceManager.GetString("Tussocks_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignis. + /// + public static string Tussocks_03 { + get { + return ResourceManager.GetString("Tussocks_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cultro. + /// + public static string Tussocks_04 { + get { + return ResourceManager.GetString("Tussocks_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Catena. + /// + public static string Tussocks_05 { + get { + return ResourceManager.GetString("Tussocks_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pennatis. + /// + public static string Tussocks_06 { + get { + return ResourceManager.GetString("Tussocks_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Serrati. + /// + public static string Tussocks_07 { + get { + return ResourceManager.GetString("Tussocks_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albata. + /// + public static string Tussocks_08 { + get { + return ResourceManager.GetString("Tussocks_08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Propagito. + /// + public static string Tussocks_09 { + get { + return ResourceManager.GetString("Tussocks_09", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Divisa. + /// + public static string Tussocks_10 { + get { + return ResourceManager.GetString("Tussocks_10", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caputus. + /// + public static string Tussocks_11 { + get { + return ResourceManager.GetString("Tussocks_11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Triticum. + /// + public static string Tussocks_12 { + get { + return ResourceManager.GetString("Tussocks_12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stigmasis. + /// + public static string Tussocks_13 { + get { + return ResourceManager.GetString("Tussocks_13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Virgam. + /// + public static string Tussocks_14 { + get { + return ResourceManager.GetString("Tussocks_14", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Capillum. + /// + public static string Tussocks_15 { + get { + return ResourceManager.GetString("Tussocks_15", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plant. + /// + public static string Vents { + get { + return ResourceManager.GetString("Vents", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/OrganicSpecies.resx b/DataDefinitions/Properties/OrganicSpecies.resx new file mode 100644 index 0000000000..131e97a453 --- /dev/null +++ b/DataDefinitions/Properties/OrganicSpecies.resx @@ -0,0 +1,849 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Arcus + + + Coronamus + + + Spica + + + Laminiae + + + Gravis + + + Aurasus + + + Nebulus + + + Scopulum + + + Acies + + + Vesicula + + + Alcyoneum + + + Tela + + + Informem + + + Volu + + + Bullaris + + + Omentum + + + Cerbrus + + + Verrata + + + Cortexum + + + Lapis + + + Vermis + + + Pullulanta + + + Peperatis + + + Lacrimam + + + Margaritus + + + Speculumi + + + Renibus + + + Aureolas + + + Labiata + + + Biconcavis + + + Bark Mounds + + + Pluma + + + Radialem + + + Segmentatus + + + Campestris + + + Upupam + + + Lapida + + + Fluctus + + + Digitos + + + Carbosis + + + Extremus + + + Nitris + + + Aquatis + + + Setisis + + + Stabitis + + + Bullarum + + + Gelata + + + Crystalline Shards + + + Ice + + + Ice + + + Ice + + + Ice + + + Ice + + + Ice + + + Ice + + + Ice + + + Metallic + + + Metallic + + + Metallic + + + Metallic + + + Silicate + + + Silicate + + + Silicate + + + Silicate + + + Silicate + + + Silicate + + + Silicate + + + Silicate + + + Parasol + + + Parasol + + + Parasol + + + Bulb + + + Bulb + + + Bulb + + + Umbrella + + + Umbrella + + + Umbrella + + + Capsule + + + Capsule + + + Capsule + + + Reel + + + Reel + + + Reel + + + Calcite + + + Calcite + + + Calcite + + + Calcite + + + Peduncle + + + Peduncle + + + Peduncle + + + Peduncle + + + Peduncle + + + Aster + + + Aster + + + Aster + + + Stolon + + + Fractus + + + Discus + + + Spiralis + + + Pumice + + + Cornibus + + + Pellebantus + + + Umbrux + + + Deltahedronix + + + Conditivus + + + + + + + + + + + + + + + + + + + + + + + + + + + Flabellum + + + Acus + + + Metallicum + + + Flammasis + + + Fera + + + Sponsae + + + Collum + + + Gourd + + + Gourd + + + Gourd + + + Gourd + + + Gourd + + + Gourd + + + Gourd + + + Torus + + + Torus + + + Torus + + + Torus + + + Torus + + + Squid + + + Squid + + + Squid + + + Squid + + + Squid + + + Bullet + + + Bullet + + + Bullet + + + Bullet + + + Bullet + + + Globe + + + Globe + + + Globe + + + Globe + + + Globe + + + Globe + + + Globe + + + Bell + + + Bell + + + Bell + + + Bell + + + Bell + + + Luteolum + + + Croceum + + + Puniceum + + + Roseum + + + Blatteum Bioluminescent + + + Rubeum Bioluminescent + + + Prasinum Bioluminescent + + + Roseum Bioluminescent + + + Mineral + + + Mineral + + + Stolon + + + Gyre + + + Gyre + + + Void + + + Excutitus + + + Paleas + + + Laminamus + + + Araneamus + + + Limaxus + + + Cucumisis + + + Tectonicas + + + Frigus + + + Peduncle + + + Peduncle + + + Peduncle + + + Peduncle + + + Peduncle + + + Aster + + + Aster + + + Aster + + + Aster + + + Aster + + + Octahedral + + + Octahedral + + + Octahedral + + + Octahedral + + + Octahedral + + + Collared + + + Collared + + + Collared + + + Collared + + + Chalice + + + Chalice + + + Chalice + + + Chalice + + + Chalice + + + Gyre + + + Gyre + + + Rhizome + + + Rhizome + + + Rhizome + + + Rhizome + + + Rhizome + + + Quadripartite + + + Quadripartite + + + Quadripartite + + + Quadripartite + + + Barnacle + + + Barnacle + + + Barnacle + + + Sinuous + + + Sinuous + + + Sinuous + + + Sinuous + + + Sinuous + + + Sinuous + + + Sinuous + + + Sinuous + + + Conifer + + + Sororibus + + + Cavas + + + Rosarium + + + Compagibus + + + Pennata + + + Ventusa + + + Ignis + + + Cultro + + + Catena + + + Pennatis + + + Serrati + + + Albata + + + Propagito + + + Divisa + + + Caputus + + + Triticum + + + Stigmasis + + + Virgam + + + Capillum + + + Plant + + \ No newline at end of file diff --git a/DataDefinitions/Properties/OrganicSpeciesCond.Designer.cs b/DataDefinitions/Properties/OrganicSpeciesCond.Designer.cs new file mode 100644 index 0000000000..73f41091ea --- /dev/null +++ b/DataDefinitions/Properties/OrganicSpeciesCond.Designer.cs @@ -0,0 +1,1116 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class OrganicSpeciesCond { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal OrganicSpeciesCond() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.OrganicSpeciesCond", typeof(OrganicSpeciesCond).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string AlbidumSinuousTubers { + get { + return ResourceManager.GetString("AlbidumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, a temperature between 175 and 180 kelvin, 9 different types of parent stars, a Carbon Dioxide atmosphere and No volcanism.. + /// + public static string AleoidaArcus { + get { + return ResourceManager.GetString("AleoidaArcus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, a temperature between 180 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide atmosphere and No volcanism.. + /// + public static string AleoidaCoronamus { + get { + return ResourceManager.GetString("AleoidaCoronamus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, a temperature between 190 and 195 kelvin, 9 different types of parent stars, a Carbon Dioxide atmosphere and No volcanism.. + /// + public static string AleoidaGravis { + get { + return ResourceManager.GetString("AleoidaGravis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, 9 different types of parent stars and a Ammonia atmosphere.. + /// + public static string AleoidaLaminiae { + get { + return ResourceManager.GetString("AleoidaLaminiae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, 9 different types of parent stars and a Ammonia atmosphere.. + /// + public static string AleoidaSpica { + get { + return ResourceManager.GetString("AleoidaSpica", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich bodies with a temperature less than 1000 kelvinan A-type parent star and No atmosphere.. + /// + public static string AmphoraPlant { + get { + return ResourceManager.GetString("AmphoraPlant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich or High Metal Content bodies with a temperature between 300 and 500 kelvin, a No or Sulphur Dioxide atmosphere and Any volcanism.. + /// + public static string AureumBrainTree { + get { + return ResourceManager.GetString("AureumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky Ice bodies with a maximum gravity of 0.75 and a Neon or Neon-Rich atmosphere.. + /// + public static string BacteriumAcies { + get { + return ResourceManager.GetString("BacteriumAcies", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.38 and a Ammonia atmosphere.. + /// + public static string BacteriumAlcyoneum { + get { + return ResourceManager.GetString("BacteriumAlcyoneum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 1 and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string BacteriumAurasus { + get { + return ResourceManager.GetString("BacteriumAurasus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.61 and a Methane or Methane-Rich atmosphere.. + /// + public static string BacteriumBullaris { + get { + return ResourceManager.GetString("BacteriumBullaris", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 1, a Water and Water-Rich or Sulphur Dioxide atmosphere.. + /// + public static string BacteriumCerbrus { + get { + return ResourceManager.GetString("BacteriumCerbrus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.6 and a Nitrogen atmosphere.. + /// + public static string BacteriumInformem { + get { + return ResourceManager.GetString("BacteriumInformem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy bodies with a maximum gravity of 0.55 and a Helium atmosphere.. + /// + public static string BacteriumNebulus { + get { + return ResourceManager.GetString("BacteriumNebulus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy bodies with a maximum gravity of 0.61, a Neon or Neon-Rich atmosphere and Nitrogen or Ammonia volcanism.. + /// + public static string BacteriumOmentum { + get { + return ResourceManager.GetString("BacteriumOmentum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky Ice bodies with a maximum gravity of 0.62, a Neon or Neon-Rich atmosphere and Carbon or Methane volcanism.. + /// + public static string BacteriumScopulum { + get { + return ResourceManager.GetString("BacteriumScopulum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.62, a Any atmosphere, Helium and Iron or Silicate volcanism.. + /// + public static string BacteriumTela { + get { + return ResourceManager.GetString("BacteriumTela", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy, Rocky or Rocky Ice bodies with a maximum gravity of 0.61, a Neon or Neon-Rich atmosphere and Water volcanism.. + /// + public static string BacteriumVerrata { + get { + return ResourceManager.GetString("BacteriumVerrata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy, Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 1 and a Argon or Argon-Rich atmosphere.. + /// + public static string BacteriumVesicula { + get { + return ResourceManager.GetString("BacteriumVesicula", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy, Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.61 and a Oxygen atmosphere.. + /// + public static string BacteriumVolu { + get { + return ResourceManager.GetString("BacteriumVolu", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content, Rocky Ice or Icy bodies with a temperature between 80 and 450 kelvin, a No, Carbon Dioxide, Carbon Dioxide-Rich, Argon-Rich and Sulphur Dioxide or Thick Argon-Rich atmosphere.. + /// + public static string BarkMounds { + get { + return ResourceManager.GetString("BarkMounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich or High Metal Content bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string BlatteumBioluminescentAnemone { + get { + return ResourceManager.GetString("BlatteumBioluminescentAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string BlatteumSinuousTubers { + get { + return ResourceManager.GetString("BlatteumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string CactoidaCortexum { + get { + return ResourceManager.GetString("CactoidaCortexum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 225 kelvin, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string CactoidaLapis { + get { + return ResourceManager.GetString("CactoidaLapis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 190 kelvin, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string CactoidaPeperatis { + get { + return ResourceManager.GetString("CactoidaPeperatis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string CactoidaPullulanta { + get { + return ResourceManager.GetString("CactoidaPullulanta", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 450 kelvin, 7 different types of parent stars and a Water atmosphere.. + /// + public static string CactoidaVermis { + get { + return ResourceManager.GetString("CactoidaVermis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string CaeruleumSinuousTubers { + get { + return ResourceManager.GetString("CaeruleumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature less than 190 kelvin6 different types of parent stars and a Water or Carbon Dioxide atmosphere.. + /// + public static string ClypeusLacrimam { + get { + return ResourceManager.GetString("ClypeusLacrimam", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature less than 190 kelvin6 different types of parent stars, a Water or Carbon Dioxide atmosphere and No volcanism.. + /// + public static string ClypeusMargaritus { + get { + return ResourceManager.GetString("ClypeusMargaritus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature less than 190 kelvin6 different types of parent stars and a Water or Carbon Dioxide atmosphere.. + /// + public static string ClypeusSpeculumi { + get { + return ResourceManager.GetString("ClypeusSpeculumi", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28 and a Ammonia atmosphere.. + /// + public static string ConchaAureolas { + get { + return ResourceManager.GetString("ConchaAureolas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, a Nitrogen atmosphere and No volcanism.. + /// + public static string ConchaBiconcavis { + get { + return ResourceManager.GetString("ConchaBiconcavis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, a temperature greater than 190 kelvin and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string ConchaLabiata { + get { + return ResourceManager.GetString("ConchaLabiata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin and a Water or Water-Rich atmosphere.. + /// + public static string ConchaRenibus { + get { + return ResourceManager.GetString("ConchaRenibus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with an B or A-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string CroceumAnemone { + get { + return ResourceManager.GetString("CroceumAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bodies with a temperature greater than 273 kelvin, 5 different types of parent stars, a No, Carbon Dioxide, Argon, Carbon Dioxide-Rich, Methane, Argon-Rich, Neon and Helium or Neon-Rich atmosphere.. + /// + public static string CrystallineShards { + get { + return ResourceManager.GetString("CrystallineShards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy bodies with a maximum gravity of 0.28, an A or N-type parent star, a Helium and Neon or Argon atmosphere.. + /// + public static string ElectricaePluma { + get { + return ResourceManager.GetString("ElectricaePluma", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy bodies with a maximum gravity of 0.28, a temperature greater than 150 kelvin, a Helium and Neon or Argon atmosphere.. + /// + public static string ElectricaeRadialem { + get { + return ResourceManager.GetString("ElectricaeRadialem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky bodies with a maximum gravity of 0.28, a temperature greater than 150 kelvin, 12 different types of parent stars and a Argon atmosphere.. + /// + public static string FonticuluaCampestris { + get { + return ResourceManager.GetString("FonticuluaCampestris", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Methane or Methane-Rich atmosphere.. + /// + public static string FonticuluaDigitos { + get { + return ResourceManager.GetString("FonticuluaDigitos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Oxygen atmosphere.. + /// + public static string FonticuluaFluctus { + get { + return ResourceManager.GetString("FonticuluaFluctus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Nitrogen atmosphere.. + /// + public static string FonticuluaLapida { + get { + return ResourceManager.GetString("FonticuluaLapida", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars, a Neon or Neon-Rich atmosphere and No volcanism.. + /// + public static string FonticuluaSegmentatus { + get { + return ResourceManager.GetString("FonticuluaSegmentatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Argon-Rich atmosphere.. + /// + public static string FonticuluaUpupam { + get { + return ResourceManager.GetString("FonticuluaUpupam", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string FrutexaAcus { + get { + return ResourceManager.GetString("FrutexaAcus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Sulphur Dioxide atmosphere.. + /// + public static string FrutexaCollum { + get { + return ResourceManager.GetString("FrutexaCollum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string FrutexaFera { + get { + return ResourceManager.GetString("FrutexaFera", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string FrutexaFlabellum { + get { + return ResourceManager.GetString("FrutexaFlabellum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string FrutexaFlammasis { + get { + return ResourceManager.GetString("FrutexaFlammasis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide, Carbon Dioxide-Rich or Ammonia atmosphere and No volcanism.. + /// + public static string FrutexaMetallicum { + get { + return ResourceManager.GetString("FrutexaMetallicum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Water or Water-Rich atmosphere.. + /// + public static string FrutexaSponsae { + get { + return ResourceManager.GetString("FrutexaSponsae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 450 kelvin, a Any atmosphere and Water volcanism.. + /// + public static string FumerolaAquatis { + get { + return ResourceManager.GetString("FumerolaAquatis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 275 kelvin, a Any atmosphere and Carbon or Methane volcanism.. + /// + public static string FumerolaCarbosis { + get { + return ResourceManager.GetString("FumerolaCarbosis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 205 kelvin, a Any atmosphere, Silicate and Iron or Rocky volcanism.. + /// + public static string FumerolaExtremus { + get { + return ResourceManager.GetString("FumerolaExtremus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 250 kelvin, a Any atmosphere and Nitrogen or Ammonia volcanism.. + /// + public static string FumerolaNitris { + get { + return ResourceManager.GetString("FumerolaNitris", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a Argon or Argon-Rich atmosphere and No volcanism.. + /// + public static string FungoidaBullarum { + get { + return ResourceManager.GetString("FungoidaBullarum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, a Water, Water-Rich and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string FungoidaGelata { + get { + return ResourceManager.GetString("FungoidaGelata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a Ammonia and Methane or Methane-Rich atmosphere.. + /// + public static string FungoidaSetisis { + get { + return ResourceManager.GetString("FungoidaSetisis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, a Water, Water-Rich and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string FungoidaStabitis { + get { + return ResourceManager.GetString("FungoidaStabitis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a temperature between 200 and 300 kelvin, a Ammonia, No, Oxygen or Sulphur Dioxide atmosphere and Any volcanism.. + /// + public static string GypseeumBrainTree { + get { + return ResourceManager.GetString("GypseeumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 300 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string LindigoticumBrainTree { + get { + return ResourceManager.GetString("LindigoticumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string LindigoticumSinuousTubers { + get { + return ResourceManager.GetString("LindigoticumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a temperature between 300 and 500 kelvin, a No, Water or Sulphur Dioxide atmosphere and Any volcanism.. + /// + public static string LividumBrainTree { + get { + return ResourceManager.GetString("LividumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string LuteolumAnemone { + get { + return ResourceManager.GetString("LuteolumAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string OsseusCornibus { + get { + return ResourceManager.GetString("OsseusCornibus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 455 kelvin and a Water or Water-Rich atmosphere.. + /// + public static string OsseusDiscus { + get { + return ResourceManager.GetString("OsseusDiscus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 190 kelvin, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string OsseusFractus { + get { + return ResourceManager.GetString("OsseusFractus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 190 and 195 kelvin, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string OsseusPellebantus { + get { + return ResourceManager.GetString("OsseusPellebantus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 135 kelvin, a Argon, Argon-Rich, Methane and Methane-Rich or Nitrogen atmosphere.. + /// + public static string OsseusPumice { + get { + return ResourceManager.GetString("OsseusPumice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28 and a temperature less than 160 kelvina Ammonia atmosphere.. + /// + public static string OsseusSpiralis { + get { + return ResourceManager.GetString("OsseusSpiralis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich or High Metal Content bodies with a No, Carbon Dioxide, Ammonia, Carbon Dioxide-Rich, Argon-Rich, Sulphur Dioxide, Helium or Neon-Rich atmosphere and Any volcanism.. + /// + public static string OstrinumBrainTree { + get { + return ResourceManager.GetString("OstrinumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, Metal-Rich or High Metal Content bodies with an O-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string PrasinumBioluminescentAnemone { + get { + return ResourceManager.GetString("PrasinumBioluminescentAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, High Metal Content or Rocky Ice bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string PrasinumSinuousTubers { + get { + return ResourceManager.GetString("PrasinumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Ice or Ice bodies with an O-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string PuniceumAnemone { + get { + return ResourceManager.GetString("PuniceumAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich or High Metal Content bodies with a No, Carbon Dioxide, Oxygen, Sulphur Dioxide, Helium or Neon-Rich atmosphere and Any volcanism.. + /// + public static string PuniceumBrainTree { + get { + return ResourceManager.GetString("PuniceumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 130 and 300 kelvin and a Sulphur Dioxide atmosphere.. + /// + public static string ReceptaConditivus { + get { + return ResourceManager.GetString("ReceptaConditivus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 130 and 300 kelvin and a Sulphur Dioxide atmosphere.. + /// + public static string ReceptaDeltahedronix { + get { + return ResourceManager.GetString("ReceptaDeltahedronix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icy, Rocky Ice, Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 130 and 300 kelvin and a Sulphur Dioxide atmosphere.. + /// + public static string ReceptaUmbrux { + get { + return ResourceManager.GetString("ReceptaUmbrux", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string RoseumAnemone { + get { + return ResourceManager.GetString("RoseumAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich or High Metal Content bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string RoseumBioluminescentAnemone { + get { + return ResourceManager.GetString("RoseumBioluminescentAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky, Metal-Rich, High Metal Content or Rocky Ice bodies with a temperature between 200 and 500 kelvin, a No, Carbon Dioxide, Argon, Ammonia, Carbon Dioxide-Rich, Oxygen, Water, Sulphur Dioxide, Argon-Rich or Water-Rich atmosphere and Any volcanism.. + /// + public static string RoseumBrainTree { + get { + return ResourceManager.GetString("RoseumBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string RoseumSinuousTubers { + get { + return ResourceManager.GetString("RoseumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metal-Rich or High Metal Content bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere.. + /// + public static string RubeumBioluminescentAnemone { + get { + return ResourceManager.GetString("RubeumBioluminescentAnemone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.55 and a temperature less than 165 kelvina Sulphur Dioxide atmosphere.. + /// + public static string StratumAraneamus { + get { + return ResourceManager.GetString("StratumAraneamus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.6, a temperature less than 190 kelvina Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string StratumCucumisis { + get { + return ResourceManager.GetString("StratumCucumisis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.48, a temperature between 165 and 190 kelvin, a Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string StratumExcutitus { + get { + return ResourceManager.GetString("StratumExcutitus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.55, a temperature less than 190 kelvina Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string StratumFrigus { + get { + return ResourceManager.GetString("StratumFrigus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.34 and a temperature less than 165 kelvina Ammonia atmosphere.. + /// + public static string StratumLaminamus { + get { + return ResourceManager.GetString("StratumLaminamus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.48, a temperature between 165 and 190 kelvin, a Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string StratumLimaxus { + get { + return ResourceManager.GetString("StratumLimaxus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.58, a temperature less than 165 kelvina Ammonia, Water, Water-Rich and Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string StratumPaleas { + get { + return ResourceManager.GetString("StratumPaleas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content bodies with a maximum gravity of 0.9, a temperature less than 165 kelvina Oxygen, Ammonia, Water, Water-Rich, Carbon Dioxide and Carbon Dioxide-Rich or Sulphur Dioxide atmosphere.. + /// + public static string StratumTectonicas { + get { + return ResourceManager.GetString("StratumTectonicas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TubusCavas { + get { + return ResourceManager.GetString("TubusCavas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TubusCompagibus { + get { + return ResourceManager.GetString("TubusCompagibus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TubusConifer { + get { + return ResourceManager.GetString("TubusConifer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky bodies with a maximum gravity of 0.19, a temperature less than 160 kelvin9 different types of parent stars and a Ammonia atmosphere.. + /// + public static string TubusRosarium { + get { + return ResourceManager.GetString("TubusRosarium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High Metal Content bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Ammonia, Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TubusSororibus { + get { + return ResourceManager.GetString("TubusSororibus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 175 and 180 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockAlbata { + get { + return ResourceManager.GetString("TussockAlbata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 80 and 165 kelvin, 7 different types of parent stars, a Argon, Argon-Rich and Methane or Methane-Rich atmosphere.. + /// + public static string TussockCapillum { + get { + return ResourceManager.GetString("TussockCapillum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 190 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockCaputus { + get { + return ResourceManager.GetString("TussockCaputus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 150 and 190 kelvin, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string TussockCatena { + get { + return ResourceManager.GetString("TussockCatena", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string TussockCultro { + get { + return ResourceManager.GetString("TussockCultro", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 150 and 180 kelvin, 7 different types of parent stars and a Ammonia atmosphere.. + /// + public static string TussockDivisa { + get { + return ResourceManager.GetString("TussockDivisa", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 170 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockIgnis { + get { + return ResourceManager.GetString("TussockIgnis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 145 and 155 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockPennata { + get { + return ResourceManager.GetString("TussockPennata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockPennatis { + get { + return ResourceManager.GetString("TussockPennatis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockPropagito { + get { + return ResourceManager.GetString("TussockPropagito", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 170 and 175 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockSerrati { + get { + return ResourceManager.GetString("TussockSerrati", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 130 and 210 kelvin, 7 different types of parent stars and a Sulphur Dioxide atmosphere.. + /// + public static string TussockStigmasis { + get { + return ResourceManager.GetString("TussockStigmasis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 190 and 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism.. + /// + public static string TussockTriticum { + get { + return ResourceManager.GetString("TussockTriticum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 155 and 160 kelvin, 7 different types of parent stars and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere.. + /// + public static string TussockVentusa { + get { + return ResourceManager.GetString("TussockVentusa", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 390 and 450 kelvin, 7 different types of parent stars and a Water or Water-Rich atmosphere.. + /// + public static string TussockVirgam { + get { + return ResourceManager.GetString("TussockVirgam", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string ViolaceumSinuousTubers { + get { + return ResourceManager.GetString("ViolaceumSinuousTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky Ice bodies with a temperature between 100 and 270 kelvin, a Ammonia, No or Sulphur Dioxide atmosphere and Any volcanism.. + /// + public static string VirideBrainTree { + get { + return ResourceManager.GetString("VirideBrainTree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism.. + /// + public static string VirideSinuousTubers { + get { + return ResourceManager.GetString("VirideSinuousTubers", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/OrganicSpeciesCond.resx b/DataDefinitions/Properties/OrganicSpeciesCond.resx new file mode 100644 index 0000000000..764e2d0cd3 --- /dev/null +++ b/DataDefinitions/Properties/OrganicSpeciesCond.resx @@ -0,0 +1,471 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + bodies with a maximum gravity of 0.28, a temperature between 175 and 180 kelvin, 9 different types of parent stars, a Carbon Dioxide atmosphere and No volcanism. + + + bodies with a maximum gravity of 0.28, a temperature between 180 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide atmosphere and No volcanism. + + + bodies with a maximum gravity of 0.28, a temperature between 190 and 195 kelvin, 9 different types of parent stars, a Carbon Dioxide atmosphere and No volcanism. + + + bodies with a maximum gravity of 0.28, 9 different types of parent stars and a Ammonia atmosphere. + + + bodies with a maximum gravity of 0.28, 9 different types of parent stars and a Ammonia atmosphere. + + + Metal-Rich bodies with a temperature less than 1000 kelvinan A-type parent star and No atmosphere. + + + Metal-Rich or High Metal Content bodies with a temperature between 300 and 500 kelvin, a No or Sulphur Dioxide atmosphere and Any volcanism. + + + Icy or Rocky Ice bodies with a maximum gravity of 0.75 and a Neon or Neon-Rich atmosphere. + + + Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.38 and a Ammonia atmosphere. + + + bodies with a maximum gravity of 1 and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.61 and a Methane or Methane-Rich atmosphere. + + + bodies with a maximum gravity of 1, a Water and Water-Rich or Sulphur Dioxide atmosphere. + + + Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.6 and a Nitrogen atmosphere. + + + Icy bodies with a maximum gravity of 0.55 and a Helium atmosphere. + + + Icy bodies with a maximum gravity of 0.61, a Neon or Neon-Rich atmosphere and Nitrogen or Ammonia volcanism. + + + Icy or Rocky Ice bodies with a maximum gravity of 0.62, a Neon or Neon-Rich atmosphere and Carbon or Methane volcanism. + + + Rocky, High Metal Content, Rocky Ice or Icy bodies with a maximum gravity of 0.62, a Any atmosphere, Helium and Iron or Silicate volcanism. + + + Icy, Rocky or Rocky Ice bodies with a maximum gravity of 0.61, a Neon or Neon-Rich atmosphere and Water volcanism. + + + Icy, Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 1 and a Argon or Argon-Rich atmosphere. + + + Icy, Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.61 and a Oxygen atmosphere. + + + Rocky, High Metal Content, Rocky Ice or Icy bodies with a temperature between 80 and 450 kelvin, a No, Carbon Dioxide, Carbon Dioxide-Rich, Argon-Rich and Sulphur Dioxide or Thick Argon-Rich atmosphere. + + + Metal-Rich or High Metal Content bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere. + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 225 kelvin, 7 different types of parent stars and a Ammonia atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 190 kelvin, 7 different types of parent stars and a Ammonia atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 450 kelvin, 7 different types of parent stars and a Water atmosphere. + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature less than 190 kelvin6 different types of parent stars and a Water or Carbon Dioxide atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature less than 190 kelvin6 different types of parent stars, a Water or Carbon Dioxide atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature less than 190 kelvin6 different types of parent stars and a Water or Carbon Dioxide atmosphere. + + + bodies with a maximum gravity of 0.28 and a Ammonia atmosphere. + + + bodies with a maximum gravity of 0.28, a Nitrogen atmosphere and No volcanism. + + + bodies with a maximum gravity of 0.28, a temperature greater than 190 kelvin and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin and a Water or Water-Rich atmosphere. + + + Rocky bodies with an B or A-type parent star and a Sulphur Dioxide or No atmosphere. + + + bodies with a temperature greater than 273 kelvin, 5 different types of parent stars, a No, Carbon Dioxide, Argon, Carbon Dioxide-Rich, Methane, Argon-Rich, Neon and Helium or Neon-Rich atmosphere. + + + Icy bodies with a maximum gravity of 0.28, an A or N-type parent star, a Helium and Neon or Argon atmosphere. + + + Icy bodies with a maximum gravity of 0.28, a temperature greater than 150 kelvin, a Helium and Neon or Argon atmosphere. + + + Icy or Rocky bodies with a maximum gravity of 0.28, a temperature greater than 150 kelvin, 12 different types of parent stars and a Argon atmosphere. + + + Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Methane or Methane-Rich atmosphere. + + + Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Oxygen atmosphere. + + + Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Nitrogen atmosphere. + + + Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars, a Neon or Neon-Rich atmosphere and No volcanism. + + + Icy or Rocky bodies with a maximum gravity of 0.28, 12 different types of parent stars and a Argon-Rich atmosphere. + + + Rocky bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Sulphur Dioxide atmosphere. + + + Rocky bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Ammonia atmosphere. + + + Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Ammonia atmosphere. + + + High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide, Carbon Dioxide-Rich or Ammonia atmosphere and No volcanism. + + + Rocky bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Water or Water-Rich atmosphere. + + + Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 450 kelvin, a Any atmosphere and Water volcanism. + + + Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 275 kelvin, a Any atmosphere and Carbon or Methane volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 205 kelvin, a Any atmosphere, Silicate and Iron or Rocky volcanism. + + + Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 250 kelvin, a Any atmosphere and Nitrogen or Ammonia volcanism. + + + Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a Argon or Argon-Rich atmosphere and No volcanism. + + + Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, a Water, Water-Rich and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a Ammonia and Methane or Methane-Rich atmosphere. + + + Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, a Water, Water-Rich and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky bodies with a temperature between 200 and 300 kelvin, a Ammonia, No, Oxygen or Sulphur Dioxide atmosphere and Any volcanism. + + + Rocky or High Metal Content bodies with a temperature between 300 and 500 kelvin, No atmosphere and Any volcanism. + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + Rocky bodies with a temperature between 300 and 500 kelvin, a No, Water or Sulphur Dioxide atmosphere and Any volcanism. + + + Rocky bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 195 kelvin, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 455 kelvin and a Water or Water-Rich atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 190 kelvin, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 190 and 195 kelvin, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky, High Metal Content or Rocky Ice bodies with a maximum gravity of 0.28, a temperature greater than 135 kelvin, a Argon, Argon-Rich, Methane and Methane-Rich or Nitrogen atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28 and a temperature less than 160 kelvina Ammonia atmosphere. + + + Metal-Rich or High Metal Content bodies with a No, Carbon Dioxide, Ammonia, Carbon Dioxide-Rich, Argon-Rich, Sulphur Dioxide, Helium or Neon-Rich atmosphere and Any volcanism. + + + Rocky, Metal-Rich or High Metal Content bodies with an O-type parent star and a Sulphur Dioxide or No atmosphere. + + + Rocky, High Metal Content or Rocky Ice bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + Rocky Ice or Ice bodies with an O-type parent star and a Sulphur Dioxide or No atmosphere. + + + Metal-Rich or High Metal Content bodies with a No, Carbon Dioxide, Oxygen, Sulphur Dioxide, Helium or Neon-Rich atmosphere and Any volcanism. + + + Icy or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 130 and 300 kelvin and a Sulphur Dioxide atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 130 and 300 kelvin and a Sulphur Dioxide atmosphere. + + + Icy, Rocky Ice, Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 130 and 300 kelvin and a Sulphur Dioxide atmosphere. + + + Rocky bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere. + + + Metal-Rich or High Metal Content bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere. + + + Rocky, Metal-Rich, High Metal Content or Rocky Ice bodies with a temperature between 200 and 500 kelvin, a No, Carbon Dioxide, Argon, Ammonia, Carbon Dioxide-Rich, Oxygen, Water, Sulphur Dioxide, Argon-Rich or Water-Rich atmosphere and Any volcanism. + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + Metal-Rich or High Metal Content bodies with an B-type parent star and a Sulphur Dioxide or No atmosphere. + + + Rocky bodies with a maximum gravity of 0.55 and a temperature less than 165 kelvina Sulphur Dioxide atmosphere. + + + Rocky bodies with a maximum gravity of 0.6, a temperature less than 190 kelvina Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky bodies with a maximum gravity of 0.48, a temperature between 165 and 190 kelvin, a Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky bodies with a maximum gravity of 0.55, a temperature less than 190 kelvina Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky bodies with a maximum gravity of 0.34 and a temperature less than 165 kelvina Ammonia atmosphere. + + + Rocky bodies with a maximum gravity of 0.48, a temperature between 165 and 190 kelvin, a Sulphur Dioxide and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky bodies with a maximum gravity of 0.58, a temperature less than 165 kelvina Ammonia, Water, Water-Rich and Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + High Metal Content bodies with a maximum gravity of 0.9, a temperature less than 165 kelvina Oxygen, Ammonia, Water, Water-Rich, Carbon Dioxide and Carbon Dioxide-Rich or Sulphur Dioxide atmosphere. + + + Rocky bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky bodies with a maximum gravity of 0.19, a temperature less than 160 kelvin9 different types of parent stars and a Ammonia atmosphere. + + + High Metal Content bodies with a maximum gravity of 0.19, a temperature between 160 and 190 kelvin, 9 different types of parent stars, a Ammonia, Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 175 and 180 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or Rocky Ice bodies with a maximum gravity of 0.28, a temperature between 80 and 165 kelvin, 7 different types of parent stars, a Argon, Argon-Rich and Methane or Methane-Rich atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 180 and 190 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 150 and 190 kelvin, 7 different types of parent stars and a Ammonia atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, 7 different types of parent stars and a Ammonia atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 150 and 180 kelvin, 7 different types of parent stars and a Ammonia atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 160 and 170 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 145 and 155 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature greater than 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 170 and 175 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 130 and 210 kelvin, 7 different types of parent stars and a Sulphur Dioxide atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 190 and 195 kelvin, 7 different types of parent stars, a Carbon Dioxide or Carbon Dioxide-Rich atmosphere and No volcanism. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 155 and 160 kelvin, 7 different types of parent stars and a Carbon Dioxide or Carbon Dioxide-Rich atmosphere. + + + Rocky or High Metal Content bodies with a maximum gravity of 0.28, a temperature between 390 and 450 kelvin, 7 different types of parent stars and a Water or Water-Rich atmosphere. + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + + Rocky Ice bodies with a temperature between 100 and 270 kelvin, a Ammonia, No or Sulphur Dioxide atmosphere and Any volcanism. + + + Rocky or High Metal Content bodies with a temperature between 200 and 500 kelvin, No atmosphere and Any volcanism. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/OrganicSpeciesDesc.Designer.cs b/DataDefinitions/Properties/OrganicSpeciesDesc.Designer.cs new file mode 100644 index 0000000000..70ea2ba679 --- /dev/null +++ b/DataDefinitions/Properties/OrganicSpeciesDesc.Designer.cs @@ -0,0 +1,2250 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class OrganicSpeciesDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal OrganicSpeciesDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.OrganicSpeciesDesc", typeof(OrganicSpeciesDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to has upright clumps of long serrated leaves, which can open up to expose a reproductive organ containing tiny round seeds.. + /// + public static string Aleoids_01 { + get { + return ResourceManager.GetString("Aleoids_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has an interleaved crown of mottled leaves that can grow to head height, with explosive seed pods emerging on long protruding stalks.. + /// + public static string Aleoids_02 { + get { + return ResourceManager.GetString("Aleoids_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has long spiky leaves that can reach over two metres high surrounding a single reproductive organ on a long central stalk.. + /// + public static string Aleoids_03 { + get { + return ResourceManager.GetString("Aleoids_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to have a circle of upturned leaves marked with patterns, surrounding a bright fleshy pod with darker markings which matures in their centre.. + /// + public static string Aleoids_04 { + get { + return ResourceManager.GetString("Aleoids_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has wide flat leaves on a heavy bark base that can reach huge sizes. and sprout a dome-shaped reproductive organ at their peak.. + /// + public static string Aleoids_05 { + get { + return ResourceManager.GetString("Aleoids_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrive on sunlight in atmospheres rich with carbon dioxide. They cause blanket coloration across a planetary surface.. + /// + public static string Bacterial_01 { + get { + return ResourceManager.GetString("Bacterial_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to survives exclusively on atmospheric helium. They are distinguished by a radial pattern extending outward from the colony’s centre.. + /// + public static string Bacterial_02 { + get { + return ResourceManager.GetString("Bacterial_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrive on the heat generated by carbon-based volcanic activity and appear as long swirling ridges on the surface.. + /// + public static string Bacterial_03 { + get { + return ResourceManager.GetString("Bacterial_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to converts energy from neon-based atmospheres, creating looping whirls of bright colour.. + /// + public static string Bacterial_04 { + get { + return ResourceManager.GetString("Bacterial_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to survive on worlds with argon—based atmospheres, and appear as a collection of tight loops on the ground.. + /// + public static string Bacterial_05 { + get { + return ResourceManager.GetString("Bacterial_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is found in ammonia-based atmospheres that lives in sunlight. A colony’s appearance resembles an intricate maze.. + /// + public static string Bacterial_06 { + get { + return ResourceManager.GetString("Bacterial_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appear as an intricate web pattern. They thrive in proximity to helium-based, iron-based and silicate-based volcanic sites.. + /// + public static string Bacterial_07 { + get { + return ResourceManager.GetString("Bacterial_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to can be found in nitrogen atmospheres, and form a shapeless mass across the surface.. + /// + public static string Bacterial_08 { + get { + return ResourceManager.GetString("Bacterial_08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to are dependent upon oxygen atmospheres, which creates random swirling patterns across the ground.. + /// + public static string Bacterial_09 { + get { + return ResourceManager.GetString("Bacterial_09", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrives on atmospheric methane, appearing as a network of linked bubble paiterns.. + /// + public static string Bacterial_10 { + get { + return ResourceManager.GetString("Bacterial_10", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to convert geothermal heat from nitrogen-based volcanic sites into energy. They appear as long interlinked strands across the surface.. + /// + public static string Bacterial_11 { + get { + return ResourceManager.GetString("Bacterial_11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to is a sunlight-converting bacterial species on worlds with atmospheres dominated by water and sulphur dioxide. Their colonies resemble a brain-shaped mass of smaller connected cells.. + /// + public static string Bacterial_12 { + get { + return ResourceManager.GetString("Bacterial_12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appear as an intricate web pattern. They thrive in proximity to helium-based, iron-based and silicate-based volcanic sites.. + /// + public static string Bacterial_13 { + get { + return ResourceManager.GetString("Bacterial_13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to can reach over three metres in height. They are composed of multiple growths that sprout sealed pods at their peaks, which open up to distribute seeds.. + /// + public static string Cactoid_01 { + get { + return ResourceManager.GetString("Cactoid_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appears as a squat growth with a latficecl upper surface, which eventually produces a cluster of seed pods.. + /// + public static string Cactoid_02 { + get { + return ResourceManager.GetString("Cactoid_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appear as a tall collection of cylinders linked by an undulating membrane and topped with a spiky crown. They often have a spiny life-form attached that is thought to form a symbiotic relationship with the larger organism, although the nature of this is not understood.. + /// + public static string Cactoid_03 { + get { + return ResourceManager.GetString("Cactoid_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has a globular base, from which extend vertical cylinders that can reach over four metres. Rounded pods grow in clusters along the cylinders, which break open to scatter seeds.. + /// + public static string Cactoid_04 { + get { + return ResourceManager.GetString("Cactoid_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appears as a swollen five-sided growth, reaching over two metres high and topped with an intersected crown.. + /// + public static string Cactoid_05 { + get { + return ResourceManager.GetString("Cactoid_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to grows a broad, tear-shaped shield to protect the sensitive organism from extreme sunlight. The shield’s ridges help to direct Water droplets down into the soil.. + /// + public static string Clypeus_01 { + get { + return ResourceManager.GetString("Clypeus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces a curved shield that resembles a large pearl in shape and texture. Up to three central organisms grow within it upon a supporting bed of leaves.. + /// + public static string Clypeus_02 { + get { + return ResourceManager.GetString("Clypeus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to grows an angular shield with a mirrored exterior to protect the spiky organisms. This species can be found on planets orbiting their parent star at a distance of 5 AU or greater.. + /// + public static string Clypeus_03 { + get { + return ResourceManager.GetString("Clypeus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to relies on heat sources to survive. As the bisected growth increases in size. it sprouts a single stalk topped with an array of luminous fronds that facilitate metabolism.. + /// + public static string Conchas_01 { + get { + return ResourceManager.GetString("Conchas_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to are found on worlds with nitrogen-based atmospheres. Their rounded rock-like structure splits part to extend long stalks topped with loops.. + /// + public static string Conchas_02 { + get { + return ResourceManager.GetString("Conchas_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrives in atmospheres rich with carbon dioxide. The lip-like upper opening cracks apart to allow a vertical growth of spiky leaves and bright seeds to stretch upward.. + /// + public static string Conchas_03 { + get { + return ResourceManager.GetString("Conchas_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to resembles a ridged, bisected egg until they crack in half, allowing a thin stalk to sprout from its fleshy insides. This is covered with cloughnut—shaped pods that create locations for chemical exchange.. + /// + public static string Conchas_04 { + get { + return ResourceManager.GetString("Conchas_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Cone { + get { + return ResourceManager.GetString("Cone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to extends a tip of four connected loops above the ice, each covered with brightly luminous fronds. This species is typically found on planets orbiting bright white stars.. + /// + public static string Electricae_01 { + get { + return ResourceManager.GetString("Electricae_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to protrude bioluminescent stalks that radiate out in all directions. It is thought that this species may have an unspecified link with the proximity of nebulae to its host planet.. + /// + public static string Electricae_02 { + get { + return ResourceManager.GetString("Electricae_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is found in atmospheres dominated by neon, appearing as a pyramid—shaped cluster of frilled sections.. + /// + public static string Fonticulus_01 { + get { + return ResourceManager.GetString("Fonticulus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrive in argon atmospheres, and can reach four metres in height. They feature huge leaf-like structures to capture sunlight for conversion to energy.. + /// + public static string Fonticulus_02 { + get { + return ResourceManager.GetString("Fonticulus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to can he found on ice worlds with argon-rich atmospheres. They produce broad hoop-shaped structures to better reflect weak sunlight onto themselves for photosynthesis.. + /// + public static string Fonticulus_03 { + get { + return ResourceManager.GetString("Fonticulus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to exists in atmospheres with a heavy concentration of nitrogen. Growing up along the main stalk are bright gem-like pods. which can break off and create new colonies.. + /// + public static string Fonticulus_04 { + get { + return ResourceManager.GetString("Fonticulus_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to exists on worlds with oxygen atmospheres. They produce coiling wave-shaped structures which tilt toward sunlight.. + /// + public static string Fonticulus_05 { + get { + return ResourceManager.GetString("Fonticulus_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrives in methane—based atmospheres, sprouting a cluster of cylindrical tubes directly from the ice.. + /// + public static string Fonticulus_06 { + get { + return ResourceManager.GetString("Fonticulus_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is found near sites of carbon—based volcanism, appearing as a thin upright tube. An inner organism protrudes from an opening at its peak to increase heat absorption.. + /// + public static string Fumerolas_01 { + get { + return ResourceManager.GetString("Fumerolas_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to is an exception among its kin. This fumerola species seems to have an arbitrary preference of specific volcanism types which have yet to be explicitly linked in any way. They appear as long vertical stalks with smaller fronds that can stretch out.. + /// + public static string Fumerolas_02 { + get { + return ResourceManager.GetString("Fumerolas_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to prefers nitrogen-based volcanism. They produce an ovoid organism with dotted markings, which sits on top of a thin stalk.. + /// + public static string Fumerolas_03 { + get { + return ResourceManager.GetString("Fumerolas_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to can be found near sites of water-based volcanic activity. They appear as small dark clusters with ridged folds that trap heat within.. + /// + public static string Fumerolas_04 { + get { + return ResourceManager.GetString("Fumerolas_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces vertical clusters interspersed with spore pods atop thin stalks. allowing them to break off and scatter to reproduce elsewhere.. + /// + public static string Fungoids_01 { + get { + return ResourceManager.GetString("Fungoids_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to thrives on geothermal energy. and can produce two-metre high tower structures composed of tightly clustered cylinders.. + /// + public static string Fungoids_02 { + get { + return ResourceManager.GetString("Fungoids_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to features clusters of mottled bubble-shaped growths atop a central stalk. These contain spores that can be exposed to the winds to facilitate distribution.. + /// + public static string Fungoids_03 { + get { + return ResourceManager.GetString("Fungoids_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to resembles an upturned jellyfish, emerging from a solid base buried within the substrate. The exposed part is dominated by fleshy reproductive organisms that shed organic tissue. This tissue can float on the light breeze and form a new organism if it lands in the right location.. + /// + public static string Fungoids_04 { + get { + return ResourceManager.GetString("Fungoids_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Ground_Struct_Ice { + get { + return ResourceManager.GetString("Ground_Struct_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry { + get { + return ResourceManager.GetString("L_Cry_IcCry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry1 { + get { + return ResourceManager.GetString("L_Cry_IcCry1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry2 { + get { + return ResourceManager.GetString("L_Cry_IcCry2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry3 { + get { + return ResourceManager.GetString("L_Cry_IcCry3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry4 { + get { + return ResourceManager.GetString("L_Cry_IcCry4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry5 { + get { + return ResourceManager.GetString("L_Cry_IcCry5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry6 { + get { + return ResourceManager.GetString("L_Cry_IcCry6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_IcCry7 { + get { + return ResourceManager.GetString("L_Cry_IcCry7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_MetCry { + get { + return ResourceManager.GetString("L_Cry_MetCry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_MetCry1 { + get { + return ResourceManager.GetString("L_Cry_MetCry1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_MetCry2 { + get { + return ResourceManager.GetString("L_Cry_MetCry2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_MetCry3 { + get { + return ResourceManager.GetString("L_Cry_MetCry3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry { + get { + return ResourceManager.GetString("L_Cry_QtzCry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry1 { + get { + return ResourceManager.GetString("L_Cry_QtzCry1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry2 { + get { + return ResourceManager.GetString("L_Cry_QtzCry2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry3 { + get { + return ResourceManager.GetString("L_Cry_QtzCry3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry4 { + get { + return ResourceManager.GetString("L_Cry_QtzCry4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry5 { + get { + return ResourceManager.GetString("L_Cry_QtzCry5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry6 { + get { + return ResourceManager.GetString("L_Cry_QtzCry6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Cry_QtzCry7 { + get { + return ResourceManager.GetString("L_Cry_QtzCry7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V1 { + get { + return ResourceManager.GetString("L_Org_Moll03_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V11 { + get { + return ResourceManager.GetString("L_Org_Moll03_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V12 { + get { + return ResourceManager.GetString("L_Org_Moll03_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V2 { + get { + return ResourceManager.GetString("L_Org_Moll03_V2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V21 { + get { + return ResourceManager.GetString("L_Org_Moll03_V21", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V22 { + get { + return ResourceManager.GetString("L_Org_Moll03_V22", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V3 { + get { + return ResourceManager.GetString("L_Org_Moll03_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V31 { + get { + return ResourceManager.GetString("L_Org_Moll03_V31", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V32 { + get { + return ResourceManager.GetString("L_Org_Moll03_V32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V4 { + get { + return ResourceManager.GetString("L_Org_Moll03_V4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V41 { + get { + return ResourceManager.GetString("L_Org_Moll03_V41", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V42 { + get { + return ResourceManager.GetString("L_Org_Moll03_V42", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V6 { + get { + return ResourceManager.GetString("L_Org_Moll03_V6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V61 { + get { + return ResourceManager.GetString("L_Org_Moll03_V61", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_Moll03_V62 { + get { + return ResourceManager.GetString("L_Org_Moll03_V62", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_PltFun_V1 { + get { + return ResourceManager.GetString("L_Org_PltFun_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_PltFun_V11 { + get { + return ResourceManager.GetString("L_Org_PltFun_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_PltFun_V12 { + get { + return ResourceManager.GetString("L_Org_PltFun_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Org_PltFun_V13 { + get { + return ResourceManager.GetString("L_Org_PltFun_V13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln01_V1 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln01_V11 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln01_V12 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln01_V13 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln01_V14 { + get { + return ResourceManager.GetString("L_Seed_Pln01_V14", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln02_V3 { + get { + return ResourceManager.GetString("L_Seed_Pln02_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln02_V31 { + get { + return ResourceManager.GetString("L_Seed_Pln02_V31", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_Pln02_V32 { + get { + return ResourceManager.GetString("L_Seed_Pln02_V32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string L_Seed_SdRt02 { + get { + return ResourceManager.GetString("L_Seed_SdRt02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to can grow to over six metres across. They produce wide ridged frills for metabolic interactions including aosorbing sunlight for energy production.. + /// + public static string Osseus_01 { + get { + return ResourceManager.GetString("Osseus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appears as half-buried discs with radial patterns, which may resemble natural rook formations from a distance. They absorb geothermal energy from below the surface as well as available heat sources above ground.. + /// + public static string Osseus_02 { + get { + return ResourceManager.GetString("Osseus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces coiling spiral structures up to six metres wide. There are ridged folds on their upturned surfaces designed to capture sunlight.. + /// + public static string Osseus_03 { + get { + return ResourceManager.GetString("Osseus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to grows a single thick stalk from which emerges a wide, broadly circular, pitted endoskeleton. This structure is designed to dramatically increase the surface area to volume ofthe organism, facilitating chemical capture and chemosynthesis on its catalytically active surface.. + /// + public static string Osseus_04 { + get { + return ResourceManager.GetString("Osseus_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces a stacked series of spiral structures up to about three metres. These ridged features are upturned to better absorb sunlight for photosynthesis.. + /// + public static string Osseus_05 { + get { + return ResourceManager.GetString("Osseus_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has a single broad stalk from which extend wide circular structures, with the largest plate capping the top to maximise sunlight absorption.. + /// + public static string Osseus_06 { + get { + return ResourceManager.GetString("Osseus_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to grows a thick latticed structure for protection. A fine translucent membrane stretches between its gaps, allowing sunlight to penetrate and reach the inner organism for photosynthesis.. + /// + public static string Recepta_01 { + get { + return ResourceManager.GetString("Recepta_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces a thick lattice of trunks in a deltahedron shape. This grows around and above the globular central organism, and helps to capture, retain and focus geothermal heat for thermosynthesis.. + /// + public static string Recepta_02 { + get { + return ResourceManager.GetString("Recepta_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has a body that is suspended above ground inside a sphere-shaped translucent membrane. This is filled with chemical-rich fluid that both protects the organism and provides the chemical soup needed for metabolism. Chemical exchange is controlled actively through the membrane and passively through the extensive root structure.. + /// + public static string Recepta_03 { + get { + return ResourceManager.GetString("Recepta_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp01 { + get { + return ResourceManager.GetString("S_Seed_SdTp01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp011 { + get { + return ResourceManager.GetString("S_Seed_SdTp011", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp012 { + get { + return ResourceManager.GetString("S_Seed_SdTp012", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp013 { + get { + return ResourceManager.GetString("S_Seed_SdTp013", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp014 { + get { + return ResourceManager.GetString("S_Seed_SdTp014", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp02 { + get { + return ResourceManager.GetString("S_Seed_SdTp02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp021 { + get { + return ResourceManager.GetString("S_Seed_SdTp021", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp022 { + get { + return ResourceManager.GetString("S_Seed_SdTp022", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp023 { + get { + return ResourceManager.GetString("S_Seed_SdTp023", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp024 { + get { + return ResourceManager.GetString("S_Seed_SdTp024", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp03 { + get { + return ResourceManager.GetString("S_Seed_SdTp03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp031 { + get { + return ResourceManager.GetString("S_Seed_SdTp031", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp032 { + get { + return ResourceManager.GetString("S_Seed_SdTp032", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp033 { + get { + return ResourceManager.GetString("S_Seed_SdTp033", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp034 { + get { + return ResourceManager.GetString("S_Seed_SdTp034", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp04 { + get { + return ResourceManager.GetString("S_Seed_SdTp04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp041 { + get { + return ResourceManager.GetString("S_Seed_SdTp041", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp042 { + get { + return ResourceManager.GetString("S_Seed_SdTp042", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp043 { + get { + return ResourceManager.GetString("S_Seed_SdTp043", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp05 { + get { + return ResourceManager.GetString("S_Seed_SdTp05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp051 { + get { + return ResourceManager.GetString("S_Seed_SdTp051", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp052 { + get { + return ResourceManager.GetString("S_Seed_SdTp052", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp053 { + get { + return ResourceManager.GetString("S_Seed_SdTp053", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp054 { + get { + return ResourceManager.GetString("S_Seed_SdTp054", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp06 { + get { + return ResourceManager.GetString("S_Seed_SdTp06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp061 { + get { + return ResourceManager.GetString("S_Seed_SdTp061", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp07 { + get { + return ResourceManager.GetString("S_Seed_SdTp07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp071 { + get { + return ResourceManager.GetString("S_Seed_SdTp071", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp072 { + get { + return ResourceManager.GetString("S_Seed_SdTp072", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp073 { + get { + return ResourceManager.GetString("S_Seed_SdTp073", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp074 { + get { + return ResourceManager.GetString("S_Seed_SdTp074", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp08 { + get { + return ResourceManager.GetString("S_Seed_SdTp08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp081 { + get { + return ResourceManager.GetString("S_Seed_SdTp081", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp082 { + get { + return ResourceManager.GetString("S_Seed_SdTp082", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string S_Seed_SdTp083 { + get { + return ResourceManager.GetString("S_Seed_SdTp083", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Seed { + get { + return ResourceManager.GetString("Seed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedABCD_01 { + get { + return ResourceManager.GetString("SeedABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedABCD_02 { + get { + return ResourceManager.GetString("SeedABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedABCD_03 { + get { + return ResourceManager.GetString("SeedABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH { + get { + return ResourceManager.GetString("SeedEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH_01 { + get { + return ResourceManager.GetString("SeedEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH_02 { + get { + return ResourceManager.GetString("SeedEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SeedEFGH_03 { + get { + return ResourceManager.GetString("SeedEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appears as a bush of leaves with a similar texture to seaweed. Seeds are extended on long stalks and protected by a cage formation until ready to germinate.. + /// + public static string Shrubs_01 { + get { + return ResourceManager.GetString("Shrubs_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has vivid colouration when young that alters as it matures, its upper branches produce lines of small pea-like seed pods.. + /// + public static string Shrubs_02 { + get { + return ResourceManager.GetString("Shrubs_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has an almost metallic shine to its small leaves. Along its upper branches grow spherical spores, which each have a star-shaped opening to increase germination.. + /// + public static string Shrubs_03 { + get { + return ResourceManager.GetString("Shrubs_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to gives the appearance of flames, with vivid upright fronds extended from multiple stalks. The fronds are dotted with disc-sha ped spores that are distributed by the wind.. + /// + public static string Shrubs_04 { + get { + return ResourceManager.GetString("Shrubs_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to combines broad branches with long thin stalks, along which grow clusters of lightweight seed pods that are scaitered by light winds.. + /// + public static string Shrubs_05 { + get { + return ResourceManager.GetString("Shrubs_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces clusters of upright intertwining branches, which are crowned with bright seed sacks.. + /// + public static string Shrubs_06 { + get { + return ResourceManager.GetString("Shrubs_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is characterised by its spiky lower branches surrounding a thick central column, which is clotted with spores and with a dark crown.. + /// + public static string Shrubs_07 { + get { + return ResourceManager.GetString("Shrubs_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V1 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V11 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V12 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V13 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V14 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V14", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V15 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V15", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V16 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V16", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V2 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V21 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V21", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V22 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V22", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V23 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V23", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V24 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V24", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V3 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V31 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V31", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V32 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V33 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V33", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V34 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V34", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V4 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V41 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V41", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V42 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V42", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V43 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V43", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V44 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V44", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V5 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V51 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V51", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V52 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V52", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V53 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V53", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V54 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V54", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V55 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V55", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V56 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V56", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V6 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V61 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V61", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V62 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V62", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V63 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V63", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Small_Org_Moll01_V64 { + get { + return ResourceManager.GetString("Small_Org_Moll01_V64", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Sphere { + get { + return ResourceManager.GetString("Sphere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereABCD_01 { + get { + return ResourceManager.GetString("SphereABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereABCD_02 { + get { + return ResourceManager.GetString("SphereABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereABCD_03 { + get { + return ResourceManager.GetString("SphereABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereEFGH { + get { + return ResourceManager.GetString("SphereEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereEFGH_01 { + get { + return ResourceManager.GetString("SphereEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereEFGH_02 { + get { + return ResourceManager.GetString("SphereEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SphereEFGH_03 { + get { + return ResourceManager.GetString("SphereEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SPOI { + get { + return ResourceManager.GetString("SPOI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SPOI_Ball { + get { + return ResourceManager.GetString("SPOI_Ball", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SPOI_Root { + get { + return ResourceManager.GetString("SPOI_Root", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SPOI_SeedPolyp01 { + get { + return ResourceManager.GetString("SPOI_SeedPolyp01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SPOI_SeedPolyp01_V1 { + get { + return ResourceManager.GetString("SPOI_SeedPolyp01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SPOI_SeedWeed01 { + get { + return ResourceManager.GetString("SPOI_SeedWeed01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appears as a mixture of tight concentric ring patterns and mottled proto-leaves in a mixture of dark hues.. + /// + public static string Stratum_01 { + get { + return ResourceManager.GetString("Stratum_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to blends thick overlapping vines with irregular growths. with varying colours appearing in bands or streaks.. + /// + public static string Stratum_02 { + get { + return ResourceManager.GetString("Stratum_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to gives the appearance of overlapping rock plateaus, each with narrow bands of colouration.. + /// + public static string Stratum_03 { + get { + return ResourceManager.GetString("Stratum_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has a vaguely octopoid shape. Their pale semi-translucent upper domes can reveal colourful inner organisms, which contrast with their darker outstretched tentacles.. + /// + public static string Stratum_04 { + get { + return ResourceManager.GetString("Stratum_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appears as a series of unconnected ovoid sha pes across the ground, which are the protruding tips of the larger subterranean organism.. + /// + public static string Stratum_05 { + get { + return ResourceManager.GetString("Stratum_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to displays fleshy ovoid shapes that are connected in a narrow pattern across the ground. These are covered with streaks of round photosynthetic cells that absorb sunlight.. + /// + public static string Stratum_06 { + get { + return ResourceManager.GetString("Stratum_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has a thick rock-like outer shell, covered with an irregular lattice of brighter cells that absorb sunlight for photosynthesis.. + /// + public static string Stratum_07 { + get { + return ResourceManager.GetString("Stratum_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to forms broad interconnected ring structures, which are composed of narrow ridges to capture sunlight.. + /// + public static string Stratum_08 { + get { + return ResourceManager.GetString("Stratum_08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These biological structures extract resources from a planet and convert them into meta-alloys, a key component in the creation of Thargoid ships and technologies.. + /// + public static string Thargoid_Barnacle { + get { + return ResourceManager.GetString("Thargoid_Barnacle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These biological structures extract resources from a planet and convert them into meta-alloys, a key component in the creation of Thargoid ships and technologies.. + /// + public static string Thargoid_Barnacle1 { + get { + return ResourceManager.GetString("Thargoid_Barnacle1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These biological structures extract resources from a planet and convert them into meta-alloys, a key component in the creation of Thargoid ships and technologies.. + /// + public static string Thargoid_Barnacle2 { + get { + return ResourceManager.GetString("Thargoid_Barnacle2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Tube { + get { + return ResourceManager.GetString("Tube", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeABCD_01 { + get { + return ResourceManager.GetString("TubeABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeABCD_02 { + get { + return ResourceManager.GetString("TubeABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeABCD_03 { + get { + return ResourceManager.GetString("TubeABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeEFGH { + get { + return ResourceManager.GetString("TubeEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeEFGH_01 { + get { + return ResourceManager.GetString("TubeEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeEFGH_02 { + get { + return ResourceManager.GetString("TubeEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string TubeEFGH_03 { + get { + return ResourceManager.GetString("TubeEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is formed from hollow vertical cylinders that can reach heights of six metres. Mature specimens are capped with a downtu rned crown that can distribute seeds on the wind across a wide area.. + /// + public static string Tubus_01 { + get { + return ResourceManager.GetString("Tubus_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to grows a cluster of hollow stalks composed of rigid segments. Over time these become capped with a growth that flowers and produces seeds.. + /// + public static string Tubus_02 { + get { + return ResourceManager.GetString("Tubus_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to extends pale vertical stalks composed of rigid modules. Colourful fronds frequently appear in the gaps between segments and aid with controlling gaseous exchange.. + /// + public static string Tubus_03 { + get { + return ResourceManager.GetString("Tubus_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to is composed of squat tubes growing into a vertical spire. The upper pods of mature specimens produce explosive seed pods on their outer skin.. + /// + public static string Tubus_04 { + get { + return ResourceManager.GetString("Tubus_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has narrow pale segments and fronds growing between each module. A wide crown of leaves at the peak hold spores on their undersides, to germinate across a wide area.. + /// + public static string Tubus_05 { + get { + return ResourceManager.GetString("Tubus_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to extends large seed pods on thin stems above a cluster of bright leaves.. + /// + public static string Tussocks_01 { + get { + return ResourceManager.GetString("Tussocks_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to blends tough lower stalks with taller willowy reeds, which produce small pale spores.. + /// + public static string Tussocks_02 { + get { + return ResourceManager.GetString("Tussocks_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to produces thick intertwined leaves, above which sprout narrow stems crowned with seed pods.. + /// + public static string Tussocks_03 { + get { + return ResourceManager.GetString("Tussocks_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has tall sharp reeds reaching about two metres, characterised by narrow markings along their length.. + /// + public static string Tussocks_04 { + get { + return ResourceManager.GetString("Tussocks_04", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has very thin stalks carrying twin sets of seed sacks along their entire length, resembling links on a chain.. + /// + public static string Tussocks_05 { + get { + return ResourceManager.GetString("Tussocks_05", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has feather-shaped growths surrounding a single segmented stem which when mature is crowned with colourful seeds.. + /// + public static string Tussocks_06 { + get { + return ResourceManager.GetString("Tussocks_06", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to sprouts serrated leaves around thick stalks that produce dark seed pods.. + /// + public static string Tussocks_07 { + get { + return ResourceManager.GetString("Tussocks_07", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is characterised by leaves with a distinctive striped pattern that are bisected like a snake’s tongue. Mature versions also sprout smaller leaves which produce spores.. + /// + public static string Tussocks_08 { + get { + return ResourceManager.GetString("Tussocks_08", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to sprouts tapering leaves, with tips covered with colourful seed pods.. + /// + public static string Tussocks_09 { + get { + return ResourceManager.GetString("Tussocks_09", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to blends thick segmented lower growths with longer. narrower leaves. Mature versions have pale spores along the upper branches.. + /// + public static string Tussocks_10 { + get { + return ResourceManager.GetString("Tussocks_10", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has leaves that have a thick segmented lower half and a willowy upper half. Mature versions produce separate stalks that carry ovoid organisms clotted with spores.. + /// + public static string Tussocks_11 { + get { + return ResourceManager.GetString("Tussocks_11", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has thin tough leaves marked with dark stripes. From these sprout taller stalks with small leaves, from which seeds are released to the winds.. + /// + public static string Tussocks_12 { + get { + return ResourceManager.GetString("Tussocks_12", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to resembles a patch of tough. wiry grasses. Taller stalks carrying disc-shaped seed pods rise above the main organism when mature.. + /// + public static string Tussocks_13 { + get { + return ResourceManager.GetString("Tussocks_13", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to has thin reeds clustered around a central stalk. which is eventually crowned with spores.. + /// + public static string Tussocks_14 { + get { + return ResourceManager.GetString("Tussocks_14", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to is a squat cluster of leaves resembling thick matted hair. From the top of these sprout thick pods that carw a number of round beans.. + /// + public static string Tussocks_15 { + get { + return ResourceManager.GetString("Tussocks_15", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string Vents { + get { + return ResourceManager.GetString("Vents", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/OrganicSpeciesDesc.resx b/DataDefinitions/Properties/OrganicSpeciesDesc.resx new file mode 100644 index 0000000000..0fb4a213a0 --- /dev/null +++ b/DataDefinitions/Properties/OrganicSpeciesDesc.resx @@ -0,0 +1,849 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + has upright clumps of long serrated leaves, which can open up to expose a reproductive organ containing tiny round seeds. + + + has an interleaved crown of mottled leaves that can grow to head height, with explosive seed pods emerging on long protruding stalks. + + + has long spiky leaves that can reach over two metres high surrounding a single reproductive organ on a long central stalk. + + + have a circle of upturned leaves marked with patterns, surrounding a bright fleshy pod with darker markings which matures in their centre. + + + has wide flat leaves on a heavy bark base that can reach huge sizes. and sprout a dome-shaped reproductive organ at their peak. + + + thrive on sunlight in atmospheres rich with carbon dioxide. They cause blanket coloration across a planetary surface. + + + survives exclusively on atmospheric helium. They are distinguished by a radial pattern extending outward from the colony’s centre. + + + thrive on the heat generated by carbon-based volcanic activity and appear as long swirling ridges on the surface. + + + converts energy from neon-based atmospheres, creating looping whirls of bright colour. + + + survive on worlds with argon—based atmospheres, and appear as a collection of tight loops on the ground. + + + Is found in ammonia-based atmospheres that lives in sunlight. A colony’s appearance resembles an intricate maze. + + + appear as an intricate web pattern. They thrive in proximity to helium-based, iron-based and silicate-based volcanic sites. + + + can be found in nitrogen atmospheres, and form a shapeless mass across the surface. + + + are dependent upon oxygen atmospheres, which creates random swirling patterns across the ground. + + + thrives on atmospheric methane, appearing as a network of linked bubble paiterns. + + + convert geothermal heat from nitrogen-based volcanic sites into energy. They appear as long interlinked strands across the surface. + + + is a sunlight-converting bacterial species on worlds with atmospheres dominated by water and sulphur dioxide. Their colonies resemble a brain-shaped mass of smaller connected cells. + + + appear as an intricate web pattern. They thrive in proximity to helium-based, iron-based and silicate-based volcanic sites. + + + can reach over three metres in height. They are composed of multiple growths that sprout sealed pods at their peaks, which open up to distribute seeds. + + + appears as a squat growth with a latficecl upper surface, which eventually produces a cluster of seed pods. + + + appear as a tall collection of cylinders linked by an undulating membrane and topped with a spiky crown. They often have a spiny life-form attached that is thought to form a symbiotic relationship with the larger organism, although the nature of this is not understood. + + + has a globular base, from which extend vertical cylinders that can reach over four metres. Rounded pods grow in clusters along the cylinders, which break open to scatter seeds. + + + appears as a swollen five-sided growth, reaching over two metres high and topped with an intersected crown. + + + grows a broad, tear-shaped shield to protect the sensitive organism from extreme sunlight. The shield’s ridges help to direct Water droplets down into the soil. + + + produces a curved shield that resembles a large pearl in shape and texture. Up to three central organisms grow within it upon a supporting bed of leaves. + + + grows an angular shield with a mirrored exterior to protect the spiky organisms. This species can be found on planets orbiting their parent star at a distance of 5 AU or greater. + + + relies on heat sources to survive. As the bisected growth increases in size. it sprouts a single stalk topped with an array of luminous fronds that facilitate metabolism. + + + are found on worlds with nitrogen-based atmospheres. Their rounded rock-like structure splits part to extend long stalks topped with loops. + + + thrives in atmospheres rich with carbon dioxide. The lip-like upper opening cracks apart to allow a vertical growth of spiky leaves and bright seeds to stretch upward. + + + resembles a ridged, bisected egg until they crack in half, allowing a thin stalk to sprout from its fleshy insides. This is covered with cloughnut—shaped pods that create locations for chemical exchange. + + + + + + extends a tip of four connected loops above the ice, each covered with brightly luminous fronds. This species is typically found on planets orbiting bright white stars. + + + protrude bioluminescent stalks that radiate out in all directions. It is thought that this species may have an unspecified link with the proximity of nebulae to its host planet. + + + Is found in atmospheres dominated by neon, appearing as a pyramid—shaped cluster of frilled sections. + + + thrive in argon atmospheres, and can reach four metres in height. They feature huge leaf-like structures to capture sunlight for conversion to energy. + + + can he found on ice worlds with argon-rich atmospheres. They produce broad hoop-shaped structures to better reflect weak sunlight onto themselves for photosynthesis. + + + exists in atmospheres with a heavy concentration of nitrogen. Growing up along the main stalk are bright gem-like pods. which can break off and create new colonies. + + + exists on worlds with oxygen atmospheres. They produce coiling wave-shaped structures which tilt toward sunlight. + + + thrives in methane—based atmospheres, sprouting a cluster of cylindrical tubes directly from the ice. + + + Is found near sites of carbon—based volcanism, appearing as a thin upright tube. An inner organism protrudes from an opening at its peak to increase heat absorption. + + + is an exception among its kin. This fumerola species seems to have an arbitrary preference of specific volcanism types which have yet to be explicitly linked in any way. They appear as long vertical stalks with smaller fronds that can stretch out. + + + prefers nitrogen-based volcanism. They produce an ovoid organism with dotted markings, which sits on top of a thin stalk. + + + can be found near sites of water-based volcanic activity. They appear as small dark clusters with ridged folds that trap heat within. + + + produces vertical clusters interspersed with spore pods atop thin stalks. allowing them to break off and scatter to reproduce elsewhere. + + + thrives on geothermal energy. and can produce two-metre high tower structures composed of tightly clustered cylinders. + + + features clusters of mottled bubble-shaped growths atop a central stalk. These contain spores that can be exposed to the winds to facilitate distribution. + + + resembles an upturned jellyfish, emerging from a solid base buried within the substrate. The exposed part is dominated by fleshy reproductive organisms that shed organic tissue. This tissue can float on the light breeze and form a new organism if it lands in the right location. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + can grow to over six metres across. They produce wide ridged frills for metabolic interactions including aosorbing sunlight for energy production. + + + appears as half-buried discs with radial patterns, which may resemble natural rook formations from a distance. They absorb geothermal energy from below the surface as well as available heat sources above ground. + + + produces coiling spiral structures up to six metres wide. There are ridged folds on their upturned surfaces designed to capture sunlight. + + + grows a single thick stalk from which emerges a wide, broadly circular, pitted endoskeleton. This structure is designed to dramatically increase the surface area to volume ofthe organism, facilitating chemical capture and chemosynthesis on its catalytically active surface. + + + produces a stacked series of spiral structures up to about three metres. These ridged features are upturned to better absorb sunlight for photosynthesis. + + + has a single broad stalk from which extend wide circular structures, with the largest plate capping the top to maximise sunlight absorption. + + + grows a thick latticed structure for protection. A fine translucent membrane stretches between its gaps, allowing sunlight to penetrate and reach the inner organism for photosynthesis. + + + produces a thick lattice of trunks in a deltahedron shape. This grows around and above the globular central organism, and helps to capture, retain and focus geothermal heat for thermosynthesis. + + + has a body that is suspended above ground inside a sphere-shaped translucent membrane. This is filled with chemical-rich fluid that both protects the organism and provides the chemical soup needed for metabolism. Chemical exchange is controlled actively through the membrane and passively through the extensive root structure. + + + + + + + + + + + + + + + + + + + + + + + + + + + appears as a bush of leaves with a similar texture to seaweed. Seeds are extended on long stalks and protected by a cage formation until ready to germinate. + + + has vivid colouration when young that alters as it matures, its upper branches produce lines of small pea-like seed pods. + + + has an almost metallic shine to its small leaves. Along its upper branches grow spherical spores, which each have a star-shaped opening to increase germination. + + + gives the appearance of flames, with vivid upright fronds extended from multiple stalks. The fronds are dotted with disc-sha ped spores that are distributed by the wind. + + + combines broad branches with long thin stalks, along which grow clusters of lightweight seed pods that are scaitered by light winds. + + + produces clusters of upright intertwining branches, which are crowned with bright seed sacks. + + + Is characterised by its spiky lower branches surrounding a thick central column, which is clotted with spores and with a dark crown. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + appears as a mixture of tight concentric ring patterns and mottled proto-leaves in a mixture of dark hues. + + + blends thick overlapping vines with irregular growths. with varying colours appearing in bands or streaks. + + + gives the appearance of overlapping rock plateaus, each with narrow bands of colouration. + + + has a vaguely octopoid shape. Their pale semi-translucent upper domes can reveal colourful inner organisms, which contrast with their darker outstretched tentacles. + + + appears as a series of unconnected ovoid sha pes across the ground, which are the protruding tips of the larger subterranean organism. + + + displays fleshy ovoid shapes that are connected in a narrow pattern across the ground. These are covered with streaks of round photosynthetic cells that absorb sunlight. + + + has a thick rock-like outer shell, covered with an irregular lattice of brighter cells that absorb sunlight for photosynthesis. + + + forms broad interconnected ring structures, which are composed of narrow ridges to capture sunlight. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + These biological structures extract resources from a planet and convert them into meta-alloys, a key component in the creation of Thargoid ships and technologies. + + + These biological structures extract resources from a planet and convert them into meta-alloys, a key component in the creation of Thargoid ships and technologies. + + + These biological structures extract resources from a planet and convert them into meta-alloys, a key component in the creation of Thargoid ships and technologies. + + + + + + + + + + + + + + + + + + + + + + + + + + + Is formed from hollow vertical cylinders that can reach heights of six metres. Mature specimens are capped with a downtu rned crown that can distribute seeds on the wind across a wide area. + + + grows a cluster of hollow stalks composed of rigid segments. Over time these become capped with a growth that flowers and produces seeds. + + + extends pale vertical stalks composed of rigid modules. Colourful fronds frequently appear in the gaps between segments and aid with controlling gaseous exchange. + + + is composed of squat tubes growing into a vertical spire. The upper pods of mature specimens produce explosive seed pods on their outer skin. + + + has narrow pale segments and fronds growing between each module. A wide crown of leaves at the peak hold spores on their undersides, to germinate across a wide area. + + + extends large seed pods on thin stems above a cluster of bright leaves. + + + blends tough lower stalks with taller willowy reeds, which produce small pale spores. + + + produces thick intertwined leaves, above which sprout narrow stems crowned with seed pods. + + + has tall sharp reeds reaching about two metres, characterised by narrow markings along their length. + + + has very thin stalks carrying twin sets of seed sacks along their entire length, resembling links on a chain. + + + has feather-shaped growths surrounding a single segmented stem which when mature is crowned with colourful seeds. + + + sprouts serrated leaves around thick stalks that produce dark seed pods. + + + Is characterised by leaves with a distinctive striped pattern that are bisected like a snake’s tongue. Mature versions also sprout smaller leaves which produce spores. + + + sprouts tapering leaves, with tips covered with colourful seed pods. + + + blends thick segmented lower growths with longer. narrower leaves. Mature versions have pale spores along the upper branches. + + + has leaves that have a thick segmented lower half and a willowy upper half. Mature versions produce separate stalks that carry ovoid organisms clotted with spores. + + + has thin tough leaves marked with dark stripes. From these sprout taller stalks with small leaves, from which seeds are released to the winds. + + + resembles a patch of tough. wiry grasses. Taller stalks carrying disc-shaped seed pods rise above the main organism when mature. + + + has thin reeds clustered around a central stalk. which is eventually crowned with spores. + + + is a squat cluster of leaves resembling thick matted hair. From the top of these sprout thick pods that carw a number of round beans. + + + + + \ No newline at end of file diff --git a/DataDefinitions/Properties/OrganicVariant.Designer.cs b/DataDefinitions/Properties/OrganicVariant.Designer.cs new file mode 100644 index 0000000000..e7dc0de1aa --- /dev/null +++ b/DataDefinitions/Properties/OrganicVariant.Designer.cs @@ -0,0 +1,8307 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class OrganicVariant { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal OrganicVariant() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.OrganicVariant", typeof(OrganicVariant).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Aleoids_01_A { + get { + return ResourceManager.GetString("Aleoids_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Aleoids_01_B { + get { + return ResourceManager.GetString("Aleoids_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Aleoids_01_D { + get { + return ResourceManager.GetString("Aleoids_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Aleoids_01_F { + get { + return ResourceManager.GetString("Aleoids_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Aleoids_01_K { + get { + return ResourceManager.GetString("Aleoids_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Aleoids_01_L { + get { + return ResourceManager.GetString("Aleoids_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Aleoids_01_M { + get { + return ResourceManager.GetString("Aleoids_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Aleoids_01_N { + get { + return ResourceManager.GetString("Aleoids_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Aleoids_01_T { + get { + return ResourceManager.GetString("Aleoids_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Aleoids_01_TTS { + get { + return ResourceManager.GetString("Aleoids_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Aleoids_01_W { + get { + return ResourceManager.GetString("Aleoids_01_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Aleoids_02_A { + get { + return ResourceManager.GetString("Aleoids_02_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Aleoids_02_B { + get { + return ResourceManager.GetString("Aleoids_02_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Aleoids_02_D { + get { + return ResourceManager.GetString("Aleoids_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Aleoids_02_F { + get { + return ResourceManager.GetString("Aleoids_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Aleoids_02_K { + get { + return ResourceManager.GetString("Aleoids_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Aleoids_02_L { + get { + return ResourceManager.GetString("Aleoids_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Aleoids_02_M { + get { + return ResourceManager.GetString("Aleoids_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Aleoids_02_N { + get { + return ResourceManager.GetString("Aleoids_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Aleoids_02_T { + get { + return ResourceManager.GetString("Aleoids_02_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Aleoids_02_TTS { + get { + return ResourceManager.GetString("Aleoids_02_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Aleoids_02_Y { + get { + return ResourceManager.GetString("Aleoids_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Aleoids_03_A { + get { + return ResourceManager.GetString("Aleoids_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Aleoids_03_B { + get { + return ResourceManager.GetString("Aleoids_03_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Aleoids_03_D { + get { + return ResourceManager.GetString("Aleoids_03_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Aleoids_03_F { + get { + return ResourceManager.GetString("Aleoids_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Aleoids_03_K { + get { + return ResourceManager.GetString("Aleoids_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Aleoids_03_L { + get { + return ResourceManager.GetString("Aleoids_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Aleoids_03_M { + get { + return ResourceManager.GetString("Aleoids_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Aleoids_03_N { + get { + return ResourceManager.GetString("Aleoids_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Aleoids_03_T { + get { + return ResourceManager.GetString("Aleoids_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Aleoids_03_TTS { + get { + return ResourceManager.GetString("Aleoids_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Aleoids_04_A { + get { + return ResourceManager.GetString("Aleoids_04_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Aleoids_04_B { + get { + return ResourceManager.GetString("Aleoids_04_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Aleoids_04_F { + get { + return ResourceManager.GetString("Aleoids_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Aleoids_04_K { + get { + return ResourceManager.GetString("Aleoids_04_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Aleoids_04_L { + get { + return ResourceManager.GetString("Aleoids_04_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Aleoids_04_M { + get { + return ResourceManager.GetString("Aleoids_04_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Aleoids_04_N { + get { + return ResourceManager.GetString("Aleoids_04_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Aleoids_04_T { + get { + return ResourceManager.GetString("Aleoids_04_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Aleoids_04_TTS { + get { + return ResourceManager.GetString("Aleoids_04_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Aleoids_04_W { + get { + return ResourceManager.GetString("Aleoids_04_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Aleoids_04_Y { + get { + return ResourceManager.GetString("Aleoids_04_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Aleoids_05_A { + get { + return ResourceManager.GetString("Aleoids_05_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Aleoids_05_B { + get { + return ResourceManager.GetString("Aleoids_05_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Aleoids_05_F { + get { + return ResourceManager.GetString("Aleoids_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Aleoids_05_K { + get { + return ResourceManager.GetString("Aleoids_05_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Aleoids_05_L { + get { + return ResourceManager.GetString("Aleoids_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Aleoids_05_M { + get { + return ResourceManager.GetString("Aleoids_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Aleoids_05_N { + get { + return ResourceManager.GetString("Aleoids_05_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Aleoids_05_T { + get { + return ResourceManager.GetString("Aleoids_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Aleoids_05_TTS { + get { + return ResourceManager.GetString("Aleoids_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Aleoids_05_Y { + get { + return ResourceManager.GetString("Aleoids_05_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Bacterial_01_A { + get { + return ResourceManager.GetString("Bacterial_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Bacterial_01_Ae { + get { + return ResourceManager.GetString("Bacterial_01_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Bacterial_01_B { + get { + return ResourceManager.GetString("Bacterial_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Bacterial_01_D { + get { + return ResourceManager.GetString("Bacterial_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_01_F { + get { + return ResourceManager.GetString("Bacterial_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Bacterial_01_G { + get { + return ResourceManager.GetString("Bacterial_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Bacterial_01_K { + get { + return ResourceManager.GetString("Bacterial_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Bacterial_01_L { + get { + return ResourceManager.GetString("Bacterial_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Bacterial_01_M { + get { + return ResourceManager.GetString("Bacterial_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Bacterial_01_N { + get { + return ResourceManager.GetString("Bacterial_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Bacterial_01_O { + get { + return ResourceManager.GetString("Bacterial_01_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_01_T { + get { + return ResourceManager.GetString("Bacterial_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Bacterial_01_TTS { + get { + return ResourceManager.GetString("Bacterial_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Bacterial_01_W { + get { + return ResourceManager.GetString("Bacterial_01_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Bacterial_01_Y { + get { + return ResourceManager.GetString("Bacterial_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Bacterial_02_Antimony { + get { + return ResourceManager.GetString("Bacterial_02_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Bacterial_02_Polonium { + get { + return ResourceManager.GetString("Bacterial_02_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Bacterial_02_Ruthenium { + get { + return ResourceManager.GetString("Bacterial_02_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Bacterial_02_Technetium { + get { + return ResourceManager.GetString("Bacterial_02_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Bacterial_02_Tellurium { + get { + return ResourceManager.GetString("Bacterial_02_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Bacterial_02_Yttrium { + get { + return ResourceManager.GetString("Bacterial_02_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Bacterial_03_Cadmium { + get { + return ResourceManager.GetString("Bacterial_03_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Bacterial_03_Mercury { + get { + return ResourceManager.GetString("Bacterial_03_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_03_Molybdenum { + get { + return ResourceManager.GetString("Bacterial_03_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_03_Niobium { + get { + return ResourceManager.GetString("Bacterial_03_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Bacterial_03_Tin { + get { + return ResourceManager.GetString("Bacterial_03_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Bacterial_03_Tungsten { + get { + return ResourceManager.GetString("Bacterial_03_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Bacterial_04_Antimony { + get { + return ResourceManager.GetString("Bacterial_04_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Bacterial_04_Polonium { + get { + return ResourceManager.GetString("Bacterial_04_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Bacterial_04_Ruthenium { + get { + return ResourceManager.GetString("Bacterial_04_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_04_Technetium { + get { + return ResourceManager.GetString("Bacterial_04_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Bacterial_04_Tellurium { + get { + return ResourceManager.GetString("Bacterial_04_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Bacterial_04_Yttrium { + get { + return ResourceManager.GetString("Bacterial_04_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Bacterial_05_Antimony { + get { + return ResourceManager.GetString("Bacterial_05_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Bacterial_05_Polonium { + get { + return ResourceManager.GetString("Bacterial_05_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Bacterial_05_Ruthenium { + get { + return ResourceManager.GetString("Bacterial_05_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Bacterial_05_Technetium { + get { + return ResourceManager.GetString("Bacterial_05_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_05_Tellurium { + get { + return ResourceManager.GetString("Bacterial_05_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_05_Yttrium { + get { + return ResourceManager.GetString("Bacterial_05_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Bacterial_06_A { + get { + return ResourceManager.GetString("Bacterial_06_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Bacterial_06_B { + get { + return ResourceManager.GetString("Bacterial_06_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Bacterial_06_D { + get { + return ResourceManager.GetString("Bacterial_06_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_06_F { + get { + return ResourceManager.GetString("Bacterial_06_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Bacterial_06_G { + get { + return ResourceManager.GetString("Bacterial_06_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Bacterial_06_K { + get { + return ResourceManager.GetString("Bacterial_06_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Bacterial_06_L { + get { + return ResourceManager.GetString("Bacterial_06_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Bacterial_06_M { + get { + return ResourceManager.GetString("Bacterial_06_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Bacterial_06_N { + get { + return ResourceManager.GetString("Bacterial_06_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Bacterial_06_O { + get { + return ResourceManager.GetString("Bacterial_06_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_06_T { + get { + return ResourceManager.GetString("Bacterial_06_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Bacterial_06_TTS { + get { + return ResourceManager.GetString("Bacterial_06_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Bacterial_06_W { + get { + return ResourceManager.GetString("Bacterial_06_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Bacterial_06_Y { + get { + return ResourceManager.GetString("Bacterial_06_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Bacterial_07_Cadmium { + get { + return ResourceManager.GetString("Bacterial_07_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Bacterial_07_Mercury { + get { + return ResourceManager.GetString("Bacterial_07_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Bacterial_07_Molybdenum { + get { + return ResourceManager.GetString("Bacterial_07_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Bacterial_07_Niobium { + get { + return ResourceManager.GetString("Bacterial_07_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Bacterial_07_Tin { + get { + return ResourceManager.GetString("Bacterial_07_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Bacterial_07_Tungsten { + get { + return ResourceManager.GetString("Bacterial_07_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_08_Antimony { + get { + return ResourceManager.GetString("Bacterial_08_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_08_Polonium { + get { + return ResourceManager.GetString("Bacterial_08_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Bacterial_08_Ruthenium { + get { + return ResourceManager.GetString("Bacterial_08_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Bacterial_08_Technetium { + get { + return ResourceManager.GetString("Bacterial_08_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Bacterial_08_Tellurium { + get { + return ResourceManager.GetString("Bacterial_08_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Bacterial_08_Yttrium { + get { + return ResourceManager.GetString("Bacterial_08_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_09_Antimony { + get { + return ResourceManager.GetString("Bacterial_09_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Bacterial_09_Polonium { + get { + return ResourceManager.GetString("Bacterial_09_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Bacterial_09_Ruthenium { + get { + return ResourceManager.GetString("Bacterial_09_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_09_Technetium { + get { + return ResourceManager.GetString("Bacterial_09_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Bacterial_09_Tellurium { + get { + return ResourceManager.GetString("Bacterial_09_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Bacterial_09_Yttrium { + get { + return ResourceManager.GetString("Bacterial_09_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Bacterial_10_Antimony { + get { + return ResourceManager.GetString("Bacterial_10_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Bacterial_10_Polonium { + get { + return ResourceManager.GetString("Bacterial_10_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Bacterial_10_Ruthenium { + get { + return ResourceManager.GetString("Bacterial_10_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Bacterial_10_Technetium { + get { + return ResourceManager.GetString("Bacterial_10_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_10_Tellurium { + get { + return ResourceManager.GetString("Bacterial_10_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_10_Yttrium { + get { + return ResourceManager.GetString("Bacterial_10_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_11_Cadmium { + get { + return ResourceManager.GetString("Bacterial_11_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Bacterial_11_Mercury { + get { + return ResourceManager.GetString("Bacterial_11_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Bacterial_11_Molybdenum { + get { + return ResourceManager.GetString("Bacterial_11_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Bacterial_11_Niobium { + get { + return ResourceManager.GetString("Bacterial_11_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_11_Tin { + get { + return ResourceManager.GetString("Bacterial_11_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Bacterial_11_Tungsten { + get { + return ResourceManager.GetString("Bacterial_11_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Bacterial_12_A { + get { + return ResourceManager.GetString("Bacterial_12_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Bacterial_12_Ae { + get { + return ResourceManager.GetString("Bacterial_12_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Bacterial_12_B { + get { + return ResourceManager.GetString("Bacterial_12_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Bacterial_12_D { + get { + return ResourceManager.GetString("Bacterial_12_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_12_F { + get { + return ResourceManager.GetString("Bacterial_12_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Bacterial_12_G { + get { + return ResourceManager.GetString("Bacterial_12_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Bacterial_12_K { + get { + return ResourceManager.GetString("Bacterial_12_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Bacterial_12_L { + get { + return ResourceManager.GetString("Bacterial_12_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Bacterial_12_M { + get { + return ResourceManager.GetString("Bacterial_12_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Bacterial_12_N { + get { + return ResourceManager.GetString("Bacterial_12_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Bacterial_12_O { + get { + return ResourceManager.GetString("Bacterial_12_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_12_T { + get { + return ResourceManager.GetString("Bacterial_12_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Bacterial_12_TTS { + get { + return ResourceManager.GetString("Bacterial_12_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Bacterial_12_W { + get { + return ResourceManager.GetString("Bacterial_12_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Bacterial_12_Y { + get { + return ResourceManager.GetString("Bacterial_12_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Bacterial_13_Cadmium { + get { + return ResourceManager.GetString("Bacterial_13_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Bacterial_13_Mercury { + get { + return ResourceManager.GetString("Bacterial_13_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Bacterial_13_Molybdenum { + get { + return ResourceManager.GetString("Bacterial_13_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Bacterial_13_Niobium { + get { + return ResourceManager.GetString("Bacterial_13_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Bacterial_13_Tin { + get { + return ResourceManager.GetString("Bacterial_13_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Bacterial_13_Tungsten { + get { + return ResourceManager.GetString("Bacterial_13_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Cactoid_01_A { + get { + return ResourceManager.GetString("Cactoid_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Cactoid_01_D { + get { + return ResourceManager.GetString("Cactoid_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Cactoid_01_F { + get { + return ResourceManager.GetString("Cactoid_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Cactoid_01_G { + get { + return ResourceManager.GetString("Cactoid_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Cactoid_01_L { + get { + return ResourceManager.GetString("Cactoid_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Cactoid_01_M { + get { + return ResourceManager.GetString("Cactoid_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Cactoid_01_N { + get { + return ResourceManager.GetString("Cactoid_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Cactoid_01_T { + get { + return ResourceManager.GetString("Cactoid_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Cactoid_01_TTS { + get { + return ResourceManager.GetString("Cactoid_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Cactoid_01_Y { + get { + return ResourceManager.GetString("Cactoid_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Cactoid_02_A { + get { + return ResourceManager.GetString("Cactoid_02_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Cactoid_02_D { + get { + return ResourceManager.GetString("Cactoid_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Cactoid_02_F { + get { + return ResourceManager.GetString("Cactoid_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Cactoid_02_G { + get { + return ResourceManager.GetString("Cactoid_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Cactoid_02_L { + get { + return ResourceManager.GetString("Cactoid_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Cactoid_02_M { + get { + return ResourceManager.GetString("Cactoid_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Cactoid_02_N { + get { + return ResourceManager.GetString("Cactoid_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Cactoid_02_O { + get { + return ResourceManager.GetString("Cactoid_02_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Cactoid_02_T { + get { + return ResourceManager.GetString("Cactoid_02_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Cactoid_02_TTS { + get { + return ResourceManager.GetString("Cactoid_02_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Cactoid_02_W { + get { + return ResourceManager.GetString("Cactoid_02_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Cactoid_02_Y { + get { + return ResourceManager.GetString("Cactoid_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Cactoid_03_A { + get { + return ResourceManager.GetString("Cactoid_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Cactoid_03_F { + get { + return ResourceManager.GetString("Cactoid_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Cactoid_03_G { + get { + return ResourceManager.GetString("Cactoid_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Cactoid_03_L { + get { + return ResourceManager.GetString("Cactoid_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Cactoid_03_M { + get { + return ResourceManager.GetString("Cactoid_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Cactoid_03_N { + get { + return ResourceManager.GetString("Cactoid_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Cactoid_03_T { + get { + return ResourceManager.GetString("Cactoid_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Cactoid_03_TTS { + get { + return ResourceManager.GetString("Cactoid_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Cactoid_04_A { + get { + return ResourceManager.GetString("Cactoid_04_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Cactoid_04_D { + get { + return ResourceManager.GetString("Cactoid_04_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Cactoid_04_F { + get { + return ResourceManager.GetString("Cactoid_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Cactoid_04_G { + get { + return ResourceManager.GetString("Cactoid_04_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Cactoid_04_L { + get { + return ResourceManager.GetString("Cactoid_04_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Cactoid_04_M { + get { + return ResourceManager.GetString("Cactoid_04_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Cactoid_04_N { + get { + return ResourceManager.GetString("Cactoid_04_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Cactoid_04_T { + get { + return ResourceManager.GetString("Cactoid_04_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Cactoid_04_TTS { + get { + return ResourceManager.GetString("Cactoid_04_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Cactoid_05_A { + get { + return ResourceManager.GetString("Cactoid_05_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Cactoid_05_D { + get { + return ResourceManager.GetString("Cactoid_05_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Cactoid_05_F { + get { + return ResourceManager.GetString("Cactoid_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Cactoid_05_G { + get { + return ResourceManager.GetString("Cactoid_05_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Cactoid_05_L { + get { + return ResourceManager.GetString("Cactoid_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Cactoid_05_M { + get { + return ResourceManager.GetString("Cactoid_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Cactoid_05_N { + get { + return ResourceManager.GetString("Cactoid_05_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Cactoid_05_T { + get { + return ResourceManager.GetString("Cactoid_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Cactoid_05_TTS { + get { + return ResourceManager.GetString("Cactoid_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Cactoid_05_Y { + get { + return ResourceManager.GetString("Cactoid_05_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Clypeus_01_A { + get { + return ResourceManager.GetString("Clypeus_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Clypeus_01_B { + get { + return ResourceManager.GetString("Clypeus_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Clypeus_01_D { + get { + return ResourceManager.GetString("Clypeus_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Clypeus_01_F { + get { + return ResourceManager.GetString("Clypeus_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Clypeus_01_G { + get { + return ResourceManager.GetString("Clypeus_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Clypeus_01_K { + get { + return ResourceManager.GetString("Clypeus_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Clypeus_01_L { + get { + return ResourceManager.GetString("Clypeus_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Clypeus_01_M { + get { + return ResourceManager.GetString("Clypeus_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Clypeus_01_N { + get { + return ResourceManager.GetString("Clypeus_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Clypeus_01_Y { + get { + return ResourceManager.GetString("Clypeus_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Clypeus_02_A { + get { + return ResourceManager.GetString("Clypeus_02_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Clypeus_02_B { + get { + return ResourceManager.GetString("Clypeus_02_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Clypeus_02_F { + get { + return ResourceManager.GetString("Clypeus_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Clypeus_02_G { + get { + return ResourceManager.GetString("Clypeus_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Clypeus_02_K { + get { + return ResourceManager.GetString("Clypeus_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Clypeus_02_L { + get { + return ResourceManager.GetString("Clypeus_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Clypeus_02_M { + get { + return ResourceManager.GetString("Clypeus_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Clypeus_02_N { + get { + return ResourceManager.GetString("Clypeus_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Clypeus_02_Y { + get { + return ResourceManager.GetString("Clypeus_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Clypeus_03_A { + get { + return ResourceManager.GetString("Clypeus_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Clypeus_03_B { + get { + return ResourceManager.GetString("Clypeus_03_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Clypeus_03_F { + get { + return ResourceManager.GetString("Clypeus_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Clypeus_03_G { + get { + return ResourceManager.GetString("Clypeus_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Clypeus_03_K { + get { + return ResourceManager.GetString("Clypeus_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Clypeus_03_M { + get { + return ResourceManager.GetString("Clypeus_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Clypeus_03_N { + get { + return ResourceManager.GetString("Clypeus_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Conchas_01_Cadmium { + get { + return ResourceManager.GetString("Conchas_01_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Conchas_01_Mercury { + get { + return ResourceManager.GetString("Conchas_01_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Conchas_01_Molybdenum { + get { + return ResourceManager.GetString("Conchas_01_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Conchas_01_Niobium { + get { + return ResourceManager.GetString("Conchas_01_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Conchas_01_Tin { + get { + return ResourceManager.GetString("Conchas_01_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Conchas_01_Tungsten { + get { + return ResourceManager.GetString("Conchas_01_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Conchas_02_A { + get { + return ResourceManager.GetString("Conchas_02_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Conchas_02_B { + get { + return ResourceManager.GetString("Conchas_02_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Conchas_02_D { + get { + return ResourceManager.GetString("Conchas_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Conchas_02_F { + get { + return ResourceManager.GetString("Conchas_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Conchas_02_G { + get { + return ResourceManager.GetString("Conchas_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Conchas_02_K { + get { + return ResourceManager.GetString("Conchas_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Conchas_02_L { + get { + return ResourceManager.GetString("Conchas_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Conchas_02_N { + get { + return ResourceManager.GetString("Conchas_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Conchas_02_Y { + get { + return ResourceManager.GetString("Conchas_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Conchas_03_A { + get { + return ResourceManager.GetString("Conchas_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Conchas_03_B { + get { + return ResourceManager.GetString("Conchas_03_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Conchas_03_D { + get { + return ResourceManager.GetString("Conchas_03_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Conchas_03_F { + get { + return ResourceManager.GetString("Conchas_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Conchas_03_G { + get { + return ResourceManager.GetString("Conchas_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Conchas_03_K { + get { + return ResourceManager.GetString("Conchas_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Conchas_03_L { + get { + return ResourceManager.GetString("Conchas_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Conchas_03_N { + get { + return ResourceManager.GetString("Conchas_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Conchas_03_W { + get { + return ResourceManager.GetString("Conchas_03_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Conchas_03_Y { + get { + return ResourceManager.GetString("Conchas_03_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Conchas_04_Antimony { + get { + return ResourceManager.GetString("Conchas_04_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Conchas_04_Polonium { + get { + return ResourceManager.GetString("Conchas_04_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Conchas_04_Ruthenium { + get { + return ResourceManager.GetString("Conchas_04_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Conchas_04_Technetium { + get { + return ResourceManager.GetString("Conchas_04_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Conchas_04_Tellurium { + get { + return ResourceManager.GetString("Conchas_04_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Conchas_04_Yttrium { + get { + return ResourceManager.GetString("Conchas_04_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bark Mounds. + /// + internal static string Cone { + get { + return ResourceManager.GetString("Cone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Electricae_01_Antimony { + get { + return ResourceManager.GetString("Electricae_01_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Electricae_01_Polonium { + get { + return ResourceManager.GetString("Electricae_01_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Electricae_01_Ruthenium { + get { + return ResourceManager.GetString("Electricae_01_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Electricae_01_Technetium { + get { + return ResourceManager.GetString("Electricae_01_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Electricae_01_Tellurium { + get { + return ResourceManager.GetString("Electricae_01_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Electricae_01_Yttrium { + get { + return ResourceManager.GetString("Electricae_01_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Electricae_02_Antimony { + get { + return ResourceManager.GetString("Electricae_02_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Electricae_02_Polonium { + get { + return ResourceManager.GetString("Electricae_02_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Electricae_02_Ruthenium { + get { + return ResourceManager.GetString("Electricae_02_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Electricae_02_Technetium { + get { + return ResourceManager.GetString("Electricae_02_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Electricae_02_Tellurium { + get { + return ResourceManager.GetString("Electricae_02_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Electricae_02_Yttrium { + get { + return ResourceManager.GetString("Electricae_02_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fonticulus_01_A { + get { + return ResourceManager.GetString("Fonticulus_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Fonticulus_01_Ae { + get { + return ResourceManager.GetString("Fonticulus_01_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fonticulus_01_B { + get { + return ResourceManager.GetString("Fonticulus_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Fonticulus_01_D { + get { + return ResourceManager.GetString("Fonticulus_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fonticulus_01_F { + get { + return ResourceManager.GetString("Fonticulus_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Fonticulus_01_G { + get { + return ResourceManager.GetString("Fonticulus_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Fonticulus_01_K { + get { + return ResourceManager.GetString("Fonticulus_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Fonticulus_01_L { + get { + return ResourceManager.GetString("Fonticulus_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Fonticulus_01_M { + get { + return ResourceManager.GetString("Fonticulus_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Fonticulus_01_N { + get { + return ResourceManager.GetString("Fonticulus_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fonticulus_01_T { + get { + return ResourceManager.GetString("Fonticulus_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fonticulus_01_TTS { + get { + return ResourceManager.GetString("Fonticulus_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Fonticulus_01_Y { + get { + return ResourceManager.GetString("Fonticulus_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fonticulus_02_A { + get { + return ResourceManager.GetString("Fonticulus_02_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Fonticulus_02_Ae { + get { + return ResourceManager.GetString("Fonticulus_02_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fonticulus_02_B { + get { + return ResourceManager.GetString("Fonticulus_02_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Fonticulus_02_D { + get { + return ResourceManager.GetString("Fonticulus_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fonticulus_02_F { + get { + return ResourceManager.GetString("Fonticulus_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Fonticulus_02_G { + get { + return ResourceManager.GetString("Fonticulus_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Fonticulus_02_K { + get { + return ResourceManager.GetString("Fonticulus_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Fonticulus_02_L { + get { + return ResourceManager.GetString("Fonticulus_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Fonticulus_02_M { + get { + return ResourceManager.GetString("Fonticulus_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Fonticulus_02_N { + get { + return ResourceManager.GetString("Fonticulus_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Fonticulus_02_O { + get { + return ResourceManager.GetString("Fonticulus_02_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fonticulus_02_T { + get { + return ResourceManager.GetString("Fonticulus_02_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fonticulus_02_TTS { + get { + return ResourceManager.GetString("Fonticulus_02_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Fonticulus_02_Y { + get { + return ResourceManager.GetString("Fonticulus_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fonticulus_03_A { + get { + return ResourceManager.GetString("Fonticulus_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Fonticulus_03_Ae { + get { + return ResourceManager.GetString("Fonticulus_03_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fonticulus_03_B { + get { + return ResourceManager.GetString("Fonticulus_03_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Fonticulus_03_D { + get { + return ResourceManager.GetString("Fonticulus_03_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fonticulus_03_F { + get { + return ResourceManager.GetString("Fonticulus_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Fonticulus_03_G { + get { + return ResourceManager.GetString("Fonticulus_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Fonticulus_03_K { + get { + return ResourceManager.GetString("Fonticulus_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Fonticulus_03_L { + get { + return ResourceManager.GetString("Fonticulus_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Fonticulus_03_M { + get { + return ResourceManager.GetString("Fonticulus_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Fonticulus_03_N { + get { + return ResourceManager.GetString("Fonticulus_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fonticulus_03_T { + get { + return ResourceManager.GetString("Fonticulus_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fonticulus_03_TTS { + get { + return ResourceManager.GetString("Fonticulus_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Fonticulus_03_W { + get { + return ResourceManager.GetString("Fonticulus_03_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Fonticulus_03_Y { + get { + return ResourceManager.GetString("Fonticulus_03_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fonticulus_04_A { + get { + return ResourceManager.GetString("Fonticulus_04_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Fonticulus_04_Ae { + get { + return ResourceManager.GetString("Fonticulus_04_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fonticulus_04_B { + get { + return ResourceManager.GetString("Fonticulus_04_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Fonticulus_04_D { + get { + return ResourceManager.GetString("Fonticulus_04_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fonticulus_04_F { + get { + return ResourceManager.GetString("Fonticulus_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Fonticulus_04_G { + get { + return ResourceManager.GetString("Fonticulus_04_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Fonticulus_04_K { + get { + return ResourceManager.GetString("Fonticulus_04_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Fonticulus_04_L { + get { + return ResourceManager.GetString("Fonticulus_04_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Fonticulus_04_M { + get { + return ResourceManager.GetString("Fonticulus_04_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Fonticulus_04_N { + get { + return ResourceManager.GetString("Fonticulus_04_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Fonticulus_04_O { + get { + return ResourceManager.GetString("Fonticulus_04_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fonticulus_04_T { + get { + return ResourceManager.GetString("Fonticulus_04_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fonticulus_04_TTS { + get { + return ResourceManager.GetString("Fonticulus_04_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Fonticulus_04_Y { + get { + return ResourceManager.GetString("Fonticulus_04_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fonticulus_05_A { + get { + return ResourceManager.GetString("Fonticulus_05_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fonticulus_05_B { + get { + return ResourceManager.GetString("Fonticulus_05_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fonticulus_05_F { + get { + return ResourceManager.GetString("Fonticulus_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Fonticulus_05_G { + get { + return ResourceManager.GetString("Fonticulus_05_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Fonticulus_05_K { + get { + return ResourceManager.GetString("Fonticulus_05_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Fonticulus_05_L { + get { + return ResourceManager.GetString("Fonticulus_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Fonticulus_05_M { + get { + return ResourceManager.GetString("Fonticulus_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Fonticulus_05_N { + get { + return ResourceManager.GetString("Fonticulus_05_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fonticulus_05_T { + get { + return ResourceManager.GetString("Fonticulus_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fonticulus_05_TTS { + get { + return ResourceManager.GetString("Fonticulus_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fonticulus_06_A { + get { + return ResourceManager.GetString("Fonticulus_06_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fonticulus_06_B { + get { + return ResourceManager.GetString("Fonticulus_06_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Fonticulus_06_D { + get { + return ResourceManager.GetString("Fonticulus_06_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fonticulus_06_F { + get { + return ResourceManager.GetString("Fonticulus_06_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Fonticulus_06_G { + get { + return ResourceManager.GetString("Fonticulus_06_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Fonticulus_06_K { + get { + return ResourceManager.GetString("Fonticulus_06_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Fonticulus_06_L { + get { + return ResourceManager.GetString("Fonticulus_06_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Fonticulus_06_M { + get { + return ResourceManager.GetString("Fonticulus_06_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Fonticulus_06_N { + get { + return ResourceManager.GetString("Fonticulus_06_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fonticulus_06_T { + get { + return ResourceManager.GetString("Fonticulus_06_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fonticulus_06_TTS { + get { + return ResourceManager.GetString("Fonticulus_06_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Fonticulus_06_Y { + get { + return ResourceManager.GetString("Fonticulus_06_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fumerolas_01_Cadmium { + get { + return ResourceManager.GetString("Fumerolas_01_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Fumerolas_01_Mercury { + get { + return ResourceManager.GetString("Fumerolas_01_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Fumerolas_01_Molybdenum { + get { + return ResourceManager.GetString("Fumerolas_01_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Fumerolas_01_Niobium { + get { + return ResourceManager.GetString("Fumerolas_01_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Fumerolas_01_Tin { + get { + return ResourceManager.GetString("Fumerolas_01_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fumerolas_01_Tungsten { + get { + return ResourceManager.GetString("Fumerolas_01_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Fumerolas_02_Cadmium { + get { + return ResourceManager.GetString("Fumerolas_02_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fumerolas_02_Mercury { + get { + return ResourceManager.GetString("Fumerolas_02_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Fumerolas_02_Molybdenum { + get { + return ResourceManager.GetString("Fumerolas_02_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Fumerolas_02_Niobium { + get { + return ResourceManager.GetString("Fumerolas_02_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Fumerolas_02_Tin { + get { + return ResourceManager.GetString("Fumerolas_02_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Fumerolas_02_Tungsten { + get { + return ResourceManager.GetString("Fumerolas_02_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Fumerolas_03_Cadmium { + get { + return ResourceManager.GetString("Fumerolas_03_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Fumerolas_03_Mercury { + get { + return ResourceManager.GetString("Fumerolas_03_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fumerolas_03_Molybdenum { + get { + return ResourceManager.GetString("Fumerolas_03_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fumerolas_03_Niobium { + get { + return ResourceManager.GetString("Fumerolas_03_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Fumerolas_03_Tin { + get { + return ResourceManager.GetString("Fumerolas_03_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Fumerolas_03_Tungsten { + get { + return ResourceManager.GetString("Fumerolas_03_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fumerolas_04_Cadmium { + get { + return ResourceManager.GetString("Fumerolas_04_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fumerolas_04_Mercury { + get { + return ResourceManager.GetString("Fumerolas_04_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Fumerolas_04_Molybdenum { + get { + return ResourceManager.GetString("Fumerolas_04_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Fumerolas_04_Niobium { + get { + return ResourceManager.GetString("Fumerolas_04_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fumerolas_04_Tin { + get { + return ResourceManager.GetString("Fumerolas_04_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalt. + /// + internal static string Fumerolas_04_Tungsten { + get { + return ResourceManager.GetString("Fumerolas_04_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Fungoids_01_Antimony { + get { + return ResourceManager.GetString("Fungoids_01_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Fungoids_01_Polonium { + get { + return ResourceManager.GetString("Fungoids_01_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Fungoids_01_Ruthenium { + get { + return ResourceManager.GetString("Fungoids_01_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fungoids_01_Technetium { + get { + return ResourceManager.GetString("Fungoids_01_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Fungoids_01_Tellurium { + get { + return ResourceManager.GetString("Fungoids_01_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fungoids_01_Yttrium { + get { + return ResourceManager.GetString("Fungoids_01_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Fungoids_02_Cadmium { + get { + return ResourceManager.GetString("Fungoids_02_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fungoids_02_Mercury { + get { + return ResourceManager.GetString("Fungoids_02_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Fungoids_02_Molybdenum { + get { + return ResourceManager.GetString("Fungoids_02_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Fungoids_02_Niobium { + get { + return ResourceManager.GetString("Fungoids_02_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fungoids_02_Tin { + get { + return ResourceManager.GetString("Fungoids_02_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Fungoids_02_Tungsten { + get { + return ResourceManager.GetString("Fungoids_02_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fungoids_03_Antimony { + get { + return ResourceManager.GetString("Fungoids_03_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Fungoids_03_Polonium { + get { + return ResourceManager.GetString("Fungoids_03_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magenta. + /// + internal static string Fungoids_03_Ruthenium { + get { + return ResourceManager.GetString("Fungoids_03_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Fungoids_03_Technetium { + get { + return ResourceManager.GetString("Fungoids_03_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Fungoids_03_Tellurium { + get { + return ResourceManager.GetString("Fungoids_03_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fungoids_03_Yttrium { + get { + return ResourceManager.GetString("Fungoids_03_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Fungoids_04_Cadmium { + get { + return ResourceManager.GetString("Fungoids_04_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Fungoids_04_Mercury { + get { + return ResourceManager.GetString("Fungoids_04_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Fungoids_04_Molybdenum { + get { + return ResourceManager.GetString("Fungoids_04_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Fungoids_04_Niobium { + get { + return ResourceManager.GetString("Fungoids_04_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Fungoids_04_Tin { + get { + return ResourceManager.GetString("Fungoids_04_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Fungoids_04_Tungsten { + get { + return ResourceManager.GetString("Fungoids_04_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crystalline Shards. + /// + internal static string Ground_Struct_Ice { + get { + return ResourceManager.GetString("Ground_Struct_Ice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Cry_IcCry_Bl { + get { + return ResourceManager.GetString("L_Cry_IcCry_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string L_Cry_IcCry_Gr { + get { + return ResourceManager.GetString("L_Cry_IcCry_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string L_Cry_IcCry_Pk { + get { + return ResourceManager.GetString("L_Cry_IcCry_Pk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Purpureum. + /// + internal static string L_Cry_IcCry_Pur { + get { + return ResourceManager.GetString("L_Cry_IcCry_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string L_Cry_IcCry_Red { + get { + return ResourceManager.GetString("L_Cry_IcCry_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string L_Cry_IcCry_Wte { + get { + return ResourceManager.GetString("L_Cry_IcCry_Wte", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flavum. + /// + internal static string L_Cry_IcCry_Yw { + get { + return ResourceManager.GetString("L_Cry_IcCry_Yw", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string L_Cry_MetCry_Gr { + get { + return ResourceManager.GetString("L_Cry_MetCry_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Purpureum. + /// + internal static string L_Cry_MetCry_Pur { + get { + return ResourceManager.GetString("L_Cry_MetCry_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string L_Cry_MetCry_Red { + get { + return ResourceManager.GetString("L_Cry_MetCry_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flavum. + /// + internal static string L_Cry_MetCry_Yw { + get { + return ResourceManager.GetString("L_Cry_MetCry_Yw", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Cry_QtzCry_Bl { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string L_Cry_QtzCry_Gr { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string L_Cry_QtzCry_Pk { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Pk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Purpureum. + /// + internal static string L_Cry_QtzCry_Pur { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string L_Cry_QtzCry_Red { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string L_Cry_QtzCry_Wte { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Wte", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flavum. + /// + internal static string L_Cry_QtzCry_Yw { + get { + return ResourceManager.GetString("L_Cry_QtzCry_Yw", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Org_Moll03_V1_Dark { + get { + return ResourceManager.GetString("L_Org_Moll03_V1_Dark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string L_Org_Moll03_V1_Def { + get { + return ResourceManager.GetString("L_Org_Moll03_V1_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Org_Moll03_V1_Earth { + get { + return ResourceManager.GetString("L_Org_Moll03_V1_Earth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Org_Moll03_V2_Dark { + get { + return ResourceManager.GetString("L_Org_Moll03_V2_Dark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string L_Org_Moll03_V2_Def { + get { + return ResourceManager.GetString("L_Org_Moll03_V2_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Org_Moll03_V2_Earth { + get { + return ResourceManager.GetString("L_Org_Moll03_V2_Earth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Org_Moll03_V3_Dark { + get { + return ResourceManager.GetString("L_Org_Moll03_V3_Dark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string L_Org_Moll03_V3_Def { + get { + return ResourceManager.GetString("L_Org_Moll03_V3_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Org_Moll03_V3_Earth { + get { + return ResourceManager.GetString("L_Org_Moll03_V3_Earth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Org_Moll03_V4_Dark { + get { + return ResourceManager.GetString("L_Org_Moll03_V4_Dark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string L_Org_Moll03_V4_Def { + get { + return ResourceManager.GetString("L_Org_Moll03_V4_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Org_Moll03_V4_Earth { + get { + return ResourceManager.GetString("L_Org_Moll03_V4_Earth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Org_Moll03_V6_Dark { + get { + return ResourceManager.GetString("L_Org_Moll03_V6_Dark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string L_Org_Moll03_V6_Def { + get { + return ResourceManager.GetString("L_Org_Moll03_V6_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Org_Moll03_V6_Earth { + get { + return ResourceManager.GetString("L_Org_Moll03_V6_Earth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string L_Org_PltFun_V1_Bl { + get { + return ResourceManager.GetString("L_Org_PltFun_V1_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string L_Org_PltFun_V1_Def { + get { + return ResourceManager.GetString("L_Org_PltFun_V1_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Org_PltFun_V1_Gr { + get { + return ResourceManager.GetString("L_Org_PltFun_V1_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rutulum. + /// + internal static string L_Org_PltFun_V1_Red { + get { + return ResourceManager.GetString("L_Org_PltFun_V1_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string L_Seed_Pln01_V1_Bl { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string L_Seed_Pln01_V1_Def { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string L_Seed_Pln01_V1_Gr { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ostrinum. + /// + internal static string L_Seed_Pln01_V1_Pur { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubellum. + /// + internal static string L_Seed_Pln01_V1_Red { + get { + return ResourceManager.GetString("L_Seed_Pln01_V1_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cereum. + /// + internal static string L_Seed_Pln02_V3_Def { + get { + return ResourceManager.GetString("L_Seed_Pln02_V3_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string L_Seed_Pln02_V3_Gr { + get { + return ResourceManager.GetString("L_Seed_Pln02_V3_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubellum. + /// + internal static string L_Seed_Pln02_V3_Red { + get { + return ResourceManager.GetString("L_Seed_Pln02_V3_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stolon Tree. + /// + internal static string L_Seed_SdRt02_V3 { + get { + return ResourceManager.GetString("L_Seed_SdRt02_V3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Osseus_01_A { + get { + return ResourceManager.GetString("Osseus_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Osseus_01_F { + get { + return ResourceManager.GetString("Osseus_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Osseus_01_G { + get { + return ResourceManager.GetString("Osseus_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Osseus_01_K { + get { + return ResourceManager.GetString("Osseus_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Osseus_01_T { + get { + return ResourceManager.GetString("Osseus_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Osseus_01_TTS { + get { + return ResourceManager.GetString("Osseus_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Osseus_01_Y { + get { + return ResourceManager.GetString("Osseus_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Osseus_02_Cadmium { + get { + return ResourceManager.GetString("Osseus_02_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Osseus_02_Mercury { + get { + return ResourceManager.GetString("Osseus_02_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Osseus_02_Molybdenum { + get { + return ResourceManager.GetString("Osseus_02_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Osseus_02_Niobium { + get { + return ResourceManager.GetString("Osseus_02_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue. + /// + internal static string Osseus_02_Tin { + get { + return ResourceManager.GetString("Osseus_02_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Osseus_02_Tungsten { + get { + return ResourceManager.GetString("Osseus_02_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Osseus_03_A { + get { + return ResourceManager.GetString("Osseus_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Osseus_03_F { + get { + return ResourceManager.GetString("Osseus_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Osseus_03_G { + get { + return ResourceManager.GetString("Osseus_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Osseus_03_K { + get { + return ResourceManager.GetString("Osseus_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Osseus_03_O { + get { + return ResourceManager.GetString("Osseus_03_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Osseus_03_T { + get { + return ResourceManager.GetString("Osseus_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Osseus_03_TTS { + get { + return ResourceManager.GetString("Osseus_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Osseus_03_Y { + get { + return ResourceManager.GetString("Osseus_03_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Osseus_04_Antimony { + get { + return ResourceManager.GetString("Osseus_04_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peach. + /// + internal static string Osseus_04_Polonium { + get { + return ResourceManager.GetString("Osseus_04_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Osseus_04_Ruthenium { + get { + return ResourceManager.GetString("Osseus_04_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Osseus_04_Technetium { + get { + return ResourceManager.GetString("Osseus_04_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Osseus_04_Tellurium { + get { + return ResourceManager.GetString("Osseus_04_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Osseus_04_Yttrium { + get { + return ResourceManager.GetString("Osseus_04_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Osseus_05_A { + get { + return ResourceManager.GetString("Osseus_05_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Osseus_05_F { + get { + return ResourceManager.GetString("Osseus_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Osseus_05_G { + get { + return ResourceManager.GetString("Osseus_05_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Osseus_05_K { + get { + return ResourceManager.GetString("Osseus_05_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Osseus_05_T { + get { + return ResourceManager.GetString("Osseus_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Osseus_05_TTS { + get { + return ResourceManager.GetString("Osseus_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Osseus_05_Y { + get { + return ResourceManager.GetString("Osseus_05_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Osseus_06_A { + get { + return ResourceManager.GetString("Osseus_06_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Osseus_06_F { + get { + return ResourceManager.GetString("Osseus_06_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Osseus_06_G { + get { + return ResourceManager.GetString("Osseus_06_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Osseus_06_K { + get { + return ResourceManager.GetString("Osseus_06_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Osseus_06_T { + get { + return ResourceManager.GetString("Osseus_06_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Osseus_06_TTS { + get { + return ResourceManager.GetString("Osseus_06_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Osseus_06_Y { + get { + return ResourceManager.GetString("Osseus_06_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Recepta_01_A { + get { + return ResourceManager.GetString("Recepta_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Recepta_01_Ae { + get { + return ResourceManager.GetString("Recepta_01_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Recepta_01_B { + get { + return ResourceManager.GetString("Recepta_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Recepta_01_D { + get { + return ResourceManager.GetString("Recepta_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Recepta_01_F { + get { + return ResourceManager.GetString("Recepta_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Recepta_01_G { + get { + return ResourceManager.GetString("Recepta_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Recepta_01_K { + get { + return ResourceManager.GetString("Recepta_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Recepta_01_L { + get { + return ResourceManager.GetString("Recepta_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Recepta_01_M { + get { + return ResourceManager.GetString("Recepta_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Recepta_01_N { + get { + return ResourceManager.GetString("Recepta_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Recepta_01_T { + get { + return ResourceManager.GetString("Recepta_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Recepta_01_TTS { + get { + return ResourceManager.GetString("Recepta_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Recepta_01_Y { + get { + return ResourceManager.GetString("Recepta_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Recepta_02_Cadmium { + get { + return ResourceManager.GetString("Recepta_02_Cadmium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Recepta_02_Mercury { + get { + return ResourceManager.GetString("Recepta_02_Mercury", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gold. + /// + internal static string Recepta_02_Molybdenum { + get { + return ResourceManager.GetString("Recepta_02_Molybdenum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mulberry. + /// + internal static string Recepta_02_Niobium { + get { + return ResourceManager.GetString("Recepta_02_Niobium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Recepta_02_Tin { + get { + return ResourceManager.GetString("Recepta_02_Tin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Recepta_02_Tungsten { + get { + return ResourceManager.GetString("Recepta_02_Tungsten", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Recepta_03_Antimony { + get { + return ResourceManager.GetString("Recepta_03_Antimony", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White. + /// + internal static string Recepta_03_Polonium { + get { + return ResourceManager.GetString("Recepta_03_Polonium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Recepta_03_Ruthenium { + get { + return ResourceManager.GetString("Recepta_03_Ruthenium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aquamarine. + /// + internal static string Recepta_03_Technetium { + get { + return ResourceManager.GetString("Recepta_03_Technetium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyan. + /// + internal static string Recepta_03_Tellurium { + get { + return ResourceManager.GetString("Recepta_03_Tellurium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Recepta_03_Yttrium { + get { + return ResourceManager.GetString("Recepta_03_Yttrium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string S_Seed_SdTp01_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp01_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Candidum. + /// + internal static string S_Seed_SdTp01_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp01_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gypseeum. + /// + internal static string S_Seed_SdTp01_Gr { + get { + return ResourceManager.GetString("S_Seed_SdTp01_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Purpureum. + /// + internal static string S_Seed_SdTp01_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp01_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rufum. + /// + internal static string S_Seed_SdTp01_Red { + get { + return ResourceManager.GetString("S_Seed_SdTp01_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string S_Seed_SdTp02_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp02_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cereum. + /// + internal static string S_Seed_SdTp02_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp02_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string S_Seed_SdTp02_Gr { + get { + return ResourceManager.GetString("S_Seed_SdTp02_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Puniceum. + /// + internal static string S_Seed_SdTp02_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp02_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubellum. + /// + internal static string S_Seed_SdTp02_Red { + get { + return ResourceManager.GetString("S_Seed_SdTp02_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string S_Seed_SdTp03_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp03_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Niveum. + /// + internal static string S_Seed_SdTp03_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp03_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string S_Seed_SdTp03_Gr { + get { + return ResourceManager.GetString("S_Seed_SdTp03_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum. + /// + internal static string S_Seed_SdTp03_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp03_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string S_Seed_SdTp03_Red { + get { + return ResourceManager.GetString("S_Seed_SdTp03_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lividum. + /// + internal static string S_Seed_SdTp04_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp04_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string S_Seed_SdTp04_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp04_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum. + /// + internal static string S_Seed_SdTp04_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp04_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubicundum. + /// + internal static string S_Seed_SdTp04_Red { + get { + return ResourceManager.GetString("S_Seed_SdTp04_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string S_Seed_SdTp05_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp05_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string S_Seed_SdTp05_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp05_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string S_Seed_SdTp05_Gr { + get { + return ResourceManager.GetString("S_Seed_SdTp05_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ostrinum. + /// + internal static string S_Seed_SdTp05_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp05_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubellum. + /// + internal static string S_Seed_SdTp05_Red { + get { + return ResourceManager.GetString("S_Seed_SdTp05_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string S_Seed_SdTp06_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp06_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aurarium. + /// + internal static string S_Seed_SdTp06_Gd { + get { + return ResourceManager.GetString("S_Seed_SdTp06_Gd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalteum. + /// + internal static string S_Seed_SdTp07_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp07_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Candidum. + /// + internal static string S_Seed_SdTp07_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp07_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gypseeum. + /// + internal static string S_Seed_SdTp07_Gr { + get { + return ResourceManager.GetString("S_Seed_SdTp07_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Purpureum. + /// + internal static string S_Seed_SdTp07_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp07_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string S_Seed_SdTp07_Red { + get { + return ResourceManager.GetString("S_Seed_SdTp07_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string S_Seed_SdTp08_Bl { + get { + return ResourceManager.GetString("S_Seed_SdTp08_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string S_Seed_SdTp08_Def { + get { + return ResourceManager.GetString("S_Seed_SdTp08_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string S_Seed_SdTp08_Gr { + get { + return ResourceManager.GetString("S_Seed_SdTp08_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum. + /// + internal static string S_Seed_SdTp08_Pur { + get { + return ResourceManager.GetString("S_Seed_SdTp08_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string Seed { + get { + return ResourceManager.GetString("Seed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gypseeum. + /// + internal static string SeedABCD_01 { + get { + return ResourceManager.GetString("SeedABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ostrinum. + /// + internal static string SeedABCD_02 { + get { + return ResourceManager.GetString("SeedABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string SeedABCD_03 { + get { + return ResourceManager.GetString("SeedABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lividum. + /// + internal static string SeedEFGH { + get { + return ResourceManager.GetString("SeedEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aureum. + /// + internal static string SeedEFGH_01 { + get { + return ResourceManager.GetString("SeedEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Puniceum. + /// + internal static string SeedEFGH_02 { + get { + return ResourceManager.GetString("SeedEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string SeedEFGH_03 { + get { + return ResourceManager.GetString("SeedEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_01_B { + get { + return ResourceManager.GetString("Shrubs_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Shrubs_01_D { + get { + return ResourceManager.GetString("Shrubs_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_01_F { + get { + return ResourceManager.GetString("Shrubs_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_01_G { + get { + return ResourceManager.GetString("Shrubs_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_01_L { + get { + return ResourceManager.GetString("Shrubs_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_01_M { + get { + return ResourceManager.GetString("Shrubs_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_01_N { + get { + return ResourceManager.GetString("Shrubs_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Shrubs_01_O { + get { + return ResourceManager.GetString("Shrubs_01_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_01_TTS { + get { + return ResourceManager.GetString("Shrubs_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Shrubs_01_W { + get { + return ResourceManager.GetString("Shrubs_01_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_02_B { + get { + return ResourceManager.GetString("Shrubs_02_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Shrubs_02_D { + get { + return ResourceManager.GetString("Shrubs_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_02_F { + get { + return ResourceManager.GetString("Shrubs_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_02_G { + get { + return ResourceManager.GetString("Shrubs_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_02_L { + get { + return ResourceManager.GetString("Shrubs_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_02_M { + get { + return ResourceManager.GetString("Shrubs_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_02_N { + get { + return ResourceManager.GetString("Shrubs_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_02_TTS { + get { + return ResourceManager.GetString("Shrubs_02_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Shrubs_02_W { + get { + return ResourceManager.GetString("Shrubs_02_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_03_B { + get { + return ResourceManager.GetString("Shrubs_03_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Shrubs_03_D { + get { + return ResourceManager.GetString("Shrubs_03_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_03_F { + get { + return ResourceManager.GetString("Shrubs_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_03_G { + get { + return ResourceManager.GetString("Shrubs_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_03_L { + get { + return ResourceManager.GetString("Shrubs_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_03_M { + get { + return ResourceManager.GetString("Shrubs_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_03_N { + get { + return ResourceManager.GetString("Shrubs_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_03_TTS { + get { + return ResourceManager.GetString("Shrubs_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_04_B { + get { + return ResourceManager.GetString("Shrubs_04_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Shrubs_04_D { + get { + return ResourceManager.GetString("Shrubs_04_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_04_F { + get { + return ResourceManager.GetString("Shrubs_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_04_G { + get { + return ResourceManager.GetString("Shrubs_04_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_04_L { + get { + return ResourceManager.GetString("Shrubs_04_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_04_M { + get { + return ResourceManager.GetString("Shrubs_04_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_04_N { + get { + return ResourceManager.GetString("Shrubs_04_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_04_TTS { + get { + return ResourceManager.GetString("Shrubs_04_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_05_B { + get { + return ResourceManager.GetString("Shrubs_05_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Shrubs_05_D { + get { + return ResourceManager.GetString("Shrubs_05_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_05_F { + get { + return ResourceManager.GetString("Shrubs_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_05_G { + get { + return ResourceManager.GetString("Shrubs_05_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_05_L { + get { + return ResourceManager.GetString("Shrubs_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_05_M { + get { + return ResourceManager.GetString("Shrubs_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_05_N { + get { + return ResourceManager.GetString("Shrubs_05_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_05_TTS { + get { + return ResourceManager.GetString("Shrubs_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_06_B { + get { + return ResourceManager.GetString("Shrubs_06_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_06_F { + get { + return ResourceManager.GetString("Shrubs_06_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_06_G { + get { + return ResourceManager.GetString("Shrubs_06_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_06_L { + get { + return ResourceManager.GetString("Shrubs_06_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_06_M { + get { + return ResourceManager.GetString("Shrubs_06_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_06_N { + get { + return ResourceManager.GetString("Shrubs_06_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_06_TTS { + get { + return ResourceManager.GetString("Shrubs_06_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Shrubs_07_B { + get { + return ResourceManager.GetString("Shrubs_07_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Shrubs_07_D { + get { + return ResourceManager.GetString("Shrubs_07_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Shrubs_07_F { + get { + return ResourceManager.GetString("Shrubs_07_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Shrubs_07_G { + get { + return ResourceManager.GetString("Shrubs_07_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Shrubs_07_L { + get { + return ResourceManager.GetString("Shrubs_07_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Shrubs_07_M { + get { + return ResourceManager.GetString("Shrubs_07_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Shrubs_07_N { + get { + return ResourceManager.GetString("Shrubs_07_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Shrubs_07_TTS { + get { + return ResourceManager.GetString("Shrubs_07_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string Small_Org_Moll01_V1_Bl { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albulum. + /// + internal static string Small_Org_Moll01_V1_Def { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string Small_Org_Moll01_V1_Gr { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phoeniceum. + /// + internal static string Small_Org_Moll01_V1_Pnk { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Pnk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Purpureum. + /// + internal static string Small_Org_Moll01_V1_Pur { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rufum. + /// + internal static string Small_Org_Moll01_V1_Red { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Croceum. + /// + internal static string Small_Org_Moll01_V1_Y { + get { + return ResourceManager.GetString("Small_Org_Moll01_V1_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string Small_Org_Moll01_V2_Bl { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string Small_Org_Moll01_V2_Gr { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum. + /// + internal static string Small_Org_Moll01_V2_Pur { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubellum. + /// + internal static string Small_Org_Moll01_V2_Red { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flavum. + /// + internal static string Small_Org_Moll01_V2_Y { + get { + return ResourceManager.GetString("Small_Org_Moll01_V2_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string Small_Org_Moll01_V3_Bl { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albulum. + /// + internal static string Small_Org_Moll01_V3_Def { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string Small_Org_Moll01_V3_Pnk { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3_Pnk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Puniceum. + /// + internal static string Small_Org_Moll01_V3_Pur { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string Small_Org_Moll01_V3_Red { + get { + return ResourceManager.GetString("Small_Org_Moll01_V3_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lividum. + /// + internal static string Small_Org_Moll01_V4_Bl { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cereum. + /// + internal static string Small_Org_Moll01_V4_Def { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string Small_Org_Moll01_V4_Gr { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum. + /// + internal static string Small_Org_Moll01_V4_Red { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flavum. + /// + internal static string Small_Org_Moll01_V4_Y { + get { + return ResourceManager.GetString("Small_Org_Moll01_V4_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cobalteum. + /// + internal static string Small_Org_Moll01_V5_Bl { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Niveum. + /// + internal static string Small_Org_Moll01_V5_Def { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string Small_Org_Moll01_V5_Gr { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string Small_Org_Moll01_V5_Pnk { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Pnk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ostrinum. + /// + internal static string Small_Org_Moll01_V5_Pur { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rutulum. + /// + internal static string Small_Org_Moll01_V5_Red { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Red", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Croceum. + /// + internal static string Small_Org_Moll01_V5_Y { + get { + return ResourceManager.GetString("Small_Org_Moll01_V5_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string Small_Org_Moll01_V6_Bl { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6_Bl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albens. + /// + internal static string Small_Org_Moll01_V6_Def { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6_Def", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gypseeum. + /// + internal static string Small_Org_Moll01_V6_Gr { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6_Gr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum. + /// + internal static string Small_Org_Moll01_V6_Pur { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6_Pur", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string Small_Org_Moll01_V6_Y { + get { + return ResourceManager.GetString("Small_Org_Moll01_V6_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Luteolum. + /// + internal static string Sphere { + get { + return ResourceManager.GetString("Sphere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Croceum. + /// + internal static string SphereABCD_01 { + get { + return ResourceManager.GetString("SphereABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Puniceum. + /// + internal static string SphereABCD_02 { + get { + return ResourceManager.GetString("SphereABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string SphereABCD_03 { + get { + return ResourceManager.GetString("SphereABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum Bioluminescent. + /// + internal static string SphereEFGH { + get { + return ResourceManager.GetString("SphereEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rubeum Bioluminescent. + /// + internal static string SphereEFGH_01 { + get { + return ResourceManager.GetString("SphereEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum Bioluminescent. + /// + internal static string SphereEFGH_02 { + get { + return ResourceManager.GetString("SphereEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum Bioluminescent. + /// + internal static string SphereEFGH_03 { + get { + return ResourceManager.GetString("SphereEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Solid. + /// + internal static string SPOI_Ball { + get { + return ResourceManager.GetString("SPOI_Ball", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lattice. + /// + internal static string SPOI_Ball_Lattice { + get { + return ResourceManager.GetString("SPOI_Ball_Lattice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stolon Pod. + /// + internal static string SPOI_Root_Seeds { + get { + return ResourceManager.GetString("SPOI_Root_Seeds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string SPOI_SeedPolyp01_V1 { + get { + return ResourceManager.GetString("SPOI_SeedPolyp01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aurarium. + /// + internal static string SPOI_SeedPolyp01_V1_Gld { + get { + return ResourceManager.GetString("SPOI_SeedPolyp01_V1_Gld", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chryseum. + /// + internal static string SPOI_SeedWeed01_V1 { + get { + return ResourceManager.GetString("SPOI_SeedWeed01_V1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Stratum_01_Ae { + get { + return ResourceManager.GetString("Stratum_01_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Stratum_01_D { + get { + return ResourceManager.GetString("Stratum_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_01_F { + get { + return ResourceManager.GetString("Stratum_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_01_K { + get { + return ResourceManager.GetString("Stratum_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_01_L { + get { + return ResourceManager.GetString("Stratum_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_01_M { + get { + return ResourceManager.GetString("Stratum_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_01_T { + get { + return ResourceManager.GetString("Stratum_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_01_TTS { + get { + return ResourceManager.GetString("Stratum_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Stratum_01_W { + get { + return ResourceManager.GetString("Stratum_01_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_01_Y { + get { + return ResourceManager.GetString("Stratum_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Stratum_02_Ae { + get { + return ResourceManager.GetString("Stratum_02_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Stratum_02_D { + get { + return ResourceManager.GetString("Stratum_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_02_F { + get { + return ResourceManager.GetString("Stratum_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_02_K { + get { + return ResourceManager.GetString("Stratum_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_02_L { + get { + return ResourceManager.GetString("Stratum_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_02_M { + get { + return ResourceManager.GetString("Stratum_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_02_T { + get { + return ResourceManager.GetString("Stratum_02_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_02_TTS { + get { + return ResourceManager.GetString("Stratum_02_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Stratum_02_W { + get { + return ResourceManager.GetString("Stratum_02_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_02_Y { + get { + return ResourceManager.GetString("Stratum_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_03_F { + get { + return ResourceManager.GetString("Stratum_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_03_K { + get { + return ResourceManager.GetString("Stratum_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_03_L { + get { + return ResourceManager.GetString("Stratum_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_03_M { + get { + return ResourceManager.GetString("Stratum_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_03_T { + get { + return ResourceManager.GetString("Stratum_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_03_TTS { + get { + return ResourceManager.GetString("Stratum_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Stratum_03_W { + get { + return ResourceManager.GetString("Stratum_03_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_03_Y { + get { + return ResourceManager.GetString("Stratum_03_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_04_F { + get { + return ResourceManager.GetString("Stratum_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Stratum_05_Ae { + get { + return ResourceManager.GetString("Stratum_05_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Stratum_05_D { + get { + return ResourceManager.GetString("Stratum_05_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_05_F { + get { + return ResourceManager.GetString("Stratum_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_05_K { + get { + return ResourceManager.GetString("Stratum_05_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_05_L { + get { + return ResourceManager.GetString("Stratum_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_05_M { + get { + return ResourceManager.GetString("Stratum_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_05_T { + get { + return ResourceManager.GetString("Stratum_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_05_TTS { + get { + return ResourceManager.GetString("Stratum_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_05_Y { + get { + return ResourceManager.GetString("Stratum_05_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Stratum_06_Ae { + get { + return ResourceManager.GetString("Stratum_06_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Stratum_06_D { + get { + return ResourceManager.GetString("Stratum_06_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_06_F { + get { + return ResourceManager.GetString("Stratum_06_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_06_K { + get { + return ResourceManager.GetString("Stratum_06_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_06_L { + get { + return ResourceManager.GetString("Stratum_06_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_06_M { + get { + return ResourceManager.GetString("Stratum_06_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_06_T { + get { + return ResourceManager.GetString("Stratum_06_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_06_TTS { + get { + return ResourceManager.GetString("Stratum_06_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_06_Y { + get { + return ResourceManager.GetString("Stratum_06_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Stratum_07_D { + get { + return ResourceManager.GetString("Stratum_07_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_07_F { + get { + return ResourceManager.GetString("Stratum_07_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_07_K { + get { + return ResourceManager.GetString("Stratum_07_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_07_L { + get { + return ResourceManager.GetString("Stratum_07_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_07_M { + get { + return ResourceManager.GetString("Stratum_07_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_07_T { + get { + return ResourceManager.GetString("Stratum_07_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_07_TTS { + get { + return ResourceManager.GetString("Stratum_07_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Stratum_07_W { + get { + return ResourceManager.GetString("Stratum_07_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_07_Y { + get { + return ResourceManager.GetString("Stratum_07_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Stratum_08_Ae { + get { + return ResourceManager.GetString("Stratum_08_Ae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Stratum_08_F { + get { + return ResourceManager.GetString("Stratum_08_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Stratum_08_K { + get { + return ResourceManager.GetString("Stratum_08_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Stratum_08_L { + get { + return ResourceManager.GetString("Stratum_08_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Stratum_08_M { + get { + return ResourceManager.GetString("Stratum_08_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Stratum_08_T { + get { + return ResourceManager.GetString("Stratum_08_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Stratum_08_TTS { + get { + return ResourceManager.GetString("Stratum_08_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Stratum_08_Y { + get { + return ResourceManager.GetString("Stratum_08_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Common. + /// + internal static string Thargoid_Barnacle_01 { + get { + return ResourceManager.GetString("Thargoid_Barnacle_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Large. + /// + internal static string Thargoid_Barnacle_02 { + get { + return ResourceManager.GetString("Thargoid_Barnacle_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Barbs. + /// + internal static string Thargoid_Barnacle_Spikes { + get { + return ResourceManager.GetString("Thargoid_Barnacle_Spikes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Roseum. + /// + internal static string Tube { + get { + return ResourceManager.GetString("Tube", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prasinum. + /// + internal static string TubeABCD_01 { + get { + return ResourceManager.GetString("TubeABCD_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Albidum. + /// + internal static string TubeABCD_02 { + get { + return ResourceManager.GetString("TubeABCD_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caeruleum. + /// + internal static string TubeABCD_03 { + get { + return ResourceManager.GetString("TubeABCD_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blatteum. + /// + internal static string TubeEFGH { + get { + return ResourceManager.GetString("TubeEFGH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lindigoticum. + /// + internal static string TubeEFGH_01 { + get { + return ResourceManager.GetString("TubeEFGH_01", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Violaceum. + /// + internal static string TubeEFGH_02 { + get { + return ResourceManager.GetString("TubeEFGH_02", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Viride. + /// + internal static string TubeEFGH_03 { + get { + return ResourceManager.GetString("TubeEFGH_03", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Tubus_01_A { + get { + return ResourceManager.GetString("Tubus_01_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tubus_01_B { + get { + return ResourceManager.GetString("Tubus_01_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tubus_01_D { + get { + return ResourceManager.GetString("Tubus_01_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Tubus_01_F { + get { + return ResourceManager.GetString("Tubus_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tubus_01_G { + get { + return ResourceManager.GetString("Tubus_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tubus_01_K { + get { + return ResourceManager.GetString("Tubus_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Tubus_01_L { + get { + return ResourceManager.GetString("Tubus_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tubus_01_M { + get { + return ResourceManager.GetString("Tubus_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Tubus_01_N { + get { + return ResourceManager.GetString("Tubus_01_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Tubus_01_T { + get { + return ResourceManager.GetString("Tubus_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Tubus_01_TTS { + get { + return ResourceManager.GetString("Tubus_01_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Tubus_02_A { + get { + return ResourceManager.GetString("Tubus_02_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tubus_02_B { + get { + return ResourceManager.GetString("Tubus_02_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Tubus_02_F { + get { + return ResourceManager.GetString("Tubus_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tubus_02_G { + get { + return ResourceManager.GetString("Tubus_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tubus_02_K { + get { + return ResourceManager.GetString("Tubus_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Tubus_02_L { + get { + return ResourceManager.GetString("Tubus_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tubus_02_M { + get { + return ResourceManager.GetString("Tubus_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Tubus_02_N { + get { + return ResourceManager.GetString("Tubus_02_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Tubus_02_T { + get { + return ResourceManager.GetString("Tubus_02_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Tubus_02_TTS { + get { + return ResourceManager.GetString("Tubus_02_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Tubus_03_A { + get { + return ResourceManager.GetString("Tubus_03_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tubus_03_B { + get { + return ResourceManager.GetString("Tubus_03_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tubus_03_D { + get { + return ResourceManager.GetString("Tubus_03_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Tubus_03_F { + get { + return ResourceManager.GetString("Tubus_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tubus_03_G { + get { + return ResourceManager.GetString("Tubus_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tubus_03_K { + get { + return ResourceManager.GetString("Tubus_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Tubus_03_L { + get { + return ResourceManager.GetString("Tubus_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tubus_03_M { + get { + return ResourceManager.GetString("Tubus_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Tubus_03_N { + get { + return ResourceManager.GetString("Tubus_03_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Tubus_03_T { + get { + return ResourceManager.GetString("Tubus_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Tubus_03_TTS { + get { + return ResourceManager.GetString("Tubus_03_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Tubus_04_A { + get { + return ResourceManager.GetString("Tubus_04_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tubus_04_B { + get { + return ResourceManager.GetString("Tubus_04_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Tubus_04_F { + get { + return ResourceManager.GetString("Tubus_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tubus_04_G { + get { + return ResourceManager.GetString("Tubus_04_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tubus_04_K { + get { + return ResourceManager.GetString("Tubus_04_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Tubus_04_L { + get { + return ResourceManager.GetString("Tubus_04_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tubus_04_M { + get { + return ResourceManager.GetString("Tubus_04_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Tubus_04_N { + get { + return ResourceManager.GetString("Tubus_04_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tubus_04_O { + get { + return ResourceManager.GetString("Tubus_04_O", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Tubus_04_T { + get { + return ResourceManager.GetString("Tubus_04_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Tubus_04_TTS { + get { + return ResourceManager.GetString("Tubus_04_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indigo. + /// + internal static string Tubus_05_A { + get { + return ResourceManager.GetString("Tubus_05_A", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tubus_05_B { + get { + return ResourceManager.GetString("Tubus_05_B", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tubus_05_D { + get { + return ResourceManager.GetString("Tubus_05_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grey. + /// + internal static string Tubus_05_F { + get { + return ResourceManager.GetString("Tubus_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tubus_05_G { + get { + return ResourceManager.GetString("Tubus_05_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tubus_05_K { + get { + return ResourceManager.GetString("Tubus_05_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turquoise. + /// + internal static string Tubus_05_L { + get { + return ResourceManager.GetString("Tubus_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tubus_05_M { + get { + return ResourceManager.GetString("Tubus_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amethyst. + /// + internal static string Tubus_05_N { + get { + return ResourceManager.GetString("Tubus_05_N", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mauve. + /// + internal static string Tubus_05_T { + get { + return ResourceManager.GetString("Tubus_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ocher. + /// + internal static string Tubus_05_TTS { + get { + return ResourceManager.GetString("Tubus_05_TTS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tubus_05_W { + get { + return ResourceManager.GetString("Tubus_05_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_01_F { + get { + return ResourceManager.GetString("Tussocks_01_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_01_G { + get { + return ResourceManager.GetString("Tussocks_01_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_01_K { + get { + return ResourceManager.GetString("Tussocks_01_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_01_L { + get { + return ResourceManager.GetString("Tussocks_01_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_01_M { + get { + return ResourceManager.GetString("Tussocks_01_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_01_T { + get { + return ResourceManager.GetString("Tussocks_01_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Tussocks_01_W { + get { + return ResourceManager.GetString("Tussocks_01_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_01_Y { + get { + return ResourceManager.GetString("Tussocks_01_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_02_D { + get { + return ResourceManager.GetString("Tussocks_02_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_02_F { + get { + return ResourceManager.GetString("Tussocks_02_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_02_G { + get { + return ResourceManager.GetString("Tussocks_02_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_02_K { + get { + return ResourceManager.GetString("Tussocks_02_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_02_L { + get { + return ResourceManager.GetString("Tussocks_02_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_02_M { + get { + return ResourceManager.GetString("Tussocks_02_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_02_T { + get { + return ResourceManager.GetString("Tussocks_02_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Tussocks_02_W { + get { + return ResourceManager.GetString("Tussocks_02_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_02_Y { + get { + return ResourceManager.GetString("Tussocks_02_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_03_D { + get { + return ResourceManager.GetString("Tussocks_03_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_03_F { + get { + return ResourceManager.GetString("Tussocks_03_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_03_G { + get { + return ResourceManager.GetString("Tussocks_03_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_03_K { + get { + return ResourceManager.GetString("Tussocks_03_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_03_L { + get { + return ResourceManager.GetString("Tussocks_03_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_03_M { + get { + return ResourceManager.GetString("Tussocks_03_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_03_T { + get { + return ResourceManager.GetString("Tussocks_03_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Tussocks_03_W { + get { + return ResourceManager.GetString("Tussocks_03_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_03_Y { + get { + return ResourceManager.GetString("Tussocks_03_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_04_D { + get { + return ResourceManager.GetString("Tussocks_04_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_04_F { + get { + return ResourceManager.GetString("Tussocks_04_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_04_G { + get { + return ResourceManager.GetString("Tussocks_04_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_04_K { + get { + return ResourceManager.GetString("Tussocks_04_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_04_L { + get { + return ResourceManager.GetString("Tussocks_04_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_04_M { + get { + return ResourceManager.GetString("Tussocks_04_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_04_T { + get { + return ResourceManager.GetString("Tussocks_04_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Tussocks_04_W { + get { + return ResourceManager.GetString("Tussocks_04_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_04_Y { + get { + return ResourceManager.GetString("Tussocks_04_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_05_D { + get { + return ResourceManager.GetString("Tussocks_05_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_05_F { + get { + return ResourceManager.GetString("Tussocks_05_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_05_G { + get { + return ResourceManager.GetString("Tussocks_05_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_05_K { + get { + return ResourceManager.GetString("Tussocks_05_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_05_L { + get { + return ResourceManager.GetString("Tussocks_05_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_05_M { + get { + return ResourceManager.GetString("Tussocks_05_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_05_T { + get { + return ResourceManager.GetString("Tussocks_05_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_05_Y { + get { + return ResourceManager.GetString("Tussocks_05_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_06_D { + get { + return ResourceManager.GetString("Tussocks_06_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_06_F { + get { + return ResourceManager.GetString("Tussocks_06_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_06_G { + get { + return ResourceManager.GetString("Tussocks_06_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_06_K { + get { + return ResourceManager.GetString("Tussocks_06_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_06_L { + get { + return ResourceManager.GetString("Tussocks_06_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_06_M { + get { + return ResourceManager.GetString("Tussocks_06_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_06_T { + get { + return ResourceManager.GetString("Tussocks_06_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_06_Y { + get { + return ResourceManager.GetString("Tussocks_06_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_07_D { + get { + return ResourceManager.GetString("Tussocks_07_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_07_F { + get { + return ResourceManager.GetString("Tussocks_07_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_07_G { + get { + return ResourceManager.GetString("Tussocks_07_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_07_K { + get { + return ResourceManager.GetString("Tussocks_07_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_07_L { + get { + return ResourceManager.GetString("Tussocks_07_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_07_M { + get { + return ResourceManager.GetString("Tussocks_07_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_07_T { + get { + return ResourceManager.GetString("Tussocks_07_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_07_Y { + get { + return ResourceManager.GetString("Tussocks_07_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_08_D { + get { + return ResourceManager.GetString("Tussocks_08_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_08_F { + get { + return ResourceManager.GetString("Tussocks_08_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_08_G { + get { + return ResourceManager.GetString("Tussocks_08_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_08_K { + get { + return ResourceManager.GetString("Tussocks_08_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_08_L { + get { + return ResourceManager.GetString("Tussocks_08_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_08_M { + get { + return ResourceManager.GetString("Tussocks_08_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_08_T { + get { + return ResourceManager.GetString("Tussocks_08_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Orange. + /// + internal static string Tussocks_08_W { + get { + return ResourceManager.GetString("Tussocks_08_W", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_08_Y { + get { + return ResourceManager.GetString("Tussocks_08_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_09_D { + get { + return ResourceManager.GetString("Tussocks_09_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_09_F { + get { + return ResourceManager.GetString("Tussocks_09_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_09_G { + get { + return ResourceManager.GetString("Tussocks_09_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_09_K { + get { + return ResourceManager.GetString("Tussocks_09_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_09_L { + get { + return ResourceManager.GetString("Tussocks_09_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_09_M { + get { + return ResourceManager.GetString("Tussocks_09_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_09_T { + get { + return ResourceManager.GetString("Tussocks_09_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_09_Y { + get { + return ResourceManager.GetString("Tussocks_09_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_10_D { + get { + return ResourceManager.GetString("Tussocks_10_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_10_F { + get { + return ResourceManager.GetString("Tussocks_10_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_10_G { + get { + return ResourceManager.GetString("Tussocks_10_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_10_K { + get { + return ResourceManager.GetString("Tussocks_10_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_10_L { + get { + return ResourceManager.GetString("Tussocks_10_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_10_M { + get { + return ResourceManager.GetString("Tussocks_10_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_10_T { + get { + return ResourceManager.GetString("Tussocks_10_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_10_Y { + get { + return ResourceManager.GetString("Tussocks_10_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_11_D { + get { + return ResourceManager.GetString("Tussocks_11_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_11_F { + get { + return ResourceManager.GetString("Tussocks_11_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_11_G { + get { + return ResourceManager.GetString("Tussocks_11_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_11_K { + get { + return ResourceManager.GetString("Tussocks_11_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_11_L { + get { + return ResourceManager.GetString("Tussocks_11_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_11_M { + get { + return ResourceManager.GetString("Tussocks_11_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_11_T { + get { + return ResourceManager.GetString("Tussocks_11_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_11_Y { + get { + return ResourceManager.GetString("Tussocks_11_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_12_D { + get { + return ResourceManager.GetString("Tussocks_12_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_12_F { + get { + return ResourceManager.GetString("Tussocks_12_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_12_G { + get { + return ResourceManager.GetString("Tussocks_12_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_12_K { + get { + return ResourceManager.GetString("Tussocks_12_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_12_L { + get { + return ResourceManager.GetString("Tussocks_12_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_12_M { + get { + return ResourceManager.GetString("Tussocks_12_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_12_T { + get { + return ResourceManager.GetString("Tussocks_12_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_12_Y { + get { + return ResourceManager.GetString("Tussocks_12_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_13_D { + get { + return ResourceManager.GetString("Tussocks_13_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_13_F { + get { + return ResourceManager.GetString("Tussocks_13_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_13_G { + get { + return ResourceManager.GetString("Tussocks_13_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_13_K { + get { + return ResourceManager.GetString("Tussocks_13_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_13_L { + get { + return ResourceManager.GetString("Tussocks_13_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_13_M { + get { + return ResourceManager.GetString("Tussocks_13_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_13_T { + get { + return ResourceManager.GetString("Tussocks_13_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_13_Y { + get { + return ResourceManager.GetString("Tussocks_13_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_14_F { + get { + return ResourceManager.GetString("Tussocks_14_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_14_G { + get { + return ResourceManager.GetString("Tussocks_14_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_14_K { + get { + return ResourceManager.GetString("Tussocks_14_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_14_L { + get { + return ResourceManager.GetString("Tussocks_14_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_14_M { + get { + return ResourceManager.GetString("Tussocks_14_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_14_T { + get { + return ResourceManager.GetString("Tussocks_14_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maroon. + /// + internal static string Tussocks_15_D { + get { + return ResourceManager.GetString("Tussocks_15_D", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yellow. + /// + internal static string Tussocks_15_F { + get { + return ResourceManager.GetString("Tussocks_15_F", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lime. + /// + internal static string Tussocks_15_G { + get { + return ResourceManager.GetString("Tussocks_15_G", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green. + /// + internal static string Tussocks_15_K { + get { + return ResourceManager.GetString("Tussocks_15_K", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sage. + /// + internal static string Tussocks_15_L { + get { + return ResourceManager.GetString("Tussocks_15_L", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emerald. + /// + internal static string Tussocks_15_M { + get { + return ResourceManager.GetString("Tussocks_15_M", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Teal. + /// + internal static string Tussocks_15_T { + get { + return ResourceManager.GetString("Tussocks_15_T", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red. + /// + internal static string Tussocks_15_Y { + get { + return ResourceManager.GetString("Tussocks_15_Y", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amphora Plant. + /// + internal static string Vents { + get { + return ResourceManager.GetString("Vents", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/OrganicVariant.resx b/DataDefinitions/Properties/OrganicVariant.resx new file mode 100644 index 0000000000..4caf7f93d4 --- /dev/null +++ b/DataDefinitions/Properties/OrganicVariant.resx @@ -0,0 +1,2868 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Green + + + Yellow + + + Indigo + + + Teal + + + Turquoise + + + Lime + + + Emerald + + + Ocher + + + Sage + + + Mauve + + + Grey + + + Green + + + Yellow + + + Indigo + + + Teal + + + Turquoise + + + Lime + + + Emerald + + + Ocher + + + Sage + + + Mauve + + + Amethyst + + + Green + + + Yellow + + + Indigo + + + Teal + + + Turquoise + + + Lime + + + Emerald + + + Ocher + + + Sage + + + Mauve + + + Green + + + Yellow + + + Teal + + + Turquoise + + + Lime + + + Emerald + + + Ocher + + + Sage + + + Mauve + + + Grey + + + Amethyst + + + Green + + + Yellow + + + Teal + + + Turquoise + + + Lime + + + Emerald + + + Ocher + + + Sage + + + Mauve + + + Amethyst + + + Yellow + + + Orange + + + Grey + + + Ocher + + + Lime + + + Emerald + + + Green + + + Sage + + + Teal + + + Indigo + + + Turquoise + + + Red + + + Maroon + + + Amethyst + + + Mauve + + + Magenta + + + Gold + + + Orange + + + Cyan + + + Green + + + Cobalt + + + White + + + Peach + + + Lime + + + Red + + + Mulberry + + + Aquamarine + + + Cyan + + + Magenta + + + Cobalt + + + Lime + + + White + + + Aquamarine + + + Cyan + + + Orange + + + Mulberry + + + Gold + + + Red + + + Lime + + + Yellow + + + Grey + + + Ocher + + + Lime + + + Emerald + + + Green + + + Sage + + + Teal + + + Indigo + + + Turquoise + + + Red + + + Maroon + + + Amethyst + + + Mauve + + + Gold + + + Orange + + + Yellow + + + Magenta + + + Cobalt + + + Green + + + Red + + + Lime + + + Gold + + + Aquamarine + + + Yellow + + + Cobalt + + + Red + + + Aquamarine + + + Cobalt + + + Lime + + + Cyan + + + Gold + + + Cobalt + + + Yellow + + + Aquamarine + + + Gold + + + Lime + + + Red + + + Lime + + + White + + + Aquamarine + + + Peach + + + Red + + + Blue + + + Yellow + + + Orange + + + Grey + + + Ocher + + + Lime + + + Emerald + + + Green + + + Sage + + + Teal + + + Indigo + + + Turquoise + + + Red + + + Maroon + + + Amethyst + + + Mauve + + + Peach + + + Red + + + White + + + Mulberry + + + Blue + + + Lime + + + Green + + + Turquoise + + + Yellow + + + Teal + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Ocher + + + Green + + + Turquoise + + + Yellow + + + Teal + + + Mauve + + + Amethyst + + + Sage + + + Grey + + + Orange + + + Red + + + Indigo + + + Ocher + + + Green + + + Yellow + + + Teal + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Green + + + Turquoise + + + Yellow + + + Teal + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Green + + + Turquoise + + + Yellow + + + Teal + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Ocher + + + Orange + + + Maroon + + + Lime + + + Mauve + + + Amethyst + + + Grey + + + Teal + + + Turquoise + + + Yellow + + + Green + + + Orange + + + Maroon + + + Mauve + + + Amethyst + + + Grey + + + Teal + + + Turquoise + + + Yellow + + + Green + + + Orange + + + Maroon + + + Mauve + + + Amethyst + + + Grey + + + Turquoise + + + Yellow + + + Red + + + Mulberry + + + Peach + + + Blue + + + Aquamarine + + + White + + + Teal + + + Indigo + + + Green + + + Grey + + + Turquoise + + + Red + + + Orange + + + Emerald + + + Yellow + + + Teal + + + Indigo + + + Green + + + Grey + + + Turquoise + + + Red + + + Orange + + + Emerald + + + Lime + + + Yellow + + + Peach + + + Red + + + Orange + + + White + + + Yellow + + + Gold + + + Bark Mounds + + + Cobalt + + + Cyan + + + Blue + + + Magenta + + + Red + + + Mulberry + + + Cyan + + + Cobalt + + + Blue + + + Aquamarine + + + Magenta + + + Green + + + Green + + + Maroon + + + Lime + + + Turquoise + + + Yellow + + + Teal + + + Emerald + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Ocher + + + Green + + + Maroon + + + Lime + + + Turquoise + + + Yellow + + + Teal + + + Emerald + + + Mauve + + + Amethyst + + + Sage + + + Grey + + + Orange + + + Red + + + Ocher + + + Green + + + Maroon + + + Lime + + + Turquoise + + + Yellow + + + Teal + + + Emerald + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Indigo + + + Ocher + + + Green + + + Maroon + + + Lime + + + Turquoise + + + Yellow + + + Teal + + + Emerald + + + Mauve + + + Amethyst + + + Sage + + + Grey + + + Orange + + + Red + + + Ocher + + + Green + + + Lime + + + Yellow + + + Teal + + + Emerald + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Green + + + Lime + + + Turquoise + + + Yellow + + + Teal + + + Emerald + + + Mauve + + + Amethyst + + + Sage + + + Orange + + + Red + + + Ocher + + + Orange + + + Magenta + + + Gold + + + Cobalt + + + Cyan + + + Yellow + + + Aquamarine + + + Lime + + + Blue + + + White + + + Peach + + + Mulberry + + + White + + + Peach + + + Lime + + + Red + + + Mulberry + + + Aquamarine + + + Green + + + Yellow + + + Cyan + + + Gold + + + Orange + + + Cobalt + + + Peach + + + White + + + Gold + + + Lime + + + Yellow + + + Orange + + + Blue + + + Green + + + Magenta + + + White + + + Orange + + + Peach + + + Red + + + Mulberry + + + Magenta + + + Peach + + + Gold + + + Orange + + + Cyan + + + Lime + + + Mulberry + + + Green + + + Red + + + Orange + + + Crystalline Shards + + + Lindigoticum + + + Prasinum + + + Roseum + + + Purpureum + + + Rubeum + + + Albidum + + + Flavum + + + Prasinum + + + Purpureum + + + Rubeum + + + Flavum + + + Lindigoticum + + + Prasinum + + + Roseum + + + Purpureum + + + Rubeum + + + Albidum + + + Flavum + + + Lindigoticum + + + Luteolum + + + Viride + + + Lindigoticum + + + Luteolum + + + Viride + + + Lindigoticum + + + Luteolum + + + Viride + + + Lindigoticum + + + Luteolum + + + Viride + + + Lindigoticum + + + Luteolum + + + Viride + + + Lindigoticum + + + Luteolum + + + Viride + + + Rutulum + + + Caeruleum + + + Albidum + + + Viride + + + Ostrinum + + + Rubellum + + + Cereum + + + Prasinum + + + Rubellum + + + Stolon Tree + + + Lime + + + Turquoise + + + Grey + + + Indigo + + + Emerald + + + Green + + + Maroon + + + White + + + Lime + + + Peach + + + Aquamarine + + + Blue + + + Red + + + Lime + + + Turquoise + + + Grey + + + Indigo + + + Yellow + + + Emerald + + + Green + + + Maroon + + + White + + + Peach + + + Gold + + + Lime + + + Green + + + Yellow + + + Lime + + + Turquoise + + + Grey + + + Indigo + + + Emerald + + + Green + + + Maroon + + + Lime + + + Turquoise + + + Grey + + + Indigo + + + Emerald + + + Green + + + Maroon + + + Amethyst + + + Grey + + + Turquoise + + + Yellow + + + Mauve + + + Orange + + + Red + + + Ocher + + + Maroon + + + Emerald + + + Teal + + + Sage + + + Lime + + + Lime + + + Cyan + + + Gold + + + Mulberry + + + Orange + + + Red + + + Lime + + + White + + + Yellow + + + Aquamarine + + + Cyan + + + Green + + + Roseum + + + Gypseeum + + + Ostrinum + + + Viride + + + Lividum + + + Aureum + + + Puniceum + + + Lindigoticum + + + Lime + + + Indigo + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Yellow + + + Mauve + + + Orange + + + Lime + + + Indigo + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Mauve + + + Orange + + + Lime + + + Indigo + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Mauve + + + Lime + + + Indigo + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Mauve + + + Lime + + + Indigo + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Mauve + + + Lime + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Mauve + + + Lime + + + Indigo + + + Green + + + Emerald + + + Teal + + + Grey + + + Red + + + Mauve + + + Caeruleum + + + Albulum + + + Viride + + + Phoeniceum + + + Purpureum + + + Rufum + + + Croceum + + + Caeruleum + + + Viride + + + Blatteum + + + Rubellum + + + Flavum + + + Caeruleum + + + Albulum + + + Roseum + + + Puniceum + + + Rubeum + + + Lividum + + + Cereum + + + Viride + + + Rubeum + + + Flavum + + + Cobalteum + + + Niveum + + + Prasinum + + + Roseum + + + Ostrinum + + + Rutulum + + + Croceum + + + Lindigoticum + + + Albens + + + Gypseeum + + + Blatteum + + + Luteolum + + + Luteolum + + + Croceum + + + Puniceum + + + Roseum + + + Blatteum Bioluminescent + + + Rubeum Bioluminescent + + + Prasinum Bioluminescent + + + Roseum Bioluminescent + + + Solid + + + Lattice + + + Stolon Pod + + + Viride + + + Aurarium + + + Chryseum + + + Teal + + + Mauve + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Red + + + Indigo + + + Teal + + + Mauve + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Red + + + Indigo + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Red + + + Indigo + + + Emerald + + + Teal + + + Mauve + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Indigo + + + Teal + + + Mauve + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Indigo + + + Mauve + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Red + + + Indigo + + + Teal + + + Emerald + + + Lime + + + Turquoise + + + Green + + + Grey + + + Amethyst + + + Indigo + + + Caeruleum + + + Candidum + + + Gypseeum + + + Purpureum + + + Rufum + + + Lindigoticum + + + Cereum + + + Prasinum + + + Puniceum + + + Rubellum + + + Caeruleum + + + Niveum + + + Viride + + + Blatteum + + + Rubeum + + + Lividum + + + Albidum + + + Blatteum + + + Rubicundum + + + Caeruleum + + + Albidum + + + Viride + + + Ostrinum + + + Rubellum + + + Roseum + + + Aurarium + + + Cobalteum + + + Candidum + + + Gypseeum + + + Purpureum + + + Rubeum + + + Caeruleum + + + Albidum + + + Viride + + + Blatteum + + + Common + + + Large + + + Barbs + + + Roseum + + + Prasinum + + + Albidum + + + Caeruleum + + + Blatteum + + + Lindigoticum + + + Violaceum + + + Viride + + + Indigo + + + Emerald + + + Yellow + + + Grey + + + Red + + + Maroon + + + Turquoise + + + Teal + + + Amethyst + + + Mauve + + + Ocher + + + Indigo + + + Emerald + + + Grey + + + Red + + + Maroon + + + Turquoise + + + Teal + + + Amethyst + + + Mauve + + + Ocher + + + Indigo + + + Emerald + + + Yellow + + + Grey + + + Red + + + Maroon + + + Turquoise + + + Teal + + + Amethyst + + + Mauve + + + Ocher + + + Indigo + + + Emerald + + + Grey + + + Red + + + Maroon + + + Turquoise + + + Teal + + + Amethyst + + + Green + + + Mauve + + + Ocher + + + Indigo + + + Emerald + + + Yellow + + + Grey + + + Red + + + Maroon + + + Turquoise + + + Teal + + + Amethyst + + + Mauve + + + Ocher + + + Lime + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Orange + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Orange + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Orange + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Orange + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Orange + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Maroon + + + Yellow + + + Lime + + + Green + + + Sage + + + Emerald + + + Teal + + + Red + + + Amphora Plant + + \ No newline at end of file diff --git a/DataDefinitions/Properties/Thargoid.Designer.cs b/DataDefinitions/Properties/Thargoid.Designer.cs new file mode 100644 index 0000000000..f19b410336 --- /dev/null +++ b/DataDefinitions/Properties/Thargoid.Designer.cs @@ -0,0 +1,207 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Thargoid { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Thargoid() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.Thargoid", typeof(Thargoid).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Thargoid Interceptor Basilisk. + /// + public static string Basilisk { + get { + return ResourceManager.GetString("Basilisk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Scout Berserker. + /// + public static string Berserker { + get { + return ResourceManager.GetString("Berserker", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Caustic Generator. + /// + public static string Caustic_Generator { + get { + return ResourceManager.GetString("Caustic_Generator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Interceptor Cyclops. + /// + public static string Cyclops { + get { + return ResourceManager.GetString("Cyclops", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Interceptor Hydra. + /// + public static string Hydra { + get { + return ResourceManager.GetString("Hydra", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Scout Inciter. + /// + public static string Inciter { + get { + return ResourceManager.GetString("Inciter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Scout Marauder. + /// + public static string Marauder { + get { + return ResourceManager.GetString("Marauder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Interceptor Medusa. + /// + public static string Medusa { + get { + return ResourceManager.GetString("Medusa", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Interceptor Orthrus. + /// + public static string Orthrus { + get { + return ResourceManager.GetString("Orthrus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Scout Regenerator. + /// + public static string Regenerator { + get { + return ResourceManager.GetString("Regenerator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Scavengers. + /// + public static string Scavengers { + get { + return ResourceManager.GetString("Scavengers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Uplink Device. + /// + public static string TG_DataScan { + get { + return ResourceManager.GetString("TG_DataScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Pod. + /// + public static string TG_Pod { + get { + return ResourceManager.GetString("TG_Pod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Device. + /// + public static string TG_Transmitter { + get { + return ResourceManager.GetString("TG_Transmitter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Interceptor Shipwreck. + /// + public static string Wrecked_Interceptor { + get { + return ResourceManager.GetString("Wrecked_Interceptor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thargoid Scout Shipwreck. + /// + public static string Wrecked_Scout { + get { + return ResourceManager.GetString("Wrecked_Scout", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/Thargoid.resx b/DataDefinitions/Properties/Thargoid.resx new file mode 100644 index 0000000000..36b50875af --- /dev/null +++ b/DataDefinitions/Properties/Thargoid.resx @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Thargoid Interceptor Basilisk + + + Thargoid Scout Berserker + + + Thargoid Caustic Generator + + + Thargoid Interceptor Cyclops + + + Thargoid Interceptor Hydra + + + Thargoid Scout Inciter + + + Thargoid Scout Marauder + + + Thargoid Interceptor Medusa + + + Thargoid Interceptor Orthrus + + + Thargoid Scout Regenerator + + + Thargoid Scavengers + + + Thargoid Uplink Device + + + Thargoid Pod + + + Thargoid Device + + + Thargoid Interceptor Shipwreck + + + Thargoid Scout Shipwreck + + \ No newline at end of file diff --git a/DataDefinitions/Properties/ThargoidDesc.Designer.cs b/DataDefinitions/Properties/ThargoidDesc.Designer.cs new file mode 100644 index 0000000000..a254f9fe03 --- /dev/null +++ b/DataDefinitions/Properties/ThargoidDesc.Designer.cs @@ -0,0 +1,207 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDataDefinitions.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class ThargoidDesc { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ThargoidDesc() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDataDefinitions.Properties.ThargoidDesc", typeof(ThargoidDesc).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic.. + /// + public static string Basilisk { + get { + return ResourceManager.GetString("Basilisk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This ship can increase the damage output of nearby Thargoid Scouts.. + /// + public static string Berserker { + get { + return ResourceManager.GetString("Berserker", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These biomechanical structures expel caustic gas, and are deployed in great numbers to create and maintain dense clouds. They appear to react violently to nearby heat sources.. + /// + public static string Caustic_Generator { + get { + return ResourceManager.GetString("Caustic_Generator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic.. + /// + public static string Cyclops { + get { + return ResourceManager.GetString("Cyclops", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic.. + /// + public static string Hydra { + get { + return ResourceManager.GetString("Hydra", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This ship can increase the speed and maneuverability of nearby Thargoid Scouts.. + /// + public static string Inciter { + get { + return ResourceManager.GetString("Inciter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These attack craft are typically encountered in small groups.. + /// + public static string Marauder { + get { + return ResourceManager.GetString("Marauder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic.. + /// + public static string Medusa { + get { + return ResourceManager.GetString("Medusa", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic. They appear to have a role in capturing new territories.. + /// + public static string Orthrus { + get { + return ResourceManager.GetString("Orthrus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This ship can remotely repair damage to nearby Thargoid Scouts.. + /// + public static string Regenerator { + get { + return ResourceManager.GetString("Regenerator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biomechanical constructs created by the Thargoids.. + /// + public static string Scavengers { + get { + return ResourceManager.GetString("Scavengers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A piece of Thargoid technology.. + /// + public static string TG_DataScan { + get { + return ResourceManager.GetString("TG_DataScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These cyst-like growths are a symptom of Thargoid interference with a planet's ecology.. + /// + public static string TG_Pod { + get { + return ResourceManager.GetString("TG_Pod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These devices are able to generate holographic star maps.. + /// + public static string TG_Transmitter { + get { + return ResourceManager.GetString("TG_Transmitter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The wreckage of a Thargoid Interceptor, a Thargoid attack ship.. + /// + public static string Wrecked_Interceptor { + get { + return ResourceManager.GetString("Wrecked_Interceptor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The wreckage of a Thargoid Scout, a small Thargoid attack ship.. + /// + public static string Wrecked_Scout { + get { + return ResourceManager.GetString("Wrecked_Scout", resourceCulture); + } + } + } +} diff --git a/DataDefinitions/Properties/ThargoidDesc.resx b/DataDefinitions/Properties/ThargoidDesc.resx new file mode 100644 index 0000000000..c33112095a --- /dev/null +++ b/DataDefinitions/Properties/ThargoidDesc.resx @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic. + + + This ship can increase the damage output of nearby Thargoid Scouts. + + + These biomechanical structures expel caustic gas, and are deployed in great numbers to create and maintain dense clouds. They appear to react violently to nearby heat sources. + + + These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic. + + + These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic. + + + This ship can increase the speed and maneuverability of nearby Thargoid Scouts. + + + These attack craft are typically encountered in small groups. + + + These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic. + + + These powerful Thargoid ships are able to navigate hyperspace in ways that are not fully understood, and are at least partly organic. They appear to have a role in capturing new territories. + + + This ship can remotely repair damage to nearby Thargoid Scouts. + + + Biomechanical constructs created by the Thargoids. + + + A piece of Thargoid technology. + + + These cyst-like growths are a symptom of Thargoid interference with a planet's ecology. + + + These devices are able to generate holographic star maps. + + + The wreckage of a Thargoid Interceptor, a Thargoid attack ship. + + + The wreckage of a Thargoid Scout, a small Thargoid attack ship. + + \ No newline at end of file diff --git a/DataDefinitions/Properties/tsconfig1.json b/DataDefinitions/Properties/tsconfig1.json new file mode 100644 index 0000000000..a8278661f3 --- /dev/null +++ b/DataDefinitions/Properties/tsconfig1.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "noImplicitAny": false, + "noEmitOnError": true, + "removeComments": false, + "sourceMap": true, + "target": "es5" + }, + "exclude": [ + "node_modules", + "wwwroot" + ] +} diff --git a/DataDefinitions/SignalSource.cs b/DataDefinitions/SignalSource.cs index e11feaa7e5..369f21acc5 100644 --- a/DataDefinitions/SignalSource.cs +++ b/DataDefinitions/SignalSource.cs @@ -13,99 +13,98 @@ static SignalSource() resourceManager = Properties.SignalSource.ResourceManager; resourceManager.IgnoreCase = true; missingEDNameHandler = edname => new SignalSource(edname); - - UnidentifiedSignalSource = new SignalSource("USS"); - GenericSignalSource = new SignalSource("GenericSignalSource"); - - var NavBeacon = new SignalSource("MULTIPLAYER_SCENARIO42_TITLE"); - var CompromisedNavBeacon = new SignalSource("MULTIPLAYER_SCENARIO80_TITLE"); - - var ResourceExtraction = new SignalSource("MULTIPLAYER_SCENARIO14_TITLE"); - var ResourceExtractionLow = new SignalSource("MULTIPLAYER_SCENARIO77_TITLE"); - var ResourceExtractionHigh = new SignalSource("MULTIPLAYER_SCENARIO78_TITLE"); - var ResourceExtractionHazardous = new SignalSource("MULTIPLAYER_SCENARIO79_TITLE"); - var SalvageableWreckage = new SignalSource("MULTIPLAYER_SCENARIO81_TITLE"); - - var CombatZoneHigh = new SignalSource("Warzone_PointRace_High"); - var CombatZoneMedium = new SignalSource("Warzone_PointRace_Med"); - var CombatZoneLow = new SignalSource("Warzone_PointRace_Low"); - var CombatZoneThargoid = new SignalSource("Warzone_TG"); - var CombatZoneThargoidHigh = new SignalSource("Warzone_TG_High"); - var CombatZoneThargoidMedium = new SignalSource("Warzone_TG_Med"); - var CombatZoneThargoidLow = new SignalSource("Warzone_TG_Low"); - var CombatZoneThargoidVeryHigh = new SignalSource("Warzone_TG_VeryHigh"); - - var Aftermath = new SignalSource("USS_Type_Aftermath", "USS_SalvageHaulageWreckage"); - var Anomaly = new SignalSource("USS_Type_Anomaly"); - var Ceremonial = new SignalSource("USS_Type_Ceremonial", "USS_CeremonialComms"); - var Convoy = new SignalSource("USS_Type_Convoy", "USS_ConvoyDispersalPattern"); - var DegradedEmissions = new SignalSource("USS_Type_Salvage", "USS_DegradedEmissions"); - var Distress = new SignalSource("USS_Type_DistressSignal", "USS_DistressCall"); - var EncodedEmissions = new SignalSource("USS_Type_ValuableSalvage"); - var HighGradeEmissions = new SignalSource("USS_Type_VeryValuableSalvage", "USS_HighGradeEmissions"); - var MissionTarget = new SignalSource("USS_Type_MissionTarget"); - var NonHuman = new SignalSource("USS_Type_NonHuman", "USS_NonHumanSignalSource"); - var TradingBeacon = new SignalSource("USS_Type_TradingBeacon", "USS_TradingBeacon"); - var WeaponsFire = new SignalSource("USS_Type_WeaponsFire", "USS_WeaponsFire"); - - var UnregisteredCommsBeacon = new SignalSource("NumberStation"); - var ListeningPost = new SignalSource("ListeningPost"); - - var CapShip = new SignalSource("FIXED_EVENT_CAPSHIP"); - var Checkpoint = new SignalSource("FIXED_EVENT_CHECKPOINT"); - var ConvoyBeacon = new SignalSource("FIXED_EVENT_CONVOY"); - var DebrisField = new SignalSource("FIXED_EVENT_DEBRIS"); - var DistributionCenter = new SignalSource("FIXED_EVENT_DISTRIBUTIONCENTRE"); - var PirateAttackT5 = new SignalSource("FIXED_EVENT_HIGHTHREATSCENARIO_T5"); - var PirateAttackT6 = new SignalSource("FIXED_EVENT_HIGHTHREATSCENARIO_T6"); - var PirateAttackT7 = new SignalSource("FIXED_EVENT_HIGHTHREATSCENARIO_T7"); - var NotableStellarPhenomenaCloud = new SignalSource("Fixed_Event_Life_Cloud"); - var NotableStellarPhenomenaRing = new SignalSource("Fixed_Event_Life_Ring"); - var AncientProbe = new SignalSource("FIXED_EVENT_PROBE"); - - var AttackAftermath = new SignalSource("AttackAftermath"); - var AftermathLarge = new SignalSource("Aftermath_Large"); - - var Biological = new SignalSource("SAA_SignalType_Biological"); - var Geological = new SignalSource("SAA_SignalType_Geological"); - var Guardian = new SignalSource("SAA_SignalType_Guardian"); - var Human = new SignalSource("SAA_SignalType_Human"); - var Thargoid = new SignalSource("SAA_SignalType_Thargoid"); - var PlanetAnomaly = new SignalSource("SAA_SignalType_PlanetAnomaly"); - var Other = new SignalSource("SAA_SignalType_Other"); - - var AncientGuardianRuins = new SignalSource("Ancient"); - var GuardianStructureTiny = new SignalSource("Ancient_Tiny"); - var GuardianStructureSmall = new SignalSource("Ancient_Small"); - var GuardianStructureMedium = new SignalSource("Ancient_Medium"); - var ThargoidBarnacle = new SignalSource("Settlement_Unflattened_Unknown"); - var ThargoidCrashSite = new SignalSource("Settlement_Unflattened_WreckedUnknown"); - var ThargoidSpireSite = new SignalSource( "Settlement_Unflattened_TGMegaBarnacle" ); - - var AbandonedBuggy = new SignalSource("Abandoned_Buggy"); - var ActivePowerSource = new SignalSource("Perimeter"); - var CrashedShip = new SignalSource("CrashedShip"); - var DamagedEagleAssassination = new SignalSource("Damaged_Eagle_Assassination"); - var DamagedSidewinderAssassination = new SignalSource("Damaged_Sidewinder_Assassination"); - var DamagedEagle = new SignalSource("Damaged_Eagle"); - var DamagedSidewinder = new SignalSource("Damaged_Sidewinder"); - var SmugglersCache = new SignalSource("Smugglers_Cache"); - var Cargo = new SignalSource("Cargo"); - var TrapCargo = new SignalSource("Trap_Cargo"); - var TrapData = new SignalSource("Trap_Data"); - var WreckageAncientProbe = new SignalSource("Wreckage_AncientProbe"); - var WreckageBuggy = new SignalSource("Wreckage_Buggy"); - var WreckageCargo = new SignalSource("Wreckage_Cargo"); - var WreckageProbe = new SignalSource("Wreckage_Probe"); - var WreckageSatellite = new SignalSource("Wreckage_Satellite"); - var WrecksEagle = new SignalSource("Wrecks_Eagle"); - var WrecksSidewinder = new SignalSource("Wrecks_Sidewinder"); - - var ArmedRevolt = new SignalSource("Gro_controlScenarioTitle"); } - public static readonly SignalSource UnidentifiedSignalSource; - public static readonly SignalSource GenericSignalSource; + public static readonly SignalSource UnidentifiedSignalSource = new SignalSource ("USS"); + public static readonly SignalSource GenericSignalSource = new SignalSource ("GenericSignalSource"); + + public static readonly SignalSource NavBeacon = new SignalSource("MULTIPLAYER_SCENARIO42_TITLE"); + public static readonly SignalSource CompromisedNavBeacon = new SignalSource("MULTIPLAYER_SCENARIO80_TITLE"); + + public static readonly SignalSource ResourceExtraction = new SignalSource("MULTIPLAYER_SCENARIO14_TITLE"); + public static readonly SignalSource ResourceExtractionLow = new SignalSource("MULTIPLAYER_SCENARIO77_TITLE"); + public static readonly SignalSource ResourceExtractionHigh = new SignalSource("MULTIPLAYER_SCENARIO78_TITLE"); + public static readonly SignalSource ResourceExtractionHazardous = new SignalSource("MULTIPLAYER_SCENARIO79_TITLE"); + public static readonly SignalSource SalvageableWreckage = new SignalSource("MULTIPLAYER_SCENARIO81_TITLE"); + + public static readonly SignalSource CombatZoneHigh = new SignalSource("Warzone_PointRace_High"); + public static readonly SignalSource CombatZoneMedium = new SignalSource("Warzone_PointRace_Med"); + public static readonly SignalSource CombatZoneLow = new SignalSource("Warzone_PointRace_Low"); + public static readonly SignalSource CombatZoneThargoid = new SignalSource("Warzone_TG"); + public static readonly SignalSource CombatZoneThargoidHigh = new SignalSource("Warzone_TG_High"); + public static readonly SignalSource CombatZoneThargoidMedium = new SignalSource("Warzone_TG_Med"); + public static readonly SignalSource CombatZoneThargoidLow = new SignalSource("Warzone_TG_Low"); + public static readonly SignalSource CombatZoneThargoidVeryHigh = new SignalSource("Warzone_TG_VeryHigh"); + + public static readonly SignalSource Aftermath = new SignalSource("USS_Type_Aftermath", "USS_SalvageHaulageWreckage"); + public static readonly SignalSource Anomaly = new SignalSource("USS_Type_Anomaly"); + public static readonly SignalSource Ceremonial = new SignalSource("USS_Type_Ceremonial", "USS_CeremonialComms"); + public static readonly SignalSource Convoy = new SignalSource("USS_Type_Convoy", "USS_ConvoyDispersalPattern"); + public static readonly SignalSource DegradedEmissions = new SignalSource("USS_Type_Salvage", "USS_DegradedEmissions"); + public static readonly SignalSource Distress = new SignalSource("USS_Type_DistressSignal", "USS_DistressCall"); + public static readonly SignalSource EncodedEmissions = new SignalSource("USS_Type_ValuableSalvage"); + public static readonly SignalSource HighGradeEmissions = new SignalSource("USS_Type_VeryValuableSalvage", "USS_HighGradeEmissions"); + public static readonly SignalSource MissionTarget = new SignalSource("USS_Type_MissionTarget"); + public static readonly SignalSource NonHuman = new SignalSource("USS_Type_NonHuman", "USS_NonHumanSignalSource"); + public static readonly SignalSource TradingBeacon = new SignalSource("USS_Type_TradingBeacon", "USS_TradingBeacon"); + public static readonly SignalSource WeaponsFire = new SignalSource("USS_Type_WeaponsFire", "USS_WeaponsFire"); + + public static readonly SignalSource UnregisteredCommsBeacon = new SignalSource("NumberStation"); + public static readonly SignalSource ListeningPost = new SignalSource("ListeningPost"); + + //var CapShip = new SignalSource("FIXED_EVENT_CAPSHIP"); + //var Checkpoint = new SignalSource("FIXED_EVENT_CHECKPOINT"); + //var ConvoyBeacon = new SignalSource("FIXED_EVENT_CONVOY"); + //var DebrisField = new SignalSource("FIXED_EVENT_DEBRIS"); + //var DistributionCenter = new SignalSource("FIXED_EVENT_DISTRIBUTIONCENTRE"); + //var PirateAttackT5 = new SignalSource("FIXED_EVENT_HIGHTHREATSCENARIO_T5"); + //var PirateAttackT6 = new SignalSource("FIXED_EVENT_HIGHTHREATSCENARIO_T6"); + //var PirateAttackT7 = new SignalSource("FIXED_EVENT_HIGHTHREATSCENARIO_T7"); + //var NotableStellarPhenomenaCloud = new SignalSource("Fixed_Event_Life_Cloud"); + //var NotableStellarPhenomenaRing = new SignalSource("Fixed_Event_Life_Ring"); + //var AncientProbe = new SignalSource("FIXED_EVENT_PROBE"); + + //var AttackAftermath = new SignalSource("AttackAftermath"); + //var AftermathLarge = new SignalSource("Aftermath_Large"); + + public static readonly SignalSource AttackAftermath = new SignalSource("AttackAftermath"); + public static readonly SignalSource AftermathLarge = new SignalSource("Aftermath_Large"); + + public static readonly SignalSource Biological = new SignalSource("SAA_SignalType_Biological"); + public static readonly SignalSource Geological = new SignalSource("SAA_SignalType_Geological"); + public static readonly SignalSource Guardian = new SignalSource("SAA_SignalType_Guardian"); + public static readonly SignalSource Human = new SignalSource("SAA_SignalType_Human"); + public static readonly SignalSource Thargoid = new SignalSource("SAA_SignalType_Thargoid"); + public static readonly SignalSource PlanetAnomaly = new SignalSource("SAA_SignalType_PlanetAnomaly"); + public static readonly SignalSource OtherSAA = new SignalSource("SAA_SignalType_Other"); + + public static readonly SignalSource AncientGuardianRuins = new SignalSource("Ancient"); + public static readonly SignalSource GuardianStructureTiny = new SignalSource("Ancient_Tiny"); + public static readonly SignalSource GuardianStructureSmall = new SignalSource("Ancient_Small"); + public static readonly SignalSource GuardianStructureMedium = new SignalSource("Ancient_Medium"); + public static readonly SignalSource ThargoidBarnacle = new SignalSource("Settlement_Unflattened_Unknown"); + public static readonly SignalSource ThargoidCrashSite = new SignalSource("Settlement_Unflattened_WreckedUnknown"); + + public static readonly SignalSource AbandonedBuggy = new SignalSource("Abandoned_Buggy"); + public static readonly SignalSource ActivePowerSource = new SignalSource("Perimeter"); + public static readonly SignalSource CrashedShip = new SignalSource("CrashedShip"); + public static readonly SignalSource DamagedEagleAssassination = new SignalSource("Damaged_Eagle_Assassination"); + public static readonly SignalSource DamagedSidewinderAssassination = new SignalSource("Damaged_Sidewinder_Assassination"); + public static readonly SignalSource DamagedEagle = new SignalSource("Damaged_Eagle"); + public static readonly SignalSource DamagedSidewinder = new SignalSource("Damaged_Sidewinder"); + public static readonly SignalSource SmugglersCache = new SignalSource("Smugglers_Cache"); + public static readonly SignalSource Cargo = new SignalSource("Cargo"); + public static readonly SignalSource TrapCargo = new SignalSource("Trap_Cargo"); + public static readonly SignalSource TrapData = new SignalSource("Trap_Data"); + public static readonly SignalSource WreckageAncientProbe = new SignalSource("Wreckage_AncientProbe"); + public static readonly SignalSource WreckageBuggy = new SignalSource("Wreckage_Buggy"); + public static readonly SignalSource WreckageCargo = new SignalSource("Wreckage_Cargo"); + public static readonly SignalSource WreckageProbe = new SignalSource("Wreckage_Probe"); + public static readonly SignalSource WreckageSatellite = new SignalSource("Wreckage_Satellite"); + public static readonly SignalSource WrecksEagle = new SignalSource("Wrecks_Eagle"); + public static readonly SignalSource WrecksSidewinder = new SignalSource("Wrecks_Sidewinder"); + + public static readonly SignalSource ArmedRevolt = new SignalSource("Gro_controlScenarioTitle"); public SignalType signalType { get; set; } public int index; diff --git a/DataDefinitions/StarSystem.cs b/DataDefinitions/StarSystem.cs index 90268d7ebb..2a7ead141e 100644 --- a/DataDefinitions/StarSystem.cs +++ b/DataDefinitions/StarSystem.cs @@ -135,6 +135,11 @@ public void PreserveBodyData(List oldBodies, ImmutableList newBodies private static Body PreserveBodyData(Body oldBody, Body updatedBody) { + //if ( oldBody.atmospherethickness != AtmosphereThickness.None ) + //{ + // updatedBody.atmospherethickness = oldBody.atmospherethickness; + //} + if ( ( oldBody.scannedDateTime ?? DateTime.MinValue) > ( updatedBody.scannedDateTime ?? DateTime.MinValue ) ) { updatedBody.scannedDateTime = oldBody.scannedDateTime; @@ -189,6 +194,13 @@ private static Body PreserveBodyData(Body oldBody, Body updatedBody) } } } + + // Third party sites do not have surface signal data (currently) + if ( oldBody.surfaceSignals.lastUpdated > updatedBody.surfaceSignals.lastUpdated ) + { + updatedBody.surfaceSignals = oldBody.surfaceSignals; + } + return updatedBody; } @@ -523,5 +535,138 @@ private long estimateSystemValue() if (other is null) { return null; } return Functions.StellarDistanceLy(x, y, z, other.x, other.y, other.z); } + + public HashSet GetChildBodyIDs ( long parentBodyID ) + { + // Use a hashset to ensure no duplicate values + return bodies + .Where(body => body.parents.Any(parent => parent.Values.Contains(parentBodyID)) && body.bodyId != null) + .Select(body => (long)body.bodyId) + .ToHashSet(); + } + + // TODO: 2212 - This only gets the first main star, if it is a barycentre then it is missed. Add TryGetMainStars() method?. + public bool TryGetMainStar( out Body star ) { + star = null; + + // Assume most of the time that body 0 is the main star + // If not then this is likely a barycentric system + var body = BodyWithID(0); + if ( body != null ) + { + if ( body.bodyType == BodyType.Star ) + { + star = body; + return true; + } + } + else if ( body is null ) { + List listBodyIDs = bodies.Select(x=>x.bodyId).ToList(); + SortedSet sortedBodyIDs = new SortedSet(); + + // Get a list of body IDs and sort them + foreach ( var bodyID in listBodyIDs ) { + if(bodyID != null) + { + sortedBodyIDs.Add(bodyID); + } + } + + // Return the first star we find + for(int i=1; i BodyWithID( bodyId )?.bodyType == BodyType.Star ) ) + { + star = BodyWithID( bodyId ); + if ( star != null ) + { + return true; + } + } + } + } + } + + return false; + } + + public bool TryGetParentStars ( long? childBodyID, out HashSet stars ) + { + stars = new HashSet(); + if ( childBodyID is null ) { return false; } + + var body = BodyWithID( childBodyID ); + if ( body is null ) { return false; } + + var starIDs = body.parents + .Where( p => p.ContainsKey( BodyType.Star.edname ) ) + .SelectMany( p => p.Values ) + .ToHashSet(); + + if ( starIDs.Any() ) // One or more direct star parents + { + stars = starIDs.Select( s => BodyWithID( s ) ).ToHashSet(); + return true; + } + + var barycentreIDs = body.parents + .Where( p => p.ContainsKey( BodyType.Barycenter.edname ) ) + .SelectMany( p => p.Values ) + .ToHashSet(); + + if ( barycentreIDs.Any() ) // One more more barycentre parents, recurse to search the parent's parents + { + foreach ( var barycentreID in barycentreIDs ) + { + TryGetParentStars( barycentreID, out var baryStars ); + foreach ( var star in baryStars ) + { + stars.Add( star ); + } + } + return true; + } + + return false; + } } } \ No newline at end of file diff --git a/DataDefinitions/SurfaceSignals.cs b/DataDefinitions/SurfaceSignals.cs new file mode 100644 index 0000000000..5ba7d2a107 --- /dev/null +++ b/DataDefinitions/SurfaceSignals.cs @@ -0,0 +1,239 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Utilities; +using Newtonsoft.Json; + +namespace EddiDataDefinitions +{ + public class SurfaceSignals + { + #region Biological Signals + + /// + /// Create an Exobiology list, which contains additional structures for tracking + /// + [JsonProperty, PublicAPI ("SAA scan has been completed") ] + public bool hasCompletedSAA { get; set; } + + [JsonProperty, PublicAPI ("Biological signal data") ] + public HashSet bioSignals { get; set; } = new HashSet(); + + [JsonIgnore, PublicAPI( "The maximum expected credit value for biological signals on this body" )] + public long exobiologyValue => bioSignals.OrderByDescending(s=>s.value).Take(reportedBiologicalCount).Select(s => s.value).Sum(); + + [JsonProperty, PublicAPI ( "The number of biologicals reported by FSS/SAA" )] + public int reportedBiologicalCount { get; set; } + + [JsonIgnore, PublicAPI( "True if the current biologicals are predicted (but not confirmed) " ) ] + public bool hasPredictedBios => bioSignals.Any( s => s.ScanState == Exobiology.State.Predicted ); + + [JsonIgnore] + public List bioSignalsRemaining => + bioSignals.Where( e => e.ScanState < Exobiology.State.SampleComplete ).ToList(); + + [JsonIgnore] + public int? bioSignalsComplete => + bioSignals.Where( e => e.ScanState>=Exobiology.State.SampleComplete ).Count(); + + [JsonIgnore, PublicAPI( "True if the current biologicals are predicted (but not confirmed) " ) ] + public bool predicted => bioSignals.Any( s => s.ScanState == Exobiology.State.Predicted ); + + [JsonIgnore, PublicAPI( "A legacy prediction exists, there could be more legacy variants to scan." )] + public bool legacyExists => bioSignals.Any( s => s.Genus==OrganicGenus.Brancae || s.Genus==OrganicGenus.Sphere || s.Genus==OrganicGenus.Tubers ); + + [JsonIgnore, PublicAPI( "The maximum expected credit value for biological signals that have not been fully scanned on this body" )] + public long remainingExobiologyValue => bioSignalsRemaining.Select( s => s.value ).Sum(); + + [JsonIgnore, PublicAPI( "The predicted total minimum value limited to the number of reported biologicals." )] + public long predictedMinimumTotalValue { + get { + long value = 0; + var log = ""; + + try + { + if(reportedBiologicalCount==1) { + //value = bioSignals.OrderBy(x => x.predictedMinimumValue).First().value; + value = bioSignals.Min(x => x.predictedMinimumValue); + log += $"\t(1/1) predictedMinimumTotalValue={value}, value=[{bioSignals.Min(x => x.predictedMinimumValue)}]\r\n"; + } + else if(reportedBiologicalCount>1) { + var values = bioSignals.OrderBy(x => x.predictedMinimumValue); + int iMin = Math.Min(values.Count(), reportedBiologicalCount); + log += $"\tvalues.Count()={values.Count()}, reportedBiologicalCount={reportedBiologicalCount}, values=[{String.Join(";",values.Select(x=>x.predictedMinimumValue).ToList())}]\r\n"; + value = values.Take(iMin).Select(x=>x.predictedMinimumValue).Sum(); + } + else { + // Error OR body has no bios + log = ""; + } + } + catch + { + value = 0; + } + + if(log != "") Logging.Debug(log); + return value; + } + } + + [JsonIgnore, PublicAPI( "The predicted total maximum value limited to the number of reported biologicals." )] + public long predictedMaximumTotalValue { + get { + long value = 0; + var log = ""; + + try + { + if(reportedBiologicalCount==1) { + value = bioSignals.Max(x => x.predictedMaximumValue); + log += $"\t(1/1) predictedMaximumTotalValue={value} value=[{bioSignals.Max(x => x.predictedMaximumValue)}]\r\n"; + } + else if(reportedBiologicalCount>1) { + var values = bioSignals.OrderByDescending(x => x.predictedMaximumValue); + int iMin = Math.Min(values.Count(), reportedBiologicalCount); + log += $"\tvalues.Count()={values.Count()}, reportedBiologicalCount={reportedBiologicalCount}, values=[{String.Join(";",values.Select(x=>x.predictedMaximumValue).ToList())}]\r\n"; + value = values.Take(iMin).Select(x=>x.predictedMaximumValue).Sum(); + } + else { + // Error OR body has no bios + log = ""; + } + } + catch + { + value = 0; + } + + if(log != "") Logging.Debug(log); + return value; + } + } + + public bool TryGetBio ( Organic organic, out Exobiology bio ) + { + bio = bioSignals.FirstOrDefault( b => b.variant == organic.variant ) ?? + bioSignals.FirstOrDefault( b => b.species == organic.species ) ?? + bioSignals.FirstOrDefault( b => b.genus == organic.genus ); + return bio != null; + } + + public bool TryGetBio ( OrganicVariant variant, OrganicSpecies species, OrganicGenus genus, out Exobiology bio ) + { + // Allow more than one Brain Tree + if ( genus == OrganicGenus.Brancae ) + { + // If the Brain Tree Genus/Variant COMBINATION already exists then return true + // If the Brain Tree Genus exists and has no varient, then return true (Shouldn't happen but lets check anyways?) + // Otherwise, return false (we need to add a new one) + // TODO: 2212 - What other biologicals can have more than one variant? + if ( bioSignals.Where( x => x.genus == genus && x.variant == variant ).Count() > 0 ) + { + bio = bioSignals.Where( x => x.genus == genus && x.variant == variant ).FirstOrDefault(); + } + else if ( bioSignals.Where( x => x.genus == genus && x.variant == null ).Count() > 0 ) { + bio = bioSignals.FirstOrDefault( b => b.genus == genus && b.variant == null ); + } + else + { + bio = null; + } + } + else + { + bio = bioSignals.FirstOrDefault( b => b.variant == variant ) ?? + bioSignals.FirstOrDefault( b => b.species == species ) ?? + bioSignals.FirstOrDefault( b => b.genus == genus ); + } + return bio != null; + } + + /// + /// Add a biological object + /// + /// The Organic Variant of the biological object + /// The Organic Species of the biological object + /// The Organic Genus of the biological object + /// true if this is a prediction, false if confirmed + /// The Exobiological object which was added to the body's surface signals + public Exobiology AddBio ( OrganicVariant variant, OrganicSpecies species, OrganicGenus genus, bool prediction = false ) + { + var bio = variant != null ? new Exobiology( variant, prediction ) : + species != null ? new Exobiology( species, prediction ) : + genus != null ? new Exobiology( genus, prediction ) : null; + if ( bio != null ) + { + bioSignals.Add( bio ); + } + return bio; + } + + public Exobiology AddBio ( Organic organic, bool isPrediction = false ) + { + Exobiology newOrganic = new Exobiology(organic, isPrediction); + bioSignals.Add( newOrganic ); + return newOrganic; + } + + /// + /// Add a biological object + /// + /// The OrganicGenus of the biological object + /// true if this is a prediction, false if confirmed + /// The Exobiological object which was added to the body's surface signals + public Exobiology AddBioFromGenus ( OrganicGenus genus, bool prediction = false ) + { + var bio = new Exobiology( genus, prediction ); + bioSignals.Add( bio ); + return bio; + } + + //public Exobiology AddBioFromPrediction ( OrganicGenus genus, long value, bool prediction = false ) + //{ + // var bio = new Exobiology( genus, value, prediction ); + // bioSignals.Add( bio ); + // return bio; + //} + + #endregion + + #region Geology Signals + + [PublicAPI( "The number of geological signals reported by FSS/SAA" )] + public int reportedGeologicalCount { get; set; } + + #endregion + + #region Guardian Signals + + [PublicAPI( "The number of Guardian signals reported by FSS/SAA" )] + public int reportedGuardianCount { get; set; } + + #endregion + + #region Human Signals + + [PublicAPI( "The number of Human signals reported by SAA" )] + public int reportedHumanCount { get; set; } + + #endregion + + #region Thargoid Signals + + [PublicAPI( "The number of Thargoid signals reported by SAA" )] + public int reportedThargoidCount { get; set; } + + #endregion + + #region Other Signals + + [PublicAPI( "The number of other signals reported by SAA" )] + public int reportedOtherCount { get; set; } + + #endregion + + public DateTime lastUpdated { get; set; } + } +} diff --git a/DataDefinitions/Thargoid.cs b/DataDefinitions/Thargoid.cs new file mode 100644 index 0000000000..d3fed28c87 --- /dev/null +++ b/DataDefinitions/Thargoid.cs @@ -0,0 +1,83 @@ +using System.Linq; +using System; +using Utilities; + +namespace EddiDataDefinitions +{ + public class Thargoid : ResourceBasedLocalizedEDName + { + static Thargoid () + { + resourceManager = Properties.Thargoid.ResourceManager; + resourceManager.IgnoreCase = true; + missingEDNameHandler = ( edname ) => new Thargoid( edname ); + } + + public static readonly Thargoid Basilisk = new Thargoid( "Basilisk", 3100402, null ); + public static readonly Thargoid Berserker = new Thargoid( "Berserker", 3100802, null ); + public static readonly Thargoid Caustic_Generator = new Thargoid( "Caustic_Generator", 3101300, null ); + public static readonly Thargoid Cyclops = new Thargoid( "Cyclops", 3100401, null ); + public static readonly Thargoid Hydra = new Thargoid( "Hydra", 3100404, null ); + public static readonly Thargoid Inciter = new Thargoid( "Inciter", 3100803, null ); + public static readonly Thargoid Marauder = new Thargoid( "Marauder", 3100801, null ); + public static readonly Thargoid Medusa = new Thargoid( "Medusa", 3100403, null ); + public static readonly Thargoid Orthrus = new Thargoid( "Orthrus", 3100406, null ); + public static readonly Thargoid Regenerator = new Thargoid( "Regenerator", 3100804, null ); + public static readonly Thargoid Scavengers = new Thargoid( "Scavengers", 3100700, null ); + public static readonly Thargoid TG_DataScan = new Thargoid( "TG_DataScan", 3101000, null ); + public static readonly Thargoid TG_Pod = new Thargoid( "TG_Pod", 3101100, null ); + public static readonly Thargoid TG_Transmitter = new Thargoid( "TG_Transmitter", 3101200, null ); + public static readonly Thargoid Wrecked_Interceptor = new Thargoid( "Wrecked_Interceptor", 3100405, null ); + public static readonly Thargoid Wrecked_Scout = new Thargoid( "Wrecked_Scout", 3100805, null ); + //missing Thargoid Glaive Hunter + //missing Thargoid Scythe Hunter + + public long? entryID; + + [PublicAPI] + public long? value; + + [PublicAPI] + public string localizedDescription => Properties.ThargoidDesc.ResourceManager.GetString( edname ); + + // dummy used to ensure that the static constructor has run + public Thargoid () : this( "" ) + { } + + private Thargoid ( string edname ) : base( edname, edname ) + { } + + private Thargoid ( string edname, long? entryID, long? value ) : base( edname, edname ) + { + this.entryID = entryID; + this.value = value; + } + + /// + /// Try getting data from the entryid first, then use edname as a fallback + /// + public static Thargoid Lookup ( long? entryId, string edName ) + { + try + { + if ( entryId != null ) + { + return AllOfThem.Single( a => a.entryID == entryId ); + } + } + catch ( InvalidOperationException e ) + { + if ( AllOfThem.Count( a => a.entryID == entryId ) > 1 ) + { + Logging.Error( $"Duplicate EntryID value {entryId} in {nameof( Thargoid )}.", e ); + } + else if ( AllOfThem.All( a => a.entryID != entryId ) ) + { + Logging.Error( $"Unknown EntryID value {entryId} with edname {edName} in {nameof( Thargoid )}.", e ); + } + } + + return FromEDName( edName ) ?? new Thargoid( edName ); // No match. + } + } +} diff --git a/DataProviderService/DatabaseNebula.cs b/DataProviderService/DatabaseNebula.cs new file mode 100644 index 0000000000..534706b5c4 --- /dev/null +++ b/DataProviderService/DatabaseNebula.cs @@ -0,0 +1,17 @@ +using System; + +namespace EddiDataProviderService +{ + public class DatabaseNebula + { + // Data as read from columns in our database + public int nebulaId { get; private set; } + public bool visited { get; private set; } + + public DatabaseNebula(int nebulaId, bool visited) + { + this.nebulaId = nebulaId; + this.visited = visited; + } + } +} diff --git a/DataProviderService/INebulaRepository.cs b/DataProviderService/INebulaRepository.cs new file mode 100644 index 0000000000..08431bd755 --- /dev/null +++ b/DataProviderService/INebulaRepository.cs @@ -0,0 +1,19 @@ +using EddiDataDefinitions; +using System.Collections.Generic; + +namespace EddiDataProviderService +{ + public interface INebulaRepository + { + bool GetNebulaVisited(int? nebulaId); + + void SaveNebulaVisited(int? nebulaId, bool visited); + + void ToggleNebulaVisited(int? nebulaId); + + // Nothing to do when we leave a nebula + //void LeaveNebula(int nebulaId); + + void GetNebulaeVisited ( ref List nebulae ); + } +} diff --git a/DataProviderService/NebulaSqLiteRepository.cs b/DataProviderService/NebulaSqLiteRepository.cs new file mode 100644 index 0000000000..2afe9e2614 --- /dev/null +++ b/DataProviderService/NebulaSqLiteRepository.cs @@ -0,0 +1,378 @@ +using EddiDataDefinitions; +using JetBrains.Annotations; +using System.Collections.Generic; +using System.Data.SQLite; +using System.IO; +using System.Linq; +using Utilities; + +namespace EddiDataProviderService +{ + public class NebulaSqLiteRepository : SqLiteBaseRepository, INebulaRepository + { + // Creates a simple + + public static bool unitTesting; + + private const string CREATE_TABLE_SQL = @" + CREATE TABLE IF NOT EXISTS nebula + ( + nebulaId INT PRIMARY KEY UNIQUE NOT NULL, + visited TINYINT(1) DEFAULT 0 + ) WITHOUT ROWID;"; + + private const string INSERT_SQL = @" + INSERT INTO nebula + ( + nebulaId, + visited + )"; + + private const string UPDATE_SQL = @" + UPDATE nebula + SET + visited = @visited + "; + + private const string DELETE_SQL = @"DELETE FROM nebula "; + private const string SELECT_SQL = @"SELECT * FROM nebula "; + + private const string VALUES_SQL = @" + VALUES + ( + @nebulaId, + @visited + )"; + + private const string WHERE_NEBULAID = @"WHERE nebulaId = @nebulaId; PRAGMA optimize;"; + + private static NebulaSqLiteRepository instance; + + private NebulaSqLiteRepository() + { } + + private static readonly object instanceLock = new object(); + public static NebulaSqLiteRepository Instance + { + get + { + if ( instance == null ) + { + lock ( instanceLock ) + { + if ( instance == null ) + { + Logging.Debug( "No NebulaSqLiteRepository instance: creating one" ); + instance = new NebulaSqLiteRepository(); + CreateOrUpdateDatabase(); + } + } + } + return instance; + } + } + + public void ToggleNebulaVisited(int? nebulaId) { + bool current = GetNebulaVisited(nebulaId); + SaveNebulaVisited(nebulaId, !current); + } + + public bool GetNebulaVisited(int? nebulaId) + { + if (nebulaId==null) { return false; } + + if (!File.Exists(DbFile)) { return false; } + DatabaseNebula result = Instance.ReadNebula(nebulaId); + + if (result == null) { return false; } + return result.visited; + } + + [NotNull, ItemNotNull] + private DatabaseNebula ReadNebula(int? nebulaId) + { + DatabaseNebula result = null; + using (var con = SimpleDbConnection()) + { + con.Open(); + using (var cmd = new SQLiteCommand(con)) + { + using (var transaction = con.BeginTransaction()) + { + try + { + cmd.Prepare(); + cmd.Parameters.AddWithValue("@nebulaId", nebulaId); + cmd.CommandText = SELECT_SQL + WHERE_NEBULAID; + result = ReadNebulaEntry( cmd ); + } + catch (SQLiteException) + { + Logging.Warn("Problem reading data for Nebula ID '" + nebulaId + "' from database, returning null."); + //RecoverNebulaDB(); + //Instance.GetNebulaVisited( nebulaId ); + } + transaction.Commit(); + } + } + } + return result; + } + + public void GetNebulaeVisited ( ref List nebulae ) + { + if ( !File.Exists( DbFile ) ) + { return; } + if ( !nebulae.Any() ) + { return; } + + // Read the list of Nebulae, automatically update the visited property. + Instance.ReadNebulae( ref nebulae ); + } + + private bool ReadNebulae ( ref List nebulae ) + { + if ( !nebulae.Any() ) + { return false; } + + using ( var con = SimpleDbConnection() ) + { + con.Open(); + using ( var cmd = new SQLiteCommand( con ) ) + { + using ( var transaction = con.BeginTransaction() ) + { + foreach ( Nebula nebula in nebulae ) + { + try + { + cmd.Prepare(); + cmd.Parameters.AddWithValue( "@nebulaId", nebula.id ); + cmd.CommandText = SELECT_SQL + WHERE_NEBULAID; + + DatabaseNebula result = ReadNebulaEntry( cmd ) ?? new DatabaseNebula( nebula.id, false ); + nebula.visited = result.visited; + + } + catch ( SQLiteException ) + { + Logging.Warn( "Problem reading data for Nebula ID '" + nebula.id + "' from database." ); + //RecoverNebulaDB(); + //Instance.GetNebulaVisited( nebula.id ); + } + } + transaction.Commit(); + } + } + } + return true; + } + + private DatabaseNebula ReadNebulaEntry(SQLiteCommand cmd) + { + int nebulaId = 0; + bool visited = false; + + using (SQLiteDataReader rdr = cmd.ExecuteReader()) + { + if (rdr.Read()) + { + for (int i = 0; i < rdr.FieldCount; i++) + { + if (rdr.GetName(i) == "nebulaId") + { + nebulaId = rdr.IsDBNull(i) ? 0 : rdr.GetInt32(i); + } + + if (rdr.GetName(i) == "visited") + { + visited = !rdr.IsDBNull(i) && rdr.GetBoolean(i); + } + } + } + } + return new DatabaseNebula(nebulaId, visited); + } + + public void SaveNebulaVisited(int? nebulaId, bool visited) + { + if (nebulaId == null || unitTesting) { return; } + + DatabaseNebula dbNebula = Instance.ReadNebula(nebulaId); + + if ( dbNebula is null || dbNebula.nebulaId==0 ) + { + Instance.insertNebula( nebulaId, visited ); + } + else + { + Instance.updateNebula( nebulaId, visited ); + } + } + + private void insertNebula(int? nebulaId, bool visited) + { + if ( nebulaId==null ) { return; } + + lock ( nameof( SimpleDbConnection ) ) // Lock before writing to the database + { + using ( var con = SimpleDbConnection() ) + { + try + { + con.Open(); + using ( var cmd = new SQLiteCommand( con ) ) + { + using ( var transaction = con.BeginTransaction() ) + { + Logging.Debug( "Inserting new Nebula ID " + nebulaId ); + cmd.CommandText = INSERT_SQL + VALUES_SQL; + cmd.Prepare(); + cmd.Parameters.AddWithValue( "@nebulaId", nebulaId ); + cmd.Parameters.AddWithValue( "@visited", visited ); + cmd.ExecuteNonQuery(); + + transaction.Commit(); + } + } + } + catch ( SQLiteException ex ) + { + handleSqlLiteException( con, ex ); + } + } + } + } + + private void updateNebula(int? nebulaId, bool visited) + { + if ( nebulaId==null ) { return; } + + lock ( nameof( SimpleDbConnection ) ) // Lock before writing to the database + { + using ( var con = SimpleDbConnection() ) + { + try + { + con.Open(); + using ( var cmd = new SQLiteCommand( con ) ) + { + using ( var transaction = con.BeginTransaction() ) + { + + cmd.CommandText = UPDATE_SQL + WHERE_NEBULAID; + cmd.Prepare(); + cmd.Parameters.AddWithValue( "@nebulaId", nebulaId ); + cmd.Parameters.AddWithValue( "@visited", visited ); + cmd.ExecuteNonQuery(); + + transaction.Commit(); + } + } + } + catch ( SQLiteException ex ) + { + handleSqlLiteException( con, ex ); + } + } + } + } + + private void deleteNebula(int? nebulaId) + { + lock ( nameof( SimpleDbConnection ) ) // Lock before writing to the database + { + using ( var con = SimpleDbConnection() ) + { + try + { + con.Open(); + using ( var cmd = new SQLiteCommand( con ) ) + { + using ( var transaction = con.BeginTransaction() ) + { + + cmd.CommandText = DELETE_SQL + WHERE_NEBULAID; + cmd.Prepare(); + cmd.Parameters.AddWithValue( "@nebulaId", nebulaId ); + cmd.ExecuteNonQuery(); + + transaction.Commit(); + } + } + } + catch ( SQLiteException ex ) + { + handleSqlLiteException( con, ex ); + } + } + } + } + + private static void CreateOrUpdateDatabase() + { + lock ( nameof( SimpleDbConnection ) ) // Lock before writing to the database + { + using ( var con = SimpleDbConnection() ) + { + try + { + con.Open(); + + using ( var cmd = new SQLiteCommand( CREATE_TABLE_SQL, con ) ) + { + Logging.Debug( "Preparing Nebula repository" ); + cmd.ExecuteNonQuery(); + } + } + catch ( SQLiteException ex ) + { + handleSqlLiteException( con, ex ); + } + } + } + Logging.Debug( "Nebula repository ready." ); + } + + public void RecoverNebulaDB () + { + lock ( nameof( SimpleDbConnection ) ) // Lock before writing to the database + { + using ( var con = SimpleDbConnection() ) + { + try + { + con.Close(); + SQLiteConnection.ClearAllPools(); + File.Delete( Constants.DATA_DIR + @"\EDDI.sqlite" ); + } + catch ( SQLiteException ex ) + { + handleSqlLiteException( con, ex ); + } + } + } + + CreateOrUpdateDatabase(); + } + + private static void handleSqlLiteException(SQLiteConnection con, SQLiteException ex) + { + Logging.Warn( "SQLite error: ", ex.ToString() ); + + try + { + con.BeginTransaction()?.Rollback(); + } + catch ( SQLiteException ex2 ) + { + Logging.Warn( "SQLite transaction rollback failed." ); + Logging.Warn( "SQLite error: ", ex2.ToString() ); + } + finally + { + con.Dispose(); + } + } + } +} diff --git a/DataProviderService/StarSystemSqLiteRepository.cs b/DataProviderService/StarSystemSqLiteRepository.cs index 24883dd27a..94d113a9c1 100644 --- a/DataProviderService/StarSystemSqLiteRepository.cs +++ b/DataProviderService/StarSystemSqLiteRepository.cs @@ -565,7 +565,7 @@ private StarSystem DeserializeStarSystem(string systemName, string data, ref boo } // Save the deserialized star system to our short term star system cache for reference - if (result != null) + if (result != null && !unitTesting) { starSystemCache.Add(result); } diff --git a/DiscoveryMonitor/ConfigurationWindow.xaml b/DiscoveryMonitor/ConfigurationWindow.xaml new file mode 100644 index 0000000000..773651077d --- /dev/null +++ b/DiscoveryMonitor/ConfigurationWindow.xaml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DiscoveryMonitor/ConfigurationWindow.xaml.cs b/DiscoveryMonitor/ConfigurationWindow.xaml.cs new file mode 100644 index 0000000000..9139526963 --- /dev/null +++ b/DiscoveryMonitor/ConfigurationWindow.xaml.cs @@ -0,0 +1,42 @@ +using EddiCore; +using EddiConfigService; +using System; +using System.Windows.Controls; +using System.Text.RegularExpressions; +using System.Windows.Input; +using System.Windows; +using Utilities; +using EddiDataDefinitions; +using System.Globalization; +using System.Linq; +using System.Collections.Generic; +using System.ComponentModel; + +namespace EddiDiscoveryMonitor +{ + /// + /// Interaction logic for ConfigurationWindow.xaml + /// + public partial class ConfigurationWindow : UserControl + { + //private DiscoveryMonitor discoveryMonitor () + //{ + // return (DiscoveryMonitor)EDDI.Instance.ObtainMonitor( "Discovery Monitor" ); + //} + + //public static configuration = ConfigService.Instance.discoveryMonitorConfiguration; + + + //private StarSystem currentStarSystem () + //{ + // return (StarSystem)EDDI.Instance?.CurrentStarSystem; + //} + + public ConfigurationWindow () + { + InitializeComponent(); + } + + + } +} diff --git a/DiscoveryMonitor/DiscoveryMonitor.cs b/DiscoveryMonitor/DiscoveryMonitor.cs new file mode 100644 index 0000000000..206426748a --- /dev/null +++ b/DiscoveryMonitor/DiscoveryMonitor.cs @@ -0,0 +1,902 @@ +using EddiConfigService; +using EddiConfigService.Configurations; +using EddiCore; +using EddiDataDefinitions; +using EddiDataProviderService; +using EddiEvents; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Threading.Tasks; +using System.Windows.Controls; +using Utilities; +using Utilities.RegionMap; +using System.ComponentModel; + +[assembly: InternalsVisibleTo( "Tests" )] +namespace EddiDiscoveryMonitor +{ + public class DiscoveryMonitor : IEddiMonitor, INotifyPropertyChanged + { + internal class FssSignal + { + public ulong systemAddress; // For reference to double check + public long bodyId; // For reference to double check + public int geoCount; // The number of geological signals detected + public int bioCount; // The number of biological signals detected + } + internal readonly HashSet fssSignalsLibrary = new HashSet(); + + public event PropertyChangedEventHandler PropertyChanged; + protected void OnPropertyChanged(string propertyName) { + PropertyChanged?.Invoke( this, new PropertyChangedEventArgs( propertyName ) ); + } + + internal DiscoveryMonitorConfiguration configuration; + internal Exobiology _currentOrganic { get; set; } + internal StarSystem _currentSystem => EDDI.Instance?.CurrentStarSystem; + internal long? _currentBodyId; + + public long? CurrentBodyId + { + get { return _currentBodyId; } + set { + _currentBodyId = value; + OnPropertyChanged("CurrentBodyId"); + } + } + + internal Status _currentStatus { get; set; } + + internal Region _currentRegion; + internal Nebula _nearestNebula; + internal Nebula _enteredNebula; + + public DiscoveryMonitor () + { + configuration = ConfigService.Instance.discoveryMonitorConfiguration; + + // Get the visited status of all Nebulae + NebulaSqLiteRepository.Instance.GetNebulaeVisited(ref NebulaDefinitions.AllOfThem); + } + + public string MonitorName () + { + return "Discovery Monitor"; + } + + public string LocalizedMonitorName () + { + return Properties.DiscoveryMonitor.monitorName; + } + + public string MonitorDescription () + { + return Properties.DiscoveryMonitor.monitorDescription; + } + + public bool IsRequired () + { + return true; + } + + public bool NeedsStart () + { + return false; + } + + public void Start () + { } + + public void Stop () + { } + + public void Reload () + { + configuration = ConfigService.Instance.discoveryMonitorConfiguration; + } + + public UserControl ConfigurationTabItem () + { + return new ConfigurationWindow(); + } + + public void HandleStatus ( Status status ) + { + _currentStatus = status; + try + { + if ( TryCheckScanDistance( status, out var bio ) ) + { + EDDI.Instance.enqueueEvent( new ScanOrganicDistanceEvent( DateTime.UtcNow, bio ) ); + } + } + catch ( Exception exception ) + { + Logging.Error( "Failed to handle status update: TryCheckScanDistance/ScanOrganicDistanceEvent", exception ); + throw; + } + } + + /// + /// Check the currently active bio scan distance (if any). Return true if it's time to post a `ScanOrganicDistance` event. + /// + internal bool TryCheckScanDistance ( Status status, out Exobiology bioResult ) + { + bioResult = null; + if ( !CheckSafe() || status.latitude is null || status.longitude is null ) { return false; } + + //var body = _currentBody(_currentBodyId); + var body = EDDI.Instance?.CurrentStarSystem.BodyWithID( CurrentBodyId ); + + if ( body.surfaceSignals.TryGetBio( _currentOrganic, out var bio ) && bio.samples > 0 ) + { + // If the bio has been fully sampled, ignore it. + if( bio.ScanState == Exobiology.State.SampleAnalysed) { + return false; + } + + var distanceFromSamplesKm = new SortedSet(); + foreach ( var coords in bio.sampleCoords ) + { + var distance = Functions.SurfaceDistanceKm( body.radius * 1000, status.latitude, status.longitude, coords.Item1, coords.Item2 ); + if ( distance != null ) + { + distanceFromSamplesKm.Add( (decimal)distance ); + } + } + + var maxDistanceKm = distanceFromSamplesKm.LastOrDefault(); + var minDistanceKm = distanceFromSamplesKm.FirstOrDefault(); + + //var distanceM = maxDistanceKm * 1000; + var distanceM = minDistanceKm * 1000; + + if ( distanceM <= bio.genus.minimumDistanceMeters ) + { + // Was previously outside sample range, alert that we have violated the radius + if ( !bio.nearPriorSample ) + { + bio.nearPriorSample = true; + bioResult = bio; + return true; + } + } + else if ( distanceM > bio.genus.minimumDistanceMeters ) + { + // Was previously inside sample range, alert that we have traveled past the sample radius + if ( bio.nearPriorSample ) + { + bio.nearPriorSample = false; + bioResult = bio; + return true; + } + } + } + return false; + } + + public void PreHandle ( Event @event ) + { + if ( @event is CodexEntryEvent entryEvent ) + { + handleCodexEntryEvent( entryEvent ); + } + else if ( @event is SurfaceSignalsEvent signalsEvent ) + { + handleSurfaceSignalsEvent( signalsEvent ); + if (!@event.fromLoad) OnPropertyChanged("RefreshData"); + } + else if ( @event is ScanOrganicEvent organicEvent ) + { + handleScanOrganicEvent( organicEvent ); + if (!@event.fromLoad) OnPropertyChanged("RefreshData"); + } + else if ( @event is BodyScannedEvent bodyScannedEvent ) + { + handleBodyScannedEvent( bodyScannedEvent ); + if (!@event.fromLoad) OnPropertyChanged("RefreshData"); + } + else if ( @event is StarScannedEvent starScannedEvent ) + { + handleStarScannedEvent( starScannedEvent ); + if (!@event.fromLoad) OnPropertyChanged("RefreshData"); + } + } + + public void PostHandle ( Event @event ) { + if ( @event is JumpedEvent jumpedEvent ) + { + handleJumpedEvent( jumpedEvent ); + OnPropertyChanged("RefreshData"); + } + else if ( @event is CarrierJumpedEvent carrierJumpedEvent ) { + handleCarrierJumpedEvent( carrierJumpedEvent ); + if ( carrierJumpedEvent.docked || carrierJumpedEvent.onFoot ) + { + OnPropertyChanged( "RefreshData" ); + } + } + else if ( @event is LocationEvent locationEvent ) + { + handleLocationEvent( locationEvent ); + OnPropertyChanged("RefreshData"); + } + else if ( @event is NextDestinationEvent nextDestinationEvent) { + handleNextDestinationEvent( nextDestinationEvent ); + if (!@event.fromLoad) OnPropertyChanged("RefreshData"); + } + } + + // When an FSDJump event occurs; check the region, nearest nebula and guardian sites + internal void handleJumpedEvent ( JumpedEvent @event ) + { + RunChecks(@event.systemAddress, @event.system, @event.x, @event.y, @event.z, @event.fromLoad); + } + + // When a CarrierJump event occurs and we are docked or on foot; check the region, nearest nebula and guardian sites + internal void handleCarrierJumpedEvent ( CarrierJumpedEvent @event ) + { + if ( @event.docked || @event.onFoot ) + { + RunChecks(@event.systemAddress, @event.systemname, @event.x, @event.y, @event.z, @event.fromLoad); + } + } + + // When the location is recieved at startup or if the player respawns at a station update the region and nebula + internal void handleLocationEvent ( LocationEvent @event ) + { + // Set the current body context + CurrentBodyId = @event.bodyId; + RunChecks(@event.systemAddress, @event.systemname, @event.x, @event.y, @event.z, @event.fromLoad); + } + + internal void RunChecks(ulong systemAddress, string systemName, decimal x, decimal y, decimal z, bool fromLoad) { + var log = "\r\n"; + bool error = false; + + Nebula nebula = Nebula.TryGetNearestNebula( systemName, x, y, z ); + Region region = RegionMap.FindRegion( (double)x, (double)y, (double)z ); + + // Check if the current region has changed + log += $"\tGetting Region for ({x},{y},{z}): "; + if( region != null ) + { + CheckRegion(region, fromLoad); + } + else + { + error = true; + log += $"Region = NULL.\r\n"; + } + + // Check if the nearest nebula has changed + log += $"\tGetting Nebula for {systemName} @ ({x},{y},{z}): "; + if( nebula != null ) + { + CheckNebula(nebula, fromLoad); + } + else + { + error = true; + log += $"Nebula = NULL.\r\n"; + } + + // Check if we are in a known Guardian site system + CheckGuardianSite(systemAddress, fromLoad); + + if (error) + { + Logging.Error( log ); + } + else + { + Logging.Debug( log ); + } + } + + // When the location is recieved at startup or if the player respawns at a station update the region and nebula + internal void handleNextDestinationEvent(NextDestinationEvent @event) + { + CurrentBodyId = @event.bodyId; + } + + internal void CheckRegion(Region checkRegion, bool fromLoad) { + if( _currentRegion is null || checkRegion.id != _currentRegion.id ) + { + _currentRegion = checkRegion; + + EDDI.Instance.enqueueEvent( + new RegionEvent( + DateTime.UtcNow, + checkRegion ) + { + fromLoad = fromLoad + } ); + } + } + + internal void CheckNebula(Nebula checkNebula, bool fromLoad) { + + if ( _nearestNebula is null || _nearestNebula.id != checkNebula.id ) + { + _nearestNebula = checkNebula; + + EDDI.Instance.enqueueEvent( + new NebulaEvent( + DateTime.UtcNow, + checkNebula ) + { + fromLoad = fromLoad + } ); + } + else if (_nearestNebula != null) + { + // Are we inside the radius of the nearest nebula? + if ( _nearestNebula.distance <= ( _nearestNebula.diameter / 2 ) && ( _enteredNebula is null || _enteredNebula.id != checkNebula.id ) ) + { + + _nearestNebula.visited = true; + _enteredNebula = checkNebula; + + NebulaSqLiteRepository.Instance.SaveNebulaVisited(checkNebula.id, true); + + EDDI.Instance.enqueueEvent( + new NebulaEnteredEvent( + DateTime.UtcNow, + _nearestNebula ) + { + fromLoad = fromLoad + } ); + + } + else if ( _nearestNebula.distance > ( _nearestNebula.diameter / 2 ) && ( _enteredNebula != null ) ) + { + // We can use this to report if we have left the Nebula + EDDI.Instance.enqueueEvent( + new NebulaEnteredEvent( + DateTime.UtcNow, + _nearestNebula ) + { + fromLoad = fromLoad + } ); + + _enteredNebula = null; + } + } + } + + internal void CheckGuardianSite(ulong systemAddress, bool fromLoad) { + if(GuardianSiteDefinitions.AllOfThem.Exists(x=>x.systemAddress == systemAddress)) { + List guardianSites = GuardianSiteDefinitions.AllOfThem.Where(x=>x.systemAddress == systemAddress).ToList(); + + EDDI.Instance.enqueueEvent( + new GuardianSiteEvent( + DateTime.UtcNow, + guardianSites ) + { + fromLoad = fromLoad + } ); + } + + } + + internal void handleCodexEntryEvent ( CodexEntryEvent @event ) + { + // Not sure if we have anything to do here with this yet + } + + /// + /// Triggered when a planet is scanned (FSS) and mapped (SAA). + /// For FSS, store information so that we can predict the genus that will be present + /// + internal void handleSurfaceSignalsEvent ( SurfaceSignalsEvent @event ) + { + var log = ""; + + CurrentBodyId = @event.bodyId; + + if ( @event.detectionType == "FSS" ) + { + if ( !fssSignalsLibrary.Any( s => s.systemAddress == @event.systemAddress && s.bodyId == @event.bodyId ) && + TryGetFssSurfaceSignals( @event, ref log, out var signals ) ) + { + fssSignalsLibrary.Add( signals ); + } + } + else if ( @event.detectionType == "SAA" ) + { + if ( TrySetSaaSurfaceSignals( @event, ref log, out var body ) ) + { + // Save/Update Body data + body.surfaceSignals.lastUpdated = @event.timestamp; + EDDI.Instance?.CurrentStarSystem.AddOrUpdateBody( body ); + StarSystemSqLiteRepository.Instance.SaveStarSystem(EDDI.Instance.CurrentStarSystem); + } + } + + Logging.Debug( log ); + } + + private bool TryGetFssSurfaceSignals ( SurfaceSignalsEvent @event, ref string log, out FssSignal signal ) + { + if ( @event.systemAddress is null ) + { signal = null; return false; } + + log += "[FSSBodySignals]:\r\n"; + signal = new FssSignal { systemAddress = (ulong)@event.systemAddress, bodyId = @event.bodyId }; + var addSignal = false; + + foreach ( var sig in @event.surfaceSignals ) + { + if ( sig.signalSource.edname == "SAA_SignalType_Biological" ) + { + log += $"\tDetect bios: {sig.amount}\r\n"; + signal.bioCount = sig.amount; + addSignal = true; + } + else if ( sig.signalSource.edname == "SAA_SignalType_Geological" ) + { + log += $"\tDetect geos: {sig.amount}\r\n"; + signal.geoCount = sig.amount; + addSignal = true; + } + } + + Logging.Debug( log ); + + signal = addSignal ? signal : null; + return addSignal; + } + + private bool TrySetSaaSurfaceSignals ( SurfaceSignalsEvent @event, ref string log, out Body body ) + { + // The SAA signal is generated when logging in to the game, therefore set and check a bit so we + // know if SAA has already occurred on this body and prevents erasing the existing bio data + body = EDDI.Instance?.CurrentStarSystem?.BodyWithID( @event.bodyId ); + if ( body == null ) { return false; } + + if(!body.surfaceSignals.hasCompletedSAA) { + log += "[SAASignalsFound]: "; + // Set the number of detected surface signals for each signal type + foreach ( var signal in @event.surfaceSignals ) + { + if ( signal.signalSource == SignalSource.Biological ) + { + log += $"Bios: {signal.amount}. "; + body.surfaceSignals.reportedBiologicalCount = signal.amount; + } + else if ( signal.signalSource == SignalSource.Geological ) + { + log += $"Geos: {signal.amount}. "; + body.surfaceSignals.reportedGeologicalCount = signal.amount; + } + else if ( signal.signalSource == SignalSource.Guardian ) + { + log += $"Guardian: {signal.amount}. "; + body.surfaceSignals.reportedGuardianCount = signal.amount; + } + else if ( signal.signalSource == SignalSource.Human ) + { + log += $"Human: {signal.amount}. "; + body.surfaceSignals.reportedHumanCount = signal.amount; + } + else if ( signal.signalSource == SignalSource.Thargoid ) + { + log += $"Thargoid: {signal.amount}. "; + body.surfaceSignals.reportedThargoidCount = signal.amount; + } + else + { + log += $"Other ({signal.signalSource.invariantName}): {signal.amount}. "; + body.surfaceSignals.reportedOtherCount += signal.amount; + } + } + + Logging.Debug( log ); + + if ( @event.bioSignals != null ) + { + // Compare our predicted and actual bio signals. + if ( body.surfaceSignals.hasPredictedBios ) + { + var confirmedBiologicals = @event.bioSignals.Select(b => b.species).ToList(); + var predictedBiologicals = body.surfaceSignals.bioSignals + .Where( b => b.ScanState == Exobiology.State.Predicted ).Select( b => b.species ).ToList(); + var unpredictedBiologicals = confirmedBiologicals.Except( predictedBiologicals ).ToList(); + var missingBiologicals = predictedBiologicals.Except( confirmedBiologicals ).ToList(); + + // Preserve predicted Min/Max values + // For each existing prediction, check if it is in the confirmed list, + // if it is then save the predicted Min/Max values + foreach( var bio in body.surfaceSignals.bioSignals) { + if (@event.bioSignals.Any(x => x.genus == bio.Genus)) { + @event.bioSignals.SingleOrDefault(x => x.genus == bio.Genus).SetPredictedMinimumValue( bio.predictedMinimumValue ); + @event.bioSignals.SingleOrDefault(x => x.genus == bio.Genus).SetPredictedMaximumValue( bio.predictedMaximumValue ); + } + } + + if ( unpredictedBiologicals.Any() ) + { + log = "Unpredicted biologicals found"; + log += $"\tStar System: {body.systemname}\r\n"; + log += $"\tBody Name: {body.bodyname}\r\n"; + log += $"\tGravity: {body.gravity}\r\n"; + log += $"\tTemperature: {body.temperature} K\r\n"; + log += $"\tPlanet Class: {(body.planetClass ?? PlanetClass.None).edname}\r\n"; + log += $"\tAtmosphere: {(body.atmosphereclass ?? AtmosphereClass.None).edname}\r\n"; + log += $"\tVolcanism: {body.volcanism?.edComposition ?? "None"}\r\n"; + if ( EDDI.Instance?.CurrentStarSystem?.TryGetMainStar( out var parentStar ) ?? false ) + { + log += $"\tParent star class: {parentStar.stellarclass}\r\n"; + } + Logging.Error( log, unpredictedBiologicals); + } + + if ( missingBiologicals.Any() ) + { + log = "Predicted biologicals not found"; + log += $"\tStar System: {body.systemname}\r\n"; + log += $"\tBody Name: {body.bodyname}\r\n"; + log += $"\tGravity: {body.gravity}\r\n"; + log += $"\tTemperature: {body.temperature} K\r\n"; + log += $"\tPlanet Class: {( body.planetClass ?? PlanetClass.None ).edname}\r\n"; + log += $"\tAtmosphere: {( body.atmosphereclass ?? AtmosphereClass.None ).edname}\r\n"; + log += $"\tVolcanism: {body.volcanism?.edComposition ?? "None"}\r\n"; + if ( EDDI.Instance?.CurrentStarSystem?.TryGetMainStar( out var parentStar ) ?? false ) + { + log += $"\tParent star class: {parentStar.stellarclass}\r\n"; + } + Logging.Debug( log, missingBiologicals ); + } + } + + // Update from predicted to actual bio signals + body.surfaceSignals.bioSignals = @event.bioSignals; + } + + body.surfaceSignals.hasCompletedSAA = true; + } + else { + log = $"\r\n***** SAASignalsFound already logged for this body (body.surfaceSignals.hasCompletedSAA=true), ignoring event and using existing 'body.surfaceSignals' data *****\r\n\r\n"; + Logging.Debug( log ); + } + + return true; + } + + private void handleScanOrganicEvent ( ScanOrganicEvent @event ) + { + try + { + // Always get current bio data, even during fromLoad so we have correct context on startup + // - We have no other way to know the last bio context unless the ScanOrganic event is in the logs at startup + // - Could we somehow save the last bio context in config files? + if ( CheckSafe( @event.bodyId ) ) + { + CurrentBodyId = @event.bodyId; + + //var body = _currentBody(_currentBodyId); + var body = EDDI.Instance?.CurrentStarSystem.BodyWithID( CurrentBodyId ); + var log = ""; + + // Retrieve and/or add the organic + if ( body.surfaceSignals.TryGetBio( @event.variant, @event.species, @event.genus, out var bio ) ) + { + log += $"Fetched biological (v={@event.variant.edname}, s={@event.species.edname}, g={@event.genus.edname})\r\n"; + } + else + { + log += $"Adding biological (v={@event.variant.edname}, s={@event.species.edname}, g={@event.genus.edname})\r\n"; + bio = bio ?? body.surfaceSignals.AddBio( @event.variant, @event.species, @event.genus ); + } + + if ( bio == null ) + { + Logging.Debug( log ); + return; + } + + _currentOrganic = bio; + + // If event if fromLoad then do not update the bio data + if (!@event.fromLoad) { + + if ( bio.ScanState == Exobiology.State.Predicted ) + { + log += $"Presence of predicted organic {bio.species} is confirmed\r\n"; + bio.ScanState = Exobiology.State.Confirmed; + } + + if ( bio.variant is null ) + { + log += "Setting additional data from variant details\r\n"; + bio.SetVariantData( @event.variant ); + } + + bio.Sample( @event.scanType, + @event.variant, + _currentStatus.latitude, + _currentStatus.longitude ); + + // These are updated when the above Sample() function is called, se we send them back to the event + // Otherwise we would probably have to enqueue a new event (maybe not a bad idea?) + @event.bio = bio; + @event.remainingBios = body.surfaceSignals.bioSignalsRemaining.Except( new[] { bio } ).ToList(); + + Logging.Debug( log, @event ); + + if ( bio.ScanState == Exobiology.State.SampleComplete ) + { + // The `Analyse` journal event normally takes place about 5 seconds after completing the sample + // but can be delayed if the commander holsters their scanner before the analysis cycle is completed. + Task.Run( async () => + { + int timeMs = 15000; // If after 15 seconds the event hasn't generated then + // we'll generate our own event and update our own internal tracking + // (regardless of whether the scanner is holstered). + await Task.Delay( timeMs ); + if ( bio.ScanState < Exobiology.State.SampleAnalysed ) + { + Logging.Debug( "Generating synthetic 'Analyse' event (to update internal tracking when scanner is holstered before `Analyse` completes)" ); + EDDI.Instance.enqueueEvent( + new ScanOrganicEvent( + @event.timestamp.AddMilliseconds( timeMs ), + @event.systemAddress, + @event.bodyId, "Analyse", + @event.genus, + @event.species, + @event.variant ) + { + fromLoad = @event.fromLoad + } ); + } + } ).ConfigureAwait( false ); + } + else if ( bio.ScanState == Exobiology.State.SampleAnalysed ) + { + // Clear our tracked organic once analysis is complete. + _currentOrganic = null; + } + + // Save/Update Body data + body.surfaceSignals.lastUpdated = @event.timestamp; + EDDI.Instance?.CurrentStarSystem.AddOrUpdateBody( body ); + StarSystemSqLiteRepository.Instance.SaveStarSystem(EDDI.Instance.CurrentStarSystem); + + } + + // Let DiscoveryMonitor window know there was a context update + OnPropertyChanged("handleScanOrganicEvent"); + } + } + catch ( Exception e ) + { + Logging.Debug( "Failed to handle ScanOrganicEvent", e ); + } + } + + private void handleBodyScannedEvent ( BodyScannedEvent @event ) + { + if ( @event.bodyId is null || !CheckSafe( @event.bodyId ) ) { return; } + + if ( @event.systemAddress == EDDI.Instance?.CurrentStarSystem.systemAddress ) + { + // Predict biologicals for a scanned body + var body = EDDI.Instance?.CurrentStarSystem.BodyWithID( (long)@event.bodyId ); + var signal = fssSignalsLibrary.FirstOrDefault( s => + s.systemAddress == body.systemAddress && s.bodyId == body.bodyId ); + + if ( signal != null && + !body.surfaceSignals.bioSignals.Any() && + TryPredictBios( signal, ref body ) ) + { + EDDI.Instance.enqueueEvent( new OrganicPredictionEvent( DateTime.UtcNow, body, body.surfaceSignals.bioSignals ) ); + + // Save/Update Body data + body.surfaceSignals.lastUpdated = @event.timestamp; + EDDI.Instance?.CurrentStarSystem.AddOrUpdateBody( body ); + StarSystemSqLiteRepository.Instance.SaveStarSystem(EDDI.Instance.CurrentStarSystem); + } + } + } + + private void handleStarScannedEvent ( StarScannedEvent @event ) + { + if ( @event.bodyId is null || !CheckSafe( @event.bodyId ) ) { return; } + + if ( @event.systemAddress == EDDI.Instance?.CurrentStarSystem.systemAddress ) + { + // Predict biologicals for previously scanned bodies when a star is scanned + var childBodyIDs = EDDI.Instance?.CurrentStarSystem.GetChildBodyIDs( (long)@event.bodyId ); + foreach ( var childBodyID in EDDI.Instance?.CurrentStarSystem.bodies + .Where( b=> b.bodyId != null && childBodyIDs.Contains((long)b.bodyId) ) + .Select(b => b.bodyId) ) + { + //var body = _currentBody( (long)childBodyID ); + var body = EDDI.Instance?.CurrentStarSystem.BodyWithID( (long)childBodyID ); + var signal = fssSignalsLibrary.FirstOrDefault( s => + s.systemAddress == body.systemAddress && s.bodyId == body.bodyId ); + + if ( signal != null && + !body.surfaceSignals.bioSignals.Any() && + TryPredictBios( signal, ref body ) ) + { + EDDI.Instance.enqueueEvent( new OrganicPredictionEvent( DateTime.UtcNow, body, body.surfaceSignals.bioSignals ) ); + + // Save/Update Body data + body.surfaceSignals.lastUpdated = @event.timestamp; + EDDI.Instance?.CurrentStarSystem.AddOrUpdateBody( body ); + StarSystemSqLiteRepository.Instance.SaveStarSystem(EDDI.Instance.CurrentStarSystem); + } + } + } + } + + private bool TryPredictBios(FssSignal signal, ref Body body) + { + var log = ""; + var hasPredictedBios = false; + + // TODO: This probably shouldn't be here, has nothing to do with bio predictions. Should consider a TryPredictGeos method in the future? + if ( signal?.geoCount > 0 && body != null) + { + body.surfaceSignals.reportedGeologicalCount = signal.geoCount; + } + + if ( signal?.bioCount > 0 && + body != null && + !body.surfaceSignals.bioSignals.Any() && + EDDI.Instance.CurrentStarSystem.TryGetMainStar(out var parentStar)) + { + // Always update the reported totals + body.surfaceSignals.reportedBiologicalCount = signal.bioCount; + log += $"[FSS backlog <{body.systemAddress},{body.bodyId}>\r\n" + + $"\tBio Count is {signal.bioCount} ({body.surfaceSignals.reportedBiologicalCount})\r\n" + + $"\tGeo Count is {signal.geoCount} ({body.surfaceSignals.reportedGeologicalCount})\r\n"; + + // Predict possible biological genuses + List bios; + log += "Predicting organics (by variant):\r\n"; + bios = new ExobiologyPredictions( EDDI.Instance?.CurrentStarSystem, body, parentStar, configuration ).PredictByVariant(); + + // Account for predicting less than actual signals, lets player know that we don't know what one or more bios will be + if( bios?.Count()(); + + if ( body != null && + !body.surfaceSignals.bioSignals.Any() && + EDDI.Instance.CurrentStarSystem.TryGetMainStar(out var parentStar)) + { + List bios; + bios = new ExobiologyPredictions( EDDI.Instance?.CurrentStarSystem, body, parentStar, configuration ).PredictByVariant(); + + // Account for predicting less than actual signals, lets player know that we don't know what one or more bios will be + if( bios?.Count() + /// Check if the current system and body exist + /// + private bool CheckSafe () + { + if ( _currentOrganic != null ) + { + if ( EDDI.Instance?.CurrentStarSystem != null ) + { + if ( EDDI.Instance?.CurrentStarSystem.BodyWithID( CurrentBodyId ) != null ) + { + return true; + } + } + } + + return false; + } + + private bool CheckSafe ( long? bodyId ) + { + if ( EDDI.Instance?.CurrentStarSystem != null ) + { + if ( EDDI.Instance?.CurrentStarSystem.BodyWithID( bodyId ) != null ) + { + CurrentBodyId = bodyId; + return true; + } + } + + return false; + } + + public void HandleProfile ( JObject profile ) + { } + + public IDictionary> GetVariables () + { + return new Dictionary> + { + [ "nearestnebula" ] = new Tuple( typeof( Nebula ), _nearestNebula ), + [ "currentregion" ] = new Tuple( typeof( Region ), _currentRegion ) + }; + } + } +} \ No newline at end of file diff --git a/DiscoveryMonitor/EddiDiscoveryMonitor.csproj b/DiscoveryMonitor/EddiDiscoveryMonitor.csproj new file mode 100644 index 0000000000..62b1b4a37e --- /dev/null +++ b/DiscoveryMonitor/EddiDiscoveryMonitor.csproj @@ -0,0 +1,98 @@ + + + net48 + Library + true + true + true + 7.0 + + + ..\bin\Debug\ + + + embedded + ..\bin\Release\ + true + + + + + + + + + + + + + + 2024.2.0 + + + + 13.0.3 + + + 8.0.0 + + + 4.3.1 + + + 4.3.1 + + + + + + + + True + True + DiscoveryMonitor.resx + + + True + True + Tab_Exobiology.resx + + + True + True + Tab_General.resx + + + True + True + Tab_Guardian.resx + + + True + True + Tab_Nebulae.resx + + + + + PublicResXFileCodeGenerator + DiscoveryMonitor.Designer.cs + + + PublicResXFileCodeGenerator + Tab_Exobiology.Designer.cs + + + PublicResXFileCodeGenerator + Tab_General.Designer.cs + + + PublicResXFileCodeGenerator + Tab_Guardian.Designer.cs + + + PublicResXFileCodeGenerator + Tab_Nebulae.Designer.cs + + + \ No newline at end of file diff --git a/DiscoveryMonitor/ExobiologyPredictions.cs b/DiscoveryMonitor/ExobiologyPredictions.cs new file mode 100644 index 0000000000..278d8ef87c --- /dev/null +++ b/DiscoveryMonitor/ExobiologyPredictions.cs @@ -0,0 +1,624 @@ +using EddiConfigService.Configurations; +using EddiDataDefinitions; +using JetBrains.Annotations; +using System.Collections.Generic; +using System; +using System.Linq; +using Utilities; + +namespace EddiDiscoveryMonitor +{ + public class ExobiologyPredictions + { + private readonly StarSystem _currentSystem; + private readonly Body body; + private readonly Body parentStar; + private readonly DiscoveryMonitorConfiguration configuration; + + public ExobiologyPredictions ( [NotNull] StarSystem starSystem, [NotNull] Body body, [NotNull] Body parentStar, [NotNull] DiscoveryMonitorConfiguration configuration ) + { + this._currentSystem = starSystem; + this.body = body; + this.parentStar = parentStar; + this.configuration = configuration; + } + + // This is a list so that we can have duplicate Genus, specifically for adding multiple 'Unknown' predictions + //public HashSet PredictByVariant () + public List PredictByVariant () + { + Logging.Debug( $"Generating predictions by variant for {body.bodyname} in {_currentSystem.systemname}."); + + var log = ""; + + // Create temporary list of ALL variant possible + var predictedVariants = new List(); + + // Iterate though variant + foreach ( var variant in OrganicVariant.AllOfThem ) + { + log = $"Checking variant {variant.edname} (genus: {variant.genus}): "; + + if ( !variant.isPredictable ) + { + log += "SKIP. No known criteria."; + Logging.Debug( log ); + continue; + } + + if ( !TryCheckConfiguration( variant.genus, ref log ) ) + { + Logging.Debug( log ); + continue; + } + + if ( TryCheckGravity( variant.minG, variant.maxG, ref log ) && + TryCheckTemperature( variant.minK, variant.maxK, ref log ) && + TryCheckPressure( variant.minP, variant.maxP, ref log ) && + TryCheckPlanetClass( variant.planetClass, ref log ) && + TryCheckAtmosphere( variant.atmosphereClass, ref log ) && + TryCheckAtmosphereComposition( variant.atmosphereComposition, ref log ) && + TryCheckVolcanism( variant.volcanism, ref log ) && + //TryCheckMainStar( variant.primaryStar, ref log ) && + TryCheckLocalStar( variant.localStar, ref log ) && + TryCheckMaterials( variant.materials, ref log ) && + TryCheckBodyTypePresent( variant.systemBodies, ref log ) && + TryCheckNebulaDistance( variant.nebulaDistance, ref log ) && + TryCheckDistanceFromArrival( variant.distanceFromArrival, ref log ) && + TryCheckGeologyNum( variant.geologicalsPresent, ref log ) && + TryCheckGuardianSector( variant.genus, ref log ) && + TryCheckRegion( variant.regions, ref log ) ) + { + log += "OK"; + predictedVariants.Add( variant ); + } + + Logging.Debug( log ); + } + + // Create a distinct genus list + List listGenus = new List(); + foreach (var genus in predictedVariants.Select(s => s.genus).Distinct().ToList()) { + listGenus.Add(new Organic( genus ) ); + } + + if ( listGenus.Count() > 0 ) + { + log = $"Setting Min/Max values:\r\n"; + + // Iterate over all predicted variants, set the min/max values for the genus list + for ( int i = 0; i < listGenus.Count(); i++ ) + { + log += $"\t[{listGenus[ i ].genus.edname}]\r\n"; + foreach ( var variant in predictedVariants ) + { + if ( listGenus[ i ].genus.edname == variant.genus.edname ) + { + log += $"\t\t{variant.edname} "; + var species = OrganicSpecies.FromEDName( variant.species.edname ); + if(species != null) { + if(listGenus[ i ].predictedMinimumValue == 0 || species.value < listGenus[ i ].predictedMinimumValue) { + listGenus[ i ].SetPredictedMinimumValue(species.value); + } + + if(listGenus[ i ].predictedMaximumValue == 0 || species.value > listGenus[ i ].predictedMaximumValue) { + listGenus[ i ].SetPredictedMaximumValue(species.value); + } + + log += $": value={species.value}, predictedMinimum={listGenus[ i ].predictedMinimumValue}, predictedMaximum={listGenus[ i ].predictedMaximumValue}\r\n"; + } + } + } + } + } + + Logging.Debug( log ); + + // Return an ordered list of only the unique genus' found + return listGenus.OrderBy(o => o.genus.invariantName).ToList(); + } + + private bool TryCheckConfiguration ( OrganicGenus genus, ref string log ) + { + // Check if species should be ignored per configuration settings + try + { + if ( ( configuration.exobiology.predictions.skipGroundStructIce && genus == OrganicGenus.Ground_Struct_Ice ) || + ( configuration.exobiology.predictions.skipBrancae && genus == OrganicGenus.Brancae ) || + ( configuration.exobiology.predictions.skipCone && genus == OrganicGenus.Cone ) || + ( configuration.exobiology.predictions.skipTubers && genus == OrganicGenus.Tubers ) ) //|| + //( configuration.exobiology.predictions.skipAleoids && genus == OrganicGenus.Aleoids ) || + //( configuration.exobiology.predictions.skipVents && genus == OrganicGenus.Vents ) || + //( configuration.exobiology.predictions.skipSphere && genus == OrganicGenus.Sphere ) || + //( configuration.exobiology.predictions.skipBacterial && genus == OrganicGenus.Bacterial ) || + //( configuration.exobiology.predictions.skipCactoid && genus == OrganicGenus.Cactoid ) || + //( configuration.exobiology.predictions.skipClypeus && genus == OrganicGenus.Clypeus ) || + //( configuration.exobiology.predictions.skipConchas && genus == OrganicGenus.Conchas ) || + //( configuration.exobiology.predictions.skipElectricae && genus == OrganicGenus.Electricae ) || + //( configuration.exobiology.predictions.skipFonticulus && genus == OrganicGenus.Fonticulus ) || + //( configuration.exobiology.predictions.skipShrubs && genus == OrganicGenus.Shrubs ) || + //( configuration.exobiology.predictions.skipFumerolas && genus == OrganicGenus.Fumerolas ) || + //( configuration.exobiology.predictions.skipFungoids && genus == OrganicGenus.Fungoids ) || + //( configuration.exobiology.predictions.skipOsseus && genus == OrganicGenus.Osseus ) || + //( configuration.exobiology.predictions.skipRecepta && genus == OrganicGenus.Recepta ) || + //( configuration.exobiology.predictions.skipStratum && genus == OrganicGenus.Stratum ) || + //( configuration.exobiology.predictions.skipTubus && genus == OrganicGenus.Tubus ) || + //( configuration.exobiology.predictions.skipTussocks && genus == OrganicGenus.Tussocks ) ) + { + log += "SKIP. Per configuration preferences."; + return false; + } + } + catch ( Exception e ) + { + Logging.Error("Failed to read configuration", e ); + } + return true; + } + + private bool TryCheckRegion(ICollection checkRegions, ref string log ) + { + if (checkRegions.Count() > 0) + { + var currentRegion = Utilities.RegionMap.RegionMap.FindRegion((double)_currentSystem.x, (double)_currentSystem.y, (double)_currentSystem.z); + if (currentRegion != null) { + if (checkRegions.Any( a => a.ToLowerInvariant() == currentRegion.name.ToLowerInvariant() ) ) + { + //log += $"ACCEPT. '{currentRegion.name}' is in '{string.Join(",", checkRegions)}'. "; + return true; + } + log += $"REJECT. Region: '{currentRegion.name}' not in '{string.Join(",", checkRegions)}'"; + } + return false; + } + return true; + } + + private bool TryCheckGravity ( decimal? minG, decimal? maxG, ref string log ) + { + //log += $"[Gravity: body={body.gravity} min={minG} max={maxG}] "; + + if ( minG > 0 ) + { + if ( body.gravity < minG ) + { + log += $"REJECT. Gravity: {body.gravity} < {minG}"; + return false; + } + } + + if ( maxG > 0 ) + { + if ( body.gravity > maxG ) + { + log += $"REJECT. Gravity: {body.gravity} > {maxG}"; + return false; + } + } + return true; + } + + /// + /// Evaluate whether a candidate organic's temperature range matches a given body. + /// + /// Minimum temperature in Kelvin + /// Maximum temperature in Kelvin + /// + /// + private bool TryCheckTemperature(decimal? minK, decimal? maxK, ref string log ) + { + if ( body.temperature < minK ) + { + log += $"REJECT. Temp: {body.temperature} K < {minK} K."; + return false; + } + + if ( body.temperature > maxK ) + { + log += $"REJECT. Temp: {body.temperature} K > {maxK} K."; + return false; + } + + return true; + } + + private bool TryCheckPressure(decimal? minP, decimal? maxP, ref string log ) + { + if ( body.pressure < minP ) + { + log += $"REJECT. Pressure: {body.pressure} atm. < {minP} atm."; + return false; + } + + if ( body.pressure > maxP ) + { + log += $"REJECT. Pressure: {body.pressure} atm. > {maxP} atm."; + return false; + } + + return true; + } + + private bool TryCheckPlanetClass(ICollection checkPlanetClasses, ref string log ) + { + // Check if body has appropriate planet class + if ( checkPlanetClasses.Count > 0 ) + { + if ( checkPlanetClasses.Any( c => + ( ( c == "None" || c == string.Empty ) && ( body.planetClass == null || body.planetClass == PlanetClass.None ) ) || + c == "Any" || + c == body.planetClass.edname ) ) + { + return true; + } + log += $"REJECT. Planet class: {( body.planetClass ?? PlanetClass.None )?.edname} not in {string.Join( ",", checkPlanetClasses )}."; + return false; + } + + return true; + } + + private bool TryCheckAtmosphere(ICollection checkAtmosphereClasses, ref string log ) + { + // Check if body has appropriate astmosphere + if ( checkAtmosphereClasses.Count > 0 ) + { + foreach(var checkAtmosphereGroup in checkAtmosphereClasses) + { + + var checkParts = checkAtmosphereGroup.Split( ',' ); + + if( checkParts.Count() == 1 ) + { + // Check Class only + if ( + ( ( checkParts[0] == "None" || checkParts[0] == "No Atmosphere" || checkParts[0] == string.Empty ) && ( body.atmosphereclass == null || body.atmosphereclass == AtmosphereClass.None ) ) || + checkParts[0] == "Any" || + checkParts[0] == body.atmosphereclass.edname ) + { + return true; + } + } + else if(checkParts.Count() >= 2 ) { + + // Check Thickness + if ( + ( ( checkParts[0] == "None" || checkParts[0] == "No Atmosphere" || checkParts[0] == string.Empty ) && ( body.atmospherethickness == null || body.atmospherethickness == AtmosphereThickness.None ) ) || + checkParts[0] == "any" || + checkParts[0] == body.atmospherethickness.edname ) + { + // Check Class + if ( + ( ( checkParts[1] == "None" || checkParts[0] == "No Atmosphere" || checkParts[1] == string.Empty ) && ( body.atmosphereclass == null || body.atmosphereclass == AtmosphereClass.None ) ) || + checkParts[1] == "Any" || + checkParts[1] == body.atmosphereclass.edname ) + { + return true; + } + } + } + + } + log += $"REJECT. Atmosphere thickness,class: {( body.atmospherethickness ?? AtmosphereThickness.None )?.edname},{( body.atmosphereclass ?? AtmosphereClass.None )?.edname} not in {string.Join( ";", checkAtmosphereClasses )}."; + return false; + } + + return true; + } + + private bool TryCheckAtmosphereComposition(ICollection checkAtmosphereCompositions, ref string log ) + { + // Check if body has appropriate astmosphere + if ( checkAtmosphereCompositions.Count > 0 ) + { + foreach(var checkAtmosphereGroup in checkAtmosphereCompositions) + { + var checkParts = checkAtmosphereGroup.Split( ',' ); + + if( checkParts.Count() == 1 ) + { + // Check composition + if( body.atmospherecompositions.Any( x => x.edname == checkParts[0] ) ) + { + return true; + } + } + else if(checkParts.Count() >= 2 ) { + // Check composition and amount + if (Decimal.TryParse( checkParts[1], out decimal checkPercent )) + { + if( body.atmospherecompositions.Any( x=> x.edname == checkParts[0] && x.percent >= checkPercent ) ) + { + return true; + } + } + } + } + log += $"REJECT. Atmosphere composition: {string.Join(";", body.atmospherecompositions.Select( x => string.Join(",", (new { x.edname, x.percent })) ).ToList()) } not in {string.Join( ";", checkAtmosphereCompositions )}."; + return false; + } + return true; + } + + private bool TryCheckVolcanism(ICollection checkVolcanismCompositions, ref string log ) + { + // Check if body has appropriate volcanism + if ( checkVolcanismCompositions.Count > 0 ) + { + if ( checkVolcanismCompositions.Any( c => + ( ( c == "None" || c == string.Empty ) && body.volcanism == null ) || + c == "Any" || + c == body.volcanism?.edComposition ) ) + { + return true; + } + log += $"REJECT. Volcanism composition: {body.volcanism?.edComposition} not in {string.Join( ";", checkVolcanismCompositions )}."; + return false; + } + + return true; + } + + private bool TryCheckVolcanismAdvanced(IList checkVolcanismCompositions, ref string log ) + { + // Check if body has appropriate volcanism + if ( checkVolcanismCompositions.Count > 0 ) + { + foreach(var composition in checkVolcanismCompositions) { + + if( (composition=="None") || ( composition=="Any" && body.volcanism != null) || ( composition == body.volcanism?.ToString() ) ) { + return true; + } + } + + log += $"REJECT. Volcanism composition: '{(body.volcanism is null ? "None" : body.volcanism?.ToString())}' not in [{String.Join(";", checkVolcanismCompositions)}]."; + return false; + } + + return true; + } + + private bool TryCheckMainStar ( ICollection checkStar, ref string log ) + { + if(checkStar.Count() > 0 ) { + + var result = _currentSystem.TryGetMainStar( out Body mainStar ); + + if(mainStar!=null) { + foreach( var starGroup in checkStar) { + IList starParts = starGroup.Split( ',' ).ToList(); + + if ( starParts[ 0 ] == mainStar.starClass.edname ) + { + if ( starParts.Count >= 2 ) + { + if ( mainStar.luminosityclass.Contains( starParts[ 1 ] ) ) + { + return true; + } + } + else + { + return true; + } + } + } + } + else + { + // Failed to get parent stars, return True as this check isn't valid anymore + log += $"FAILED. Did not get any main star, pass by default. "; + return true; + } + + log += $"REJECT. Main star/luminosity [{mainStar.starClass.edname}/{mainStar.luminosityclass}] not in {string.Join( ";", checkStar )}."; + return false; + } + + return true; + } + + private bool TryCheckLocalStar ( ICollection checkStar, ref string log ) + { + if(checkStar.Count() > 0 ) { + + HashSet parentStars = new HashSet(); + var result = _currentSystem.TryGetParentStars( body.bodyId, out parentStars ); + + if(parentStars.Count()>0) { + foreach( var starGroup in checkStar) { + IList starParts = starGroup.Split( ',' ).ToList(); + + foreach ( var parentStar in parentStars ) { + if ( starParts[0] == parentStar.starClass.edname ) + { + if(starParts.Count >= 2) { + if ( parentStar.luminosityclass.Contains(starParts[1]) ) { + return true; + } + } + else { + return true; + } + } + } + } + } + else + { + // Failed to get parent stars, return True as this check isn't valid anymore + log += $"FAILED. Did not get any parent stars, pass by default. "; + return true; + } + + log += $"REJECT. Parent star/luminosity [{string.Join(",", parentStars.Select( x => x.starClass.edname ) ) }/{string.Join(",", parentStars.Select( x => x.luminosityclass ) ) }] not in {string.Join(";", checkStar)}."; + return false; + } + return true; + } + + private bool TryCheckPrimaryStarClass ( string checkStarClass, ref string log ) + { + // Check if body has appropriate parent star + if ( checkStarClass != null && checkStarClass != "" ) + { + HashSet parentStars = new HashSet(); + var result = _currentSystem.TryGetParentStars( body.bodyId, out parentStars ); + + foreach ( var parentStar in parentStars ) { + if ( checkStarClass == parentStar.starClass.edname ) + { + return true; + } + } + log += $"REJECT. Parent star [{string.Join(",", parentStars.Select( x => x.starClass.edname ) ) }] not in {checkStarClass}."; + + return false; + } + + return true; + } + + private bool TryCheckPrimaryStarLuminosity ( string checkStarLuminosity, ref string log ) + { + // Check if body has appropriate parent star + if ( checkStarLuminosity != null && checkStarLuminosity != "" ) + { + HashSet parentStars = new HashSet(); + var result = _currentSystem.TryGetParentStars( body.bodyId, out parentStars ); + + foreach ( var parentStar in parentStars ) { + if ( parentStar.luminosityclass.Contains(checkStarLuminosity) ) + { + return true; + } + } + log += $"REJECT. Parent star luminosity [{string.Join(",", parentStars.Select(x => x.luminosity))}] not in {checkStarLuminosity}."; + + return false; + } + + return true; + } + + private bool TryCheckBodyTypePresent ( ICollection checkBodyTypes, ref string log ) + { + if ( checkBodyTypes.Count() > 0 ) + { + foreach( var body in _currentSystem.bodies ) { + if(body != null && checkBodyTypes.Any( s => s == body.planetClass.edname ) ) { + return true; + } + } + log += $"REJECT. Body with type present [{string.Join(",", _currentSystem.bodies.Select( x => x.planetClass.edname ) ) }] not in {string.Join( ",", checkBodyTypes) }."; + + return false; + } + + return true; + } + + private bool TryCheckMaterials ( ICollection checkMaterials, ref string log ) + { + // Check if body has appropriate rare materials + if ( checkMaterials.Count > 0 ) + { + var bodyMaterials = body.materials.Select(x => x.name ).ToList(); + foreach(var mat in bodyMaterials) { + if(checkMaterials.Any( s => s == mat)) { + return true; + } + } + log += $"REJECT. Material [{string.Join( ",", body.materials.Select(x => x.name).ToList())}] not in {string.Join( ",", checkMaterials )}."; + return false; + } + + return true; + } + + private bool TryCheckMaterial ( string checkMaterial, ref string log ) + { + // Check if body has appropriate rare materials + if ( checkMaterial != null && checkMaterial != "" ) + { + if(body.materials.Any(x => x.name == checkMaterial && x.percentage>0)) { + return true; + } + log += $"REJECT. Material [{string.Join( ",", body.materials.Select(x => x.name).ToList())}] not in {string.Join( ",", checkMaterial )}."; + return false; + } + return true; + } + + private bool TryCheckGeologyNum ( decimal? checkGeologyNum, ref string log ) + { + // Check if body has appropriate rare materials + if ( checkGeologyNum != null && checkGeologyNum != 0 ) + { + if( body.surfaceSignals.reportedGeologicalCount >= checkGeologyNum ) + { + return true; + } + + log += $"REJECT. Geology number present {body.surfaceSignals.reportedGeologicalCount} < {checkGeologyNum}."; + return false; + } + return true; + } + + private bool TryCheckNebulaDistance ( decimal? checkNebulaDistance, ref string log ) + { + if( checkNebulaDistance != null && checkNebulaDistance != 0 ) { + var nearestNebula = Nebula.TryGetNearestNebula( _currentSystem ); + if (nearestNebula != null) { + if ( nearestNebula.distance < checkNebulaDistance ) { + return true; + } + } + log += $"REJECT. Nebula distance [{(nearestNebula is null ? "Null" : nearestNebula.name)} @ {(nearestNebula is null ? "Null" : nearestNebula.distance.ToString())} Ly] > {checkNebulaDistance}."; + return false; + } + + return true; + } + + private bool TryCheckDistanceFromArrival ( decimal? checkDistanceFromArrival, ref string log ) + { + if( checkDistanceFromArrival != null && checkDistanceFromArrival != 0 ) { + if( body.distance >= checkDistanceFromArrival ) { + return true; + } + log += $"REJECT. Distance from arrival [{body.distance}] < {checkDistanceFromArrival}."; + return false; + } + return true; + } + + private bool TryCheckGuardianSector ( OrganicGenus genus, ref string log ) + { + if ( genus == OrganicGenus.Brancae ) + { + var region = Utilities.RegionMap.RegionMap.FindRegion( (double)_currentSystem.x, (double)_currentSystem.y, (double)_currentSystem.z ); + + if ( region != null ) + { + if( GuardianSector.TryGetGuardianSector(_currentSystem.systemname, region.name ) ) + { + return true; + } + } + else + { + if( GuardianSector.TryGetGuardianSector(_currentSystem.systemname ) ) + { + return true; + } + } + + log += $"REJECT. Not in known Guardian sector {_currentSystem.systemname}."; + return false; + } + return true; + } + } +} \ No newline at end of file diff --git a/DiscoveryMonitor/Images/Copy.png b/DiscoveryMonitor/Images/Copy.png new file mode 100644 index 0000000000..becaca143c Binary files /dev/null and b/DiscoveryMonitor/Images/Copy.png differ diff --git a/DiscoveryMonitor/Properties/DiscoveryMonitor.Designer.cs b/DiscoveryMonitor/Properties/DiscoveryMonitor.Designer.cs new file mode 100644 index 0000000000..457194560d --- /dev/null +++ b/DiscoveryMonitor/Properties/DiscoveryMonitor.Designer.cs @@ -0,0 +1,81 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDiscoveryMonitor.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class DiscoveryMonitor { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal DiscoveryMonitor() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDiscoveryMonitor.Properties.DiscoveryMonitor", typeof(DiscoveryMonitor).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Monitor Elite: Dangerous' discovery events (including exobiology), geology, phenomena, codex entries, etc.. + /// + public static string monitorDescription { + get { + return ResourceManager.GetString("monitorDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discovery Monitor. + /// + public static string monitorName { + get { + return ResourceManager.GetString("monitorName", resourceCulture); + } + } + } +} diff --git a/DiscoveryMonitor/Properties/DiscoveryMonitor.resx b/DiscoveryMonitor/Properties/DiscoveryMonitor.resx new file mode 100644 index 0000000000..edcfa540eb --- /dev/null +++ b/DiscoveryMonitor/Properties/DiscoveryMonitor.resx @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Monitor Elite: Dangerous' discovery events (including exobiology), geology, phenomena, codex entries, etc. + + + Discovery Monitor + + \ No newline at end of file diff --git a/DiscoveryMonitor/Properties/Tab_Exobiology.Designer.cs b/DiscoveryMonitor/Properties/Tab_Exobiology.Designer.cs new file mode 100644 index 0000000000..97a4cb9ea4 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_Exobiology.Designer.cs @@ -0,0 +1,279 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDiscoveryMonitor.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Tab_Exobiology { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Tab_Exobiology() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDiscoveryMonitor.Properties.Tab_Exobiology", typeof(Tab_Exobiology).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Distance. + /// + public static string Bios_Distance { + get { + return ResourceManager.GetString("Bios_Distance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Genus. + /// + public static string Bios_Genus { + get { + return ResourceManager.GetString("Bios_Genus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Samples. + /// + public static string Bios_Samples { + get { + return ResourceManager.GetString("Bios_Samples", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Species. + /// + public static string Bios_Species { + get { + return ResourceManager.GetString("Bios_Species", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to State. + /// + public static string Bios_State { + get { + return ResourceManager.GetString("Bios_State", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value. + /// + public static string Bios_Value { + get { + return ResourceManager.GetString("Bios_Value", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Variant. + /// + public static string Bios_Variant { + get { + return ResourceManager.GetString("Bios_Variant", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Force Prediction Update. + /// + public static string Button_Predict { + get { + return ResourceManager.GetString("Button_Predict", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh Display. + /// + public static string Button_Refresh { + get { + return ResourceManager.GetString("Button_Refresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current Body. + /// + public static string CurrentBody { + get { + return ResourceManager.GetString("CurrentBody", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current Body ID. + /// + public static string CurrentBodyId { + get { + return ResourceManager.GetString("CurrentBodyId", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current System. + /// + public static string CurrentSystem { + get { + return ResourceManager.GetString("CurrentSystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bios. + /// + public static string Planet_Bios { + get { + return ResourceManager.GetString("Planet_Bios", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Done. + /// + public static string Planet_Done { + get { + return ResourceManager.GetString("Planet_Done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Planet. + /// + public static string Planet_Planet { + get { + return ResourceManager.GetString("Planet_Planet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to #1. + /// + public static string Samples_1 { + get { + return ResourceManager.GetString("Samples_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to #2. + /// + public static string Samples_2 { + get { + return ResourceManager.GetString("Samples_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to #3. + /// + public static string Samples_3 { + get { + return ResourceManager.GetString("Samples_3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Latitude. + /// + public static string Samples_Latitude { + get { + return ResourceManager.GetString("Samples_Latitude", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Longitude. + /// + public static string Samples_Longitude { + get { + return ResourceManager.GetString("Samples_Longitude", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sample. + /// + public static string Samples_Sample { + get { + return ResourceManager.GetString("Samples_Sample", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to species. + /// + public static string species { + get { + return ResourceManager.GetString("species", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exobiology. + /// + public static string Tab_Title { + get { + return ResourceManager.GetString("Tab_Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The. + /// + public static string The { + get { + return ResourceManager.GetString("The", resourceCulture); + } + } + } +} diff --git a/DiscoveryMonitor/Properties/Tab_Exobiology.resx b/DiscoveryMonitor/Properties/Tab_Exobiology.resx new file mode 100644 index 0000000000..49d2bddae7 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_Exobiology.resx @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Distance + + + Genus + + + Samples + + + Species + + + State + + + Value + + + Variant + + + Force Prediction Update + + + Refresh Display + + + Current Body + + + Current Body ID + + + Current System + + + Bios + + + Done + + + Planet + + + #1 + + + #2 + + + #3 + + + Latitude + + + Longitude + + + Sample + + + species + + + Exobiology + + + The + + \ No newline at end of file diff --git a/DiscoveryMonitor/Properties/Tab_General.Designer.cs b/DiscoveryMonitor/Properties/Tab_General.Designer.cs new file mode 100644 index 0000000000..b64fa37dd9 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_General.Designer.cs @@ -0,0 +1,198 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDiscoveryMonitor.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Tab_General { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Tab_General() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDiscoveryMonitor.Properties.Tab_General", typeof(Tab_General).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to The Exobiology tab data will automatically update depending on the contextual body. For example if you target a planet it will show the data for that planet. If you scan a biological on a planet it will show data for that planet.. + /// + public static string Description_Exobiology { + get { + return ResourceManager.GetString("Description_Exobiology", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nebulae and Guardian Sites will not automatically update when the system changes. Press the associated button in those tabs to see the data.. + /// + public static string Description_NebulaeGuardian { + get { + return ResourceManager.GetString("Description_NebulaeGuardian", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The System Address should automatically update whenever the current system changes. The tools on the different tabs rely on these coordinates and they can be manually changed to run the tools on different locations. The Region is not automatically updated.. + /// + public static string Description_SystemAddress { + get { + return ResourceManager.GetString("Description_SystemAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These tabs allow configuration of the codex discoveries, exobiology and to a lesser extend geology. They change how the scripts work without needing to modify the scripts directly. Most settings have tooltips to briefly explain what they do.. + /// + public static string Description_Tabs { + get { + return ResourceManager.GetString("Description_Tabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get Current. + /// + public static string GetCurrent { + get { + return ResourceManager.GetString("GetCurrent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get Region. + /// + public static string GetRegion { + get { + return ResourceManager.GetString("GetRegion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore Bark Mounds. + /// + public static string IgnoreBarkMounds { + get { + return ResourceManager.GetString("IgnoreBarkMounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore Brain Trees. + /// + public static string IgnoreBrainTrees { + get { + return ResourceManager.GetString("IgnoreBrainTrees", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore Crystal Shards. + /// + public static string IgnoreCrystalShards { + get { + return ResourceManager.GetString("IgnoreCrystalShards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore Tubers. + /// + public static string IgnoreTubers { + get { + return ResourceManager.GetString("IgnoreTubers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to These can often give false predictions due to their broad conditions.. + /// + public static string LegacyDescription { + get { + return ResourceManager.GetString("LegacyDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Legacy Predictions. + /// + public static string LegacyPredictions { + get { + return ResourceManager.GetString("LegacyPredictions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region. + /// + public static string Region { + get { + return ResourceManager.GetString("Region", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System Address. + /// + public static string SystemAddress { + get { + return ResourceManager.GetString("SystemAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + public static string Tab_Title { + get { + return ResourceManager.GetString("Tab_Title", resourceCulture); + } + } + } +} diff --git a/DiscoveryMonitor/Properties/Tab_General.resx b/DiscoveryMonitor/Properties/Tab_General.resx new file mode 100644 index 0000000000..62971af73f --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_General.resx @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The Exobiology tab data will automatically update depending on the contextual body. For example if you target a planet it will show the data for that planet. If you scan a biological on a planet it will show data for that planet. + + + Nebulae and Guardian Sites will not automatically update when the system changes. Press the associated button in those tabs to see the data. + + + The System Address should automatically update whenever the current system changes. The tools on the different tabs rely on these coordinates and they can be manually changed to run the tools on different locations. The Region is not automatically updated. + + + These tabs allow configuration of the codex discoveries, exobiology and to a lesser extend geology. They change how the scripts work without needing to modify the scripts directly. Most settings have tooltips to briefly explain what they do. + + + Get Current + + + Get Region + + + Ignore Bark Mounds + + + Ignore Brain Trees + + + Ignore Crystal Shards + + + Ignore Tubers + + + These can often give false predictions due to their broad conditions. + + + Legacy Predictions + + + Region + + + System Address + + + General + + \ No newline at end of file diff --git a/DiscoveryMonitor/Properties/Tab_Guardian.Designer.cs b/DiscoveryMonitor/Properties/Tab_Guardian.Designer.cs new file mode 100644 index 0000000000..997993f8f4 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_Guardian.Designer.cs @@ -0,0 +1,234 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDiscoveryMonitor.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Tab_Guardian { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Tab_Guardian() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDiscoveryMonitor.Properties.Tab_Guardian", typeof(Tab_Guardian).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Get Nearest Guardian Sites. + /// + public static string Button_GetNearest { + get { + return ResourceManager.GetString("Button_GetNearest", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy this system name to your clipboard. + /// + public static string copy_system_button_tooltip { + get { + return ResourceManager.GetString("copy_system_button_tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter. + /// + public static string Filter { + get { + return ResourceManager.GetString("Filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string Filter_All { + get { + return ResourceManager.GetString("Filter_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Beacons. + /// + public static string Filter_Beacons { + get { + return ResourceManager.GetString("Filter_Beacons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Module BP. + /// + public static string Filter_ModuleBP { + get { + return ResourceManager.GetString("Filter_ModuleBP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ruins. + /// + public static string Filter_Ruins { + get { + return ResourceManager.GetString("Filter_Ruins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Structures. + /// + public static string Filter_Structures { + get { + return ResourceManager.GetString("Filter_Structures", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vessel BP. + /// + public static string Filter_VesselBP { + get { + return ResourceManager.GetString("Filter_VesselBP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Weapon BP. + /// + public static string Filter_WeaponBP { + get { + return ResourceManager.GetString("Filter_WeaponBP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Sites. + /// + public static string GuardianSites { + get { + return ResourceManager.GetString("GuardianSites", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blueprint. + /// + public static string GuardianSites_Blueprint { + get { + return ResourceManager.GetString("GuardianSites_Blueprint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Body. + /// + public static string GuardianSites_Body { + get { + return ResourceManager.GetString("GuardianSites_Body", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Distance. + /// + public static string GuardianSites_Distance { + get { + return ResourceManager.GetString("GuardianSites_Distance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System. + /// + public static string GuardianSites_System { + get { + return ResourceManager.GetString("GuardianSites_System", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string GuardianSites_Type { + get { + return ResourceManager.GetString("GuardianSites_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max Distance. + /// + public static string MaxDistance { + get { + return ResourceManager.GetString("MaxDistance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max Results. + /// + public static string MaxResults { + get { + return ResourceManager.GetString("MaxResults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Guardian Sites. + /// + public static string Tab_Title { + get { + return ResourceManager.GetString("Tab_Title", resourceCulture); + } + } + } +} diff --git a/DiscoveryMonitor/Properties/Tab_Guardian.resx b/DiscoveryMonitor/Properties/Tab_Guardian.resx new file mode 100644 index 0000000000..188ffcd637 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_Guardian.resx @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Get Nearest Guardian Sites + + + Copy this system name to your clipboard + + + Filter + + + All + + + Beacons + + + Module BP + + + Ruins + + + Structures + + + Vessel BP + + + Weapon BP + + + Guardian Sites + + + Blueprint + + + Body + + + Distance + + + System + + + Type + + + Max Distance + + + Max Results + + + Guardian Sites + + \ No newline at end of file diff --git a/DiscoveryMonitor/Properties/Tab_Nebulae.Designer.cs b/DiscoveryMonitor/Properties/Tab_Nebulae.Designer.cs new file mode 100644 index 0000000000..6d14665df7 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_Nebulae.Designer.cs @@ -0,0 +1,279 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace EddiDiscoveryMonitor.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Tab_Nebulae { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Tab_Nebulae() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EddiDiscoveryMonitor.Properties.Tab_Nebulae", typeof(Tab_Nebulae).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Get Nearest Nebula. + /// + public static string Button_GetNearest { + get { + return ResourceManager.GetString("Button_GetNearest", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy this system name to your clipboard. + /// + public static string copy_system_button_tooltip { + get { + return ResourceManager.GetString("copy_system_button_tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max Distance. + /// + public static string MaxDistance { + get { + return ResourceManager.GetString("MaxDistance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max Results. + /// + public static string MaxResults { + get { + return ResourceManager.GetString("MaxResults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nearest Nebulae. + /// + public static string NearestNebulae { + get { + return ResourceManager.GetString("NearestNebulae", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Diameter. + /// + public static string NearestNebulae_Diameter { + get { + return ResourceManager.GetString("NearestNebulae_Diameter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Distance. + /// + public static string NearestNebulae_Distance { + get { + return ResourceManager.GetString("NearestNebulae_Distance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Visited. + /// + public static string NearestNebulae_Edit { + get { + return ResourceManager.GetString("NearestNebulae_Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Modify. + /// + public static string NearestNebulae_Modify { + get { + return ResourceManager.GetString("NearestNebulae_Modify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + public static string NearestNebulae_Name { + get { + return ResourceManager.GetString("NearestNebulae_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reference. + /// + public static string NearestNebulae_Reference { + get { + return ResourceManager.GetString("NearestNebulae_Reference", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle. + /// + public static string NearestNebulae_Toggle { + get { + return ResourceManager.GetString("NearestNebulae_Toggle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string NearestNebulae_Type { + get { + return ResourceManager.GetString("NearestNebulae_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visited. + /// + public static string NearestNebulae_Visited { + get { + return ResourceManager.GetString("NearestNebulae_Visited", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nebulae. + /// + public static string Tab_Title { + get { + return ResourceManager.GetString("Tab_Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type filter. + /// + public static string TypeFilter { + get { + return ResourceManager.GetString("TypeFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string TypeFilter_All { + get { + return ResourceManager.GetString("TypeFilter_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Planetary. + /// + public static string TypeFilter_Planetary { + get { + return ResourceManager.GetString("TypeFilter_Planetary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Real. + /// + public static string TypeFilter_Real { + get { + return ResourceManager.GetString("TypeFilter_Real", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard. + /// + public static string TypeFilter_Standard { + get { + return ResourceManager.GetString("TypeFilter_Standard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visited filter. + /// + public static string VisitedFilter { + get { + return ResourceManager.GetString("VisitedFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string VisitedFilter_All { + get { + return ResourceManager.GetString("VisitedFilter_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Visited. + /// + public static string VisitedFilter_NotVisited { + get { + return ResourceManager.GetString("VisitedFilter_NotVisited", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visited. + /// + public static string VisitedFilter_Visited { + get { + return ResourceManager.GetString("VisitedFilter_Visited", resourceCulture); + } + } + } +} diff --git a/DiscoveryMonitor/Properties/Tab_Nebulae.resx b/DiscoveryMonitor/Properties/Tab_Nebulae.resx new file mode 100644 index 0000000000..5a6457f6b6 --- /dev/null +++ b/DiscoveryMonitor/Properties/Tab_Nebulae.resx @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Get Nearest Nebula + + + Copy this system name to your clipboard + + + Max Distance + + + Max Results + + + Nearest Nebulae + + + Diameter + + + Distance + + + Edit Visited + + + Modify + + + Name + + + Reference + + + Toggle + + + Type + + + Visited + + + Nebulae + + + Type filter + + + All + + + Planetary + + + Real + + + Standard + + + Visited filter + + + All + + + Not Visited + + + Visited + + \ No newline at end of file diff --git a/DiscoveryMonitor/Tab_Exobiology.xaml b/DiscoveryMonitor/Tab_Exobiology.xaml new file mode 100644 index 0000000000..48f81d1ece --- /dev/null +++ b/DiscoveryMonitor/Tab_Exobiology.xaml @@ -0,0 +1,251 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DiscoveryMonitor/Tab_General.xaml.cs b/DiscoveryMonitor/Tab_General.xaml.cs new file mode 100644 index 0000000000..e466d6cedb --- /dev/null +++ b/DiscoveryMonitor/Tab_General.xaml.cs @@ -0,0 +1,192 @@ +using EddiCore; +using EddiConfigService; +using System; +using System.Windows.Controls; +using System.Text.RegularExpressions; +using System.Windows.Input; +using System.Windows; +using Utilities; +using EddiDataDefinitions; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Collections.Generic; +using Windows.UI.Xaml.Data; +using System.Windows.Data; +using System.Globalization; +using System.Linq; + +namespace EddiDiscoveryMonitor +{ + /// + /// Interaction logic for Tab_General.xaml + /// + public partial class Tab_General : UserControl + { + + public class Coord { + public Decimal? x; + public Decimal? y; + public Decimal? z; + + public Coord() { + x=0; + y=0; + z=0; + } + + public Coord(Decimal? x, Decimal? y, Decimal? z) { + this.x=x; + this.y=y; + this.z=z; + } + } + + public static Coord systemCoord = new Coord(); + + internal StarSystem _currentSystem => EDDI.Instance?.CurrentStarSystem; + + private DiscoveryMonitor discoveryMonitor () + { + return (DiscoveryMonitor)EDDI.Instance.ObtainMonitor( "Discovery Monitor" ); + } + + public Tab_General () + { + InitializeComponent(); + discoveryMonitor().PropertyChanged += DiscoveryMonitor_PropertyChanged; + EDDI.Instance.PropertyChanged += Instance_PropertyChanged; + RefreshData(); + + var configuration = ConfigService.Instance.discoveryMonitorConfiguration; + + checkboxIgnoreBrainTrees.IsChecked = configuration.exobiology.predictions.skipBrancae; + checkboxIgnoreCrystalShards.IsChecked = configuration.exobiology.predictions.skipGroundStructIce; + checkboxIgnoreBarkMounds.IsChecked = configuration.exobiology.predictions.skipCone; + checkboxIgnoreTubers.IsChecked = configuration.exobiology.predictions.skipTubers; + } + + private void EnsureValidDecimalWithNegative(object sender, TextCompositionEventArgs e) + { + var text = (sender as TextBox).Text; // Previous text before changes + var index = (sender as TextBox).CaretIndex; // Cursor position + char lastEntry = e.Text[e.Text.Length - 1]; + + e.Handled = !( (!(text.Count(t => t == '.' )>0) && lastEntry == '.') + || (!(text.Count(t => t == '-' )>0) && (text.Length == 0 || index==0) && lastEntry == '-') + || Char.IsDigit(lastEntry) ); + } + + void DiscoveryMonitor_PropertyChanged(object sender, PropertyChangedEventArgs e) + { + if ( e.PropertyName == "RefreshData" ) + { + this.Dispatcher.Invoke( () => + { + RefreshData(); + } ); + } + } + + void Instance_PropertyChanged(object sender, PropertyChangedEventArgs e) + { + if (e.PropertyName == "CurrentStarSystem") + { + this.Dispatcher.Invoke(() => + { + RefreshData(); + }); + } + } + + private void RefreshData() { + if ( _currentSystem != null ) + { + system_xCoord.Text = _currentSystem.x.ToString(); + system_yCoord.Text = _currentSystem.y.ToString(); + system_zCoord.Text = _currentSystem.z.ToString(); + systemCoord = new Coord(_currentSystem.x, _currentSystem.y, _currentSystem.z); + } + else + { + systemCoord = new Coord(); + } + } + + private void onClick_GetSystemAddress ( object sender, RoutedEventArgs e ) + { + RefreshData(); + } + + private void system_xCoord_Changed ( object sender, TextChangedEventArgs e ) + { } + + private void system_yCoord_Changed ( object sender, TextChangedEventArgs e ) + { } + + private void system_zCoord_Changed ( object sender, TextChangedEventArgs e ) + { } + + private void onClick_FindRegion ( object sender, RoutedEventArgs e ) + { + try + { + + double x = Convert.ToDouble(systemCoord.x); + double y = Convert.ToDouble(systemCoord.y); + double z = Convert.ToDouble(systemCoord.z); + + Utilities.RegionMap.Region regionResult = Utilities.RegionMap.RegionMap.FindRegion(x, y, z); + + if ( regionResult != null ) + { + regionName.Text = regionResult.name; + } + else + { + regionName.Text = "Error, Not Found."; + } + } + catch + { + // Error; ignore it + regionName.Text = "Failed to get results."; + } + } + + + // ######################################## + // Exobiology + // ######################################## + private void IgnoreBrainTrees_Toggle ( object sender, System.Windows.RoutedEventArgs e ) + { + var configuration = ConfigService.Instance.discoveryMonitorConfiguration; + configuration.exobiology.predictions.skipBrancae = checkboxIgnoreBrainTrees.IsChecked ?? false; + ConfigService.Instance.discoveryMonitorConfiguration = configuration; + discoveryMonitor()?.Reload(); + } + + private void IgnoreCrystalShards_Toggle ( object sender, System.Windows.RoutedEventArgs e ) + { + var configuration = ConfigService.Instance.discoveryMonitorConfiguration; + configuration.exobiology.predictions.skipGroundStructIce = checkboxIgnoreCrystalShards.IsChecked ?? false; + ConfigService.Instance.discoveryMonitorConfiguration = configuration; + discoveryMonitor()?.Reload(); + } + + private void IgnoreBarkMounds_Toggle ( object sender, System.Windows.RoutedEventArgs e ) + { + var configuration = ConfigService.Instance.discoveryMonitorConfiguration; + configuration.exobiology.predictions.skipCone = checkboxIgnoreBarkMounds.IsChecked ?? false; + ConfigService.Instance.discoveryMonitorConfiguration = configuration; + discoveryMonitor()?.Reload(); + } + + private void IgnoreTubers_Toggle ( object sender, System.Windows.RoutedEventArgs e ) + { + var configuration = ConfigService.Instance.discoveryMonitorConfiguration; + configuration.exobiology.predictions.skipTubers = checkboxIgnoreTubers.IsChecked ?? false; + ConfigService.Instance.discoveryMonitorConfiguration = configuration; + discoveryMonitor()?.Reload(); + } + } +} diff --git a/DiscoveryMonitor/Tab_Guardian.xaml b/DiscoveryMonitor/Tab_Guardian.xaml new file mode 100644 index 0000000000..7667cafccb --- /dev/null +++ b/DiscoveryMonitor/Tab_Guardian.xaml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DiscoveryMonitor/Tab_Guardian.xaml.cs b/DiscoveryMonitor/Tab_Guardian.xaml.cs new file mode 100644 index 0000000000..d8305b0a98 --- /dev/null +++ b/DiscoveryMonitor/Tab_Guardian.xaml.cs @@ -0,0 +1,101 @@ +using EddiCore; +using EddiConfigService; +using System; +using System.Windows.Controls; +using System.Text.RegularExpressions; +using System.Windows.Input; +using System.Windows; +using Utilities; +using EddiDataDefinitions; +using System.Globalization; +using System.Linq; +using System.Collections.Generic; + +namespace EddiDiscoveryMonitor +{ + /// + /// Interaction logic for Tab_Guardian.xaml + /// + public partial class Tab_Guardian : UserControl + { + public static Tab_General.Coord systemCoord => Tab_General.systemCoord; + + List guardianResult = new List(); + + public Tab_Guardian () + { + InitializeComponent(); + datagrid_GuardianData.DataContext = guardianResult; + } + + private void EnsureValidInteger(object sender, TextCompositionEventArgs e) + { + // No Negative + Regex regex = new Regex(@"[0-9]"); // Match valid characters + e.Handled = !regex.IsMatch(e.Text); // Swallow the character doesn't match the regex + } + + private void EnsureValidDecimalWithNegative(object sender, TextCompositionEventArgs e) + { + var text = (sender as TextBox).Text; // Previous text before changes + var index = (sender as TextBox).CaretIndex; // Cursor position + char lastEntry = e.Text[e.Text.Length - 1]; + + e.Handled = !( (!(text.Count(t => t == '.' )>0) && lastEntry == '.') + || (!(text.Count(t => t == '-' )>0) && (text.Length == 0 || index==0) && lastEntry == '-') + || Char.IsDigit(lastEntry) ); + } + + void datagrid_LoadingRow(object sender, DataGridRowEventArgs e) + { + e.Row.Header = (e.Row.GetIndex()+1).ToString(); + } + + private void onClick_GetGuardianSite ( object sender, RoutedEventArgs e ) + { + try + { + var maxDistance = Convert.ToInt32(guardianMaxDistance.Text); + var maxCount = Convert.ToInt32(guardianMaxCount.Text); + + if (radioGuardianfilter_All.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + else { + if (radioGuardianfilter_Beacons.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(GuardianSite.GuardianSiteType.Beacon, systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + else if (radioGuardianfilter_Ruins.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(GuardianSite.GuardianSiteType.Ruin, systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + else if (radioGuardianfilter_Structures.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(GuardianSite.GuardianSiteType.Structure, systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + else if (radioGuardianfilter_Vessel.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(GuardianSite.BlueprintType.Vessel, systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + else if (radioGuardianfilter_Weapon.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(GuardianSite.BlueprintType.Weapon, systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + else if (radioGuardianfilter_Module.IsChecked == true ) { + guardianResult = GuardianSite.TryGetNearestGuardianSites(GuardianSite.BlueprintType.Module, systemCoord.x, systemCoord.y, systemCoord.z, maxCount, maxDistance); + } + } + } + catch + { + // Error; ignore it + } + + datagrid_GuardianData.DataContext = guardianResult; + } + + private void copySystemNameToClipboard(object sender, RoutedEventArgs e) + { + if (sender is Button button) + { + Clipboard.SetText(button.Tag.ToString()); + } + } + } +} diff --git a/DiscoveryMonitor/Tab_Nebulae.xaml b/DiscoveryMonitor/Tab_Nebulae.xaml new file mode 100644 index 0000000000..9f58f9d775 --- /dev/null +++ b/DiscoveryMonitor/Tab_Nebulae.xaml @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +