diff --git a/config.py b/config.py
index b515ae909..2991c3c07 100644
--- a/config.py
+++ b/config.py
@@ -40,6 +40,7 @@ logging_setup = None
cipher = None
clientHash = None
experimentalFeatures = None
+version = None
ESI_CACHE = 'esi_cache'
diff --git a/eos/modifiedAttributeDict.py b/eos/modifiedAttributeDict.py
index 0a9eda8a4..c369d4589 100644
--- a/eos/modifiedAttributeDict.py
+++ b/eos/modifiedAttributeDict.py
@@ -18,7 +18,7 @@
# ===============================================================================
-from collections import MutableMapping
+from collections.abc import MutableMapping
from copy import copy
from math import exp
diff --git a/eos/utils/stats.py b/eos/utils/stats.py
index 95f13aa95..76ed3edeb 100644
--- a/eos/utils/stats.py
+++ b/eos/utils/stats.py
@@ -46,11 +46,11 @@ class DmgTypes:
# Round for comparison's sake because often damage profiles are
# generated from data which includes float errors
return (
- floatUnerr(self.em) == floatUnerr(other.em) and
- floatUnerr(self.thermal) == floatUnerr(other.thermal) and
- floatUnerr(self.kinetic) == floatUnerr(other.kinetic) and
- floatUnerr(self.explosive) == floatUnerr(other.explosive) and
- floatUnerr(self.total) == floatUnerr(other.total))
+ floatUnerr(self.em) == floatUnerr(other.em) and
+ floatUnerr(self.thermal) == floatUnerr(other.thermal) and
+ floatUnerr(self.kinetic) == floatUnerr(other.kinetic) and
+ floatUnerr(self.explosive) == floatUnerr(other.explosive) and
+ floatUnerr(self.total) == floatUnerr(other.total))
def __bool__(self):
return any((
@@ -110,9 +110,19 @@ class DmgTypes:
return self
def __repr__(self):
- spec = ['em', 'thermal', 'kinetic', 'explosive', 'total']
+ spec = DmgTypes.names()
+ spec.append('total')
return makeReprStr(self, spec)
+ @staticmethod
+ def names(short=None, postProcessor=None):
+ value = ['em', 'th', 'kin', 'exp'] if short else ['em', 'thermal', 'kinetic', 'explosive']
+
+ if postProcessor:
+ value = [postProcessor(x) for x in value]
+
+ return value
+
class RRTypes:
"""Container for tank data stats."""
@@ -136,10 +146,10 @@ class RRTypes:
# Round for comparison's sake because often tanking numbers are
# generated from data which includes float errors
return (
- floatUnerr(self.shield) == floatUnerr(other.shield) and
- floatUnerr(self.armor) == floatUnerr(other.armor) and
- floatUnerr(self.hull) == floatUnerr(other.hull) and
- floatUnerr(self.capacitor) == floatUnerr(other.capacitor))
+ floatUnerr(self.shield) == floatUnerr(other.shield) and
+ floatUnerr(self.armor) == floatUnerr(other.armor) and
+ floatUnerr(self.hull) == floatUnerr(other.hull) and
+ floatUnerr(self.capacitor) == floatUnerr(other.capacitor))
def __bool__(self):
return any((self.shield, self.armor, self.hull, self.capacitor))
@@ -191,5 +201,17 @@ class RRTypes:
return self
def __repr__(self):
- spec = ['shield', 'armor', 'hull', 'capacitor']
+ spec = RRTypes.names(False)
return makeReprStr(self, spec)
+
+ @staticmethod
+ def names(ehpOnly=True, postProcessor=None):
+ value = ['shield', 'armor', 'hull']
+
+ if not ehpOnly:
+ value.append('capacitor')
+
+ if postProcessor:
+ value = [postProcessor(x) for x in value]
+
+ return value
diff --git a/gui/aboutData.py b/gui/aboutData.py
index 2d658832f..a574af246 100644
--- a/gui/aboutData.py
+++ b/gui/aboutData.py
@@ -19,7 +19,12 @@
import config
-versionString = "{0}".format(config.version)
+try:
+ versionString = "{0}".format(config.getVersion())
+except NameError:
+ # is caught in case we run test and there are no config values initialized
+ versionString = "0.0"
+
licenses = (
"pyfa is released under GNU GPLv3 - see included LICENSE file",
"All EVE-Online related materials are property of CCP hf.",
diff --git a/gui/bitmap_loader.py b/gui/bitmap_loader.py
index f6257ecba..928dfb15e 100644
--- a/gui/bitmap_loader.py
+++ b/gui/bitmap_loader.py
@@ -33,12 +33,17 @@ pyfalog = Logger(__name__)
class BitmapLoader:
- try:
- archive = zipfile.ZipFile(config.imgsZIP, 'r')
- pyfalog.info("Using zipped image files.")
- except (IOError, TypeError):
+ # Can be None if we're running from tests
+ if config.imgsZIP is None:
pyfalog.info("Using local image files.")
archive = None
+ else:
+ try:
+ archive = zipfile.ZipFile(config.imgsZIP, 'r')
+ pyfalog.info("Using zipped image files.")
+ except (IOError, TypeError):
+ pyfalog.info("Using local image files.")
+ archive = None
cached_bitmaps = OrderedDict()
dont_use_cached_bitmaps = False
diff --git a/service/jargon/loader.py b/service/jargon/loader.py
index 5374a5914..9e75443ad 100644
--- a/service/jargon/loader.py
+++ b/service/jargon/loader.py
@@ -24,7 +24,7 @@ import yaml
from .jargon import Jargon
from .resources import DEFAULT_DATA, DEFAULT_HEADER
-JARGON_PATH = os.path.join(config.savePath, 'jargon.yaml')
+JARGON_PATH = os.path.join(config.savePath, 'jargon.yaml') if config.savePath is not None else None
class JargonLoader:
@@ -44,14 +44,15 @@ class JargonLoader:
def _load_jargon(self):
jargondata = yaml.load(DEFAULT_DATA, Loader=yaml.SafeLoader)
- with open(JARGON_PATH) as f:
- userdata = yaml.load(f, Loader=yaml.SafeLoader)
- jargondata.update(userdata)
+ if JARGON_PATH is not None:
+ with open(JARGON_PATH) as f:
+ userdata = yaml.load(f, Loader=yaml.SafeLoader)
+ jargondata.update(userdata)
self.jargon_mtime = self._get_jargon_file_mtime()
self._jargon = Jargon(jargondata)
def _get_jargon_file_mtime(self) -> int:
- if not os.path.exists(self.jargon_path):
+ if self.jargon_path is None or not os.path.exists(self.jargon_path):
return 0
return os.stat(self.jargon_path).st_mtime
@@ -82,4 +83,5 @@ class JargonLoader:
return JargonLoader._instance
-JargonLoader.init_user_jargon(JARGON_PATH)
+if JARGON_PATH is not None:
+ JargonLoader.init_user_jargon(JARGON_PATH)
diff --git a/service/port/efs.py b/service/port/efs.py
index 47975a629..9ed5ef8fe 100755
--- a/service/port/efs.py
+++ b/service/port/efs.py
@@ -5,7 +5,7 @@ from numbers import Number
from logbook import Logger
import eos.db
-from config import version as pyfaVersion
+from config import getVersion
from service.fit import Fit
from service.market import Market
from eos.const import FittingModuleState, FittingHardpoint, FittingSlot
@@ -23,6 +23,7 @@ from gui.fitCommands.helpers import ModuleInfo
pyfalog = Logger(__name__)
+pyfaVersion = getVersion()
class EfsPort:
diff --git a/service/port/shipstats.py b/service/port/shipstats.py
index 897387122..1f117d65c 100644
--- a/service/port/shipstats.py
+++ b/service/port/shipstats.py
@@ -1,14 +1,15 @@
from functools import reduce
from eos.saveddata.damagePattern import DamagePattern
+from eos.utils.stats import RRTypes, DmgTypes
from gui.utils.numberFormatter import formatAmount
-tankTypes = ("shield", "armor", "hull")
-damageTypes = ("em", "thermal", "kinetic", "explosive")
+tankTypes = RRTypes.names()
+damageTypes = DmgTypes.names()
damagePatterns = [DamagePattern.oneType(damageType) for damageType in damageTypes]
damageTypeResonanceNames = [damageType.capitalize() + "DamageResonance" for damageType in damageTypes]
-resonanceNames = {"shield": ["shield" + s for s in damageTypeResonanceNames],
- "armor": ["armor" + s for s in damageTypeResonanceNames],
- "hull": [s[0].lower() + s[1:] for s in damageTypeResonanceNames]}
+resonanceNames = {tankTypes[0]: [tankTypes[0] + s for s in damageTypeResonanceNames],
+ tankTypes[1]: [tankTypes[1] + s for s in damageTypeResonanceNames],
+ tankTypes[2]: [s[0].lower() + s[1:] for s in damageTypeResonanceNames]}
def firepowerSection(fit):
@@ -48,15 +49,43 @@ def tankSection(fit):
# "Hull {:>7} {:>7.0%} {:>7.0%} {:>7.0%} {:>7.0%}\n".format(ehpStr[2], *resists["hull"])
def generalOutput():
+ rowNames = ["EHP"]
+ rowNames.extend(RRTypes.names(postProcessor=lambda v: v.capitalize()))
+ colNames = DmgTypes.names(short=True, postProcessor=lambda v: " " + v.capitalize())
+ colNames[0] = colNames[0][1::]
+
+ outputScheme = []
+ for index, rowName in enumerate(rowNames):
+ row = rowName + ": {:>} ("
+ subsValue = " {:.0%}," if index > 0 else " {:>},"
+
+ row += ''.join([(colName + ":" + subsValue) for colName in colNames])
+ row = row[:-1:] + ")\n"
+
+ outputScheme.append(row)
+
return \
- "EHP: {:>} (Em: {:>}, Th: {:>}, Kin: {:>}, Exp: {:>})\n".format(ehpStr[3], *ehpAgainstDamageTypeStr) + \
- "Shield: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[0], *resists["shield"]) + \
- "Armor: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[1], *resists["armor"]) + \
- "Hull: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[2], *resists["hull"])
+ outputScheme[0].format(ehpStr[3], *ehpAgainstDamageTypeStr) + \
+ outputScheme[1].format(ehpStr[0], *resists["shield"]) + \
+ outputScheme[2].format(ehpStr[1], *resists["armor"]) + \
+ outputScheme[3].format(ehpStr[2], *resists["hull"])
+
+ # return \
+ # "EHP: {:>} (Em: {:>}, Th: {:>}, Kin: {:>}, Exp: {:>})\n".format(ehpStr[3], *ehpAgainstDamageTypeStr) + \
+ # "Shield: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[0], *resists["shield"]) + \
+ # "Armor: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[1], *resists["armor"]) + \
+ # "Hull: {:>} (Em: {:.0%}, Th: {:.0%}, Kin: {:.0%}, Exp: {:.0%})\n".format(ehpStr[2], *resists["hull"])
return generalOutput()
+def _addFormattedColumn(value, name, header, linesList, repStr):
+ if value:
+ header += "{:>7} ".format(name)
+ linesList = [line + "{:>7} ".format(rep) for line, rep in zip(linesList, repStr)]
+
+ return header, linesList
+
def repsSection(fit):
""" Returns the text of the repairs section"""
selfRep = [fit.effectiveTank[tankType + "Repair"] for tankType in tankTypes]
@@ -115,34 +144,23 @@ def repsSection(fit):
shieldRegenStr = [formatAmount(rep, 3, 0, 9) if rep != 0 else "" for rep in shieldRegen]
totalRepStr = [formatAmount(rep, 3, 0, 9) for rep in totalRep]
- header = "REPS "
- lines = [
- "Shield ",
- "Armor ",
- "Hull ",
- "Total "
- ]
+ lines = RRTypes.names(postProcessor=lambda v: v.capitalize())
+ lines.append("Total")
+ lines = ["{:<8}".format(line) for line in lines]
showSelfRepColumn = totalSelfRep > 0
showSustainRepColumn = sustainRep != selfRep
showRemoteRepColumn = totalRemoteRep > 0
showShieldRegenColumn = totalShieldRegen > 0
- if showSelfRepColumn + showSustainRepColumn + showRemoteRepColumn + showShieldRegenColumn > 1:
- header += "{:>7} ".format("TOTAL")
- lines = [line + "{:>7} ".format(rep) for line, rep in zip(lines, totalRepStr)]
- if showSelfRepColumn:
- header += "{:>7} ".format("SELF")
- lines = [line + "{:>7} ".format(rep) for line, rep in zip(lines, selfRepStr)]
- if showSustainRepColumn:
- header += "{:>7} ".format("SUST")
- lines = [line + "{:>7} ".format(rep) for line, rep in zip(lines, sustainRepStr)]
- if showRemoteRepColumn:
- header += "{:>7} ".format("REMOTE")
- lines = [line + "{:>7} ".format(rep) for line, rep in zip(lines, remoteRepStr)]
- if showShieldRegenColumn:
- header += "{:>7} ".format("REGEN")
- lines = [line + "{:>7} ".format(rep) for line, rep in zip(lines, shieldRegenStr)]
+ header = "REPS "
+ header, lines = _addFormattedColumn(
+ (showSelfRepColumn + showSustainRepColumn + showRemoteRepColumn + showShieldRegenColumn > 1),
+ "TOTAL", header, lines, totalRepStr)
+ header, lines = _addFormattedColumn(showSelfRepColumn, "SELF", header, lines, selfRepStr)
+ header, lines = _addFormattedColumn(showSustainRepColumn, "SUST", header, lines, sustainRepStr)
+ header, lines = _addFormattedColumn(showRemoteRepColumn, "REMOTE", header, lines, remoteRepStr)
+ header, lines = _addFormattedColumn(showShieldRegenColumn, "REGEN", header, lines, shieldRegenStr)
text += header + "\n"
repsByTank = zip(totalRep, selfRep, sustainRep, remoteRep, shieldRegen)
diff --git a/staticdata/bulkdata/dogmaattributes.json b/staticdata/bulkdata/dogmaattributes.json
index 9aead7d5d..ef2364bc4 100644
--- a/staticdata/bulkdata/dogmaattributes.json
+++ b/staticdata/bulkdata/dogmaattributes.json
@@ -52143,5 +52143,110 @@
"tooltipDescriptionID": null,
"tooltipTitleID": null,
"unitID": 137
+ },
+ {
+ "attributeCategory": 5,
+ "attributeID": 2828,
+ "attributeIdx": null,
+ "attributeName": "shipBonusPDread1",
+ "categoryID": 9,
+ "chargeRechargeTimeID": null,
+ "dataID": 105192278,
+ "defaultValue": 0.0,
+ "description": "skill bonus for trig dread",
+ "displayName": "Special Ability Bonus",
+ "displayNameID": 318140,
+ "highIsGood": true,
+ "iconID": null,
+ "maxAttributeID": null,
+ "published": true,
+ "stackable": true,
+ "tooltipDescriptionID": null,
+ "tooltipTitleID": null,
+ "unitID": 105
+ },
+ {
+ "attributeCategory": 5,
+ "attributeID": 2829,
+ "attributeIdx": null,
+ "attributeName": "shipBonusDreadnoughtPC2",
+ "categoryID": 37,
+ "chargeRechargeTimeID": null,
+ "dataID": 105195411,
+ "defaultValue": 0.0,
+ "description": "Multiplied by Triglavian Dreadnought skill level",
+ "displayName": "",
+ "displayNameID": null,
+ "highIsGood": true,
+ "iconID": null,
+ "maxAttributeID": null,
+ "published": false,
+ "stackable": true,
+ "tooltipDescriptionID": null,
+ "tooltipTitleID": null,
+ "unitID": null
+ },
+ {
+ "attributeCategory": 5,
+ "attributeID": 2830,
+ "attributeIdx": null,
+ "attributeName": "shipBonusDreadnoughtPC1",
+ "categoryID": 37,
+ "chargeRechargeTimeID": null,
+ "dataID": 105195412,
+ "defaultValue": 0.0,
+ "description": "Multiplied by Triglavian Dreadnought skill level",
+ "displayName": "",
+ "displayNameID": null,
+ "highIsGood": true,
+ "iconID": null,
+ "maxAttributeID": null,
+ "published": false,
+ "stackable": true,
+ "tooltipDescriptionID": null,
+ "tooltipTitleID": null,
+ "unitID": null
+ },
+ {
+ "attributeCategory": 5,
+ "attributeID": 2831,
+ "attributeIdx": null,
+ "attributeName": "shipBonusDreadnoughtPC3",
+ "categoryID": 37,
+ "chargeRechargeTimeID": null,
+ "dataID": 105195413,
+ "defaultValue": 0.0,
+ "description": "",
+ "displayName": "",
+ "displayNameID": null,
+ "highIsGood": true,
+ "iconID": null,
+ "maxAttributeID": null,
+ "published": false,
+ "stackable": true,
+ "tooltipDescriptionID": null,
+ "tooltipTitleID": null,
+ "unitID": null
+ },
+ {
+ "attributeCategory": 4,
+ "attributeID": 2832,
+ "attributeIdx": null,
+ "attributeName": "mjdShipJumpCap",
+ "categoryID": 17,
+ "chargeRechargeTimeID": null,
+ "dataID": 106539665,
+ "defaultValue": 1.0,
+ "description": "The maximum number of ships that can be jumped per activation",
+ "displayName": "Maximum Ship Jump cap",
+ "displayNameID": 318141,
+ "highIsGood": true,
+ "iconID": 1391,
+ "maxAttributeID": null,
+ "published": true,
+ "stackable": true,
+ "tooltipDescriptionID": null,
+ "tooltipTitleID": null,
+ "unitID": null
}
]
\ No newline at end of file
diff --git a/staticdata/bulkdata/dogmaeffects.json b/staticdata/bulkdata/dogmaeffects.json
index e3a18a516..a87d91263 100644
--- a/staticdata/bulkdata/dogmaeffects.json
+++ b/staticdata/bulkdata/dogmaeffects.json
@@ -89284,7 +89284,7 @@
"trackingSpeedAttributeID": null
},
{
- "dataID": 101783199,
+ "dataID": 105195555,
"description": "Atomic Beam Cannon main effect",
"descriptionID": 317020,
"disallowAutoRepeat": false,
@@ -89299,7 +89299,7 @@
"electronicChance": false,
"falloffAttributeID": null,
"fittingUsageChanceAttributeID": null,
- "guid": "effects.TriglavianBeam,effects.SiegeMode",
+ "guid": "effects.TriglavianBeam,effects.AttackMode",
"iconID": null,
"isAssistance": false,
"isOffensive": true,
@@ -93398,7 +93398,7 @@
"trackingSpeedAttributeID": null
},
{
- "dataID": 100671121,
+ "dataID": 105195557,
"description": null,
"descriptionID": null,
"disallowAutoRepeat": false,
@@ -93413,7 +93413,7 @@
"electronicChance": false,
"falloffAttributeID": null,
"fittingUsageChanceAttributeID": null,
- "guid": "effects.TriglavianBeam,effects.SiegeMode",
+ "guid": "effects.TriglavianBeam,effects.AttackMode",
"iconID": null,
"isAssistance": true,
"isOffensive": false,
@@ -94655,6 +94655,40 @@
"sfxName": null,
"trackingSpeedAttributeID": null
},
+ {
+ "dataID": 105183933,
+ "description": null,
+ "descriptionID": null,
+ "disallowAutoRepeat": false,
+ "dischargeAttributeID": null,
+ "displayName": "",
+ "displayNameID": null,
+ "distribution": null,
+ "durationAttributeID": null,
+ "effectCategory": 2,
+ "effectID": 7235,
+ "effectName": "aoeDamageMultiplier",
+ "electronicChance": false,
+ "falloffAttributeID": null,
+ "fittingUsageChanceAttributeID": null,
+ "guid": "",
+ "iconID": null,
+ "isAssistance": false,
+ "isOffensive": false,
+ "isWarpSafe": false,
+ "modifierInfo": "- domain: targetID\n func: ItemModifier\n modifiedAttributeID: 292\n modifyingAttributeID: 64\n operator: 6\n",
+ "npcActivationChanceAttributeID": null,
+ "npcUsageChanceAttributeID": null,
+ "postExpression": null,
+ "preExpression": null,
+ "propulsionChance": false,
+ "published": true,
+ "rangeAttributeID": null,
+ "rangeChance": false,
+ "resistanceID": null,
+ "sfxName": null,
+ "trackingSpeedAttributeID": null
+ },
{
"dataID": 105183969,
"description": null,
@@ -94722,5 +94756,175 @@
"resistanceID": null,
"sfxName": null,
"trackingSpeedAttributeID": null
+ },
+ {
+ "dataID": 105195549,
+ "description": "precursor XL weapon damage modifier by skill level",
+ "descriptionID": 318139,
+ "disallowAutoRepeat": false,
+ "dischargeAttributeID": null,
+ "displayName": "",
+ "displayNameID": null,
+ "distribution": null,
+ "durationAttributeID": null,
+ "effectCategory": 0,
+ "effectID": 7238,
+ "effectName": "shipBonusDreadnoughtPC1DamageMultMax",
+ "electronicChance": false,
+ "falloffAttributeID": null,
+ "fittingUsageChanceAttributeID": null,
+ "guid": "",
+ "iconID": null,
+ "isAssistance": false,
+ "isOffensive": false,
+ "isWarpSafe": false,
+ "modifierInfo": "- domain: shipID\n func: LocationRequiredSkillModifier\n modifiedAttributeID: 64\n modifyingAttributeID: 2830\n operator: 6\n skillTypeID: 52998\n",
+ "npcActivationChanceAttributeID": null,
+ "npcUsageChanceAttributeID": null,
+ "postExpression": null,
+ "preExpression": null,
+ "propulsionChance": false,
+ "published": false,
+ "rangeAttributeID": null,
+ "rangeChance": false,
+ "resistanceID": 0,
+ "sfxName": null,
+ "trackingSpeedAttributeID": null
+ },
+ {
+ "dataID": 105195436,
+ "description": null,
+ "descriptionID": null,
+ "disallowAutoRepeat": false,
+ "dischargeAttributeID": null,
+ "displayName": "",
+ "displayNameID": null,
+ "distribution": null,
+ "durationAttributeID": null,
+ "effectCategory": 0,
+ "effectID": 7239,
+ "effectName": "shipBonusDreadnoughtPC2ArmorResists",
+ "electronicChance": false,
+ "falloffAttributeID": null,
+ "fittingUsageChanceAttributeID": null,
+ "guid": "",
+ "iconID": null,
+ "isAssistance": false,
+ "isOffensive": false,
+ "isWarpSafe": false,
+ "modifierInfo": "- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 267\n modifyingAttributeID: 2829\n operator: 6\n- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 270\n modifyingAttributeID: 2829\n operator: 6\n- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 269\n modifyingAttributeID: 2829\n operator: 6\n- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 268\n modifyingAttributeID: 2829\n operator: 6\n",
+ "npcActivationChanceAttributeID": null,
+ "npcUsageChanceAttributeID": null,
+ "postExpression": null,
+ "preExpression": null,
+ "propulsionChance": false,
+ "published": false,
+ "rangeAttributeID": null,
+ "rangeChance": false,
+ "resistanceID": null,
+ "sfxName": null,
+ "trackingSpeedAttributeID": null
+ },
+ {
+ "dataID": 105195550,
+ "description": null,
+ "descriptionID": null,
+ "disallowAutoRepeat": false,
+ "dischargeAttributeID": null,
+ "displayName": "",
+ "displayNameID": null,
+ "distribution": null,
+ "durationAttributeID": null,
+ "effectCategory": 0,
+ "effectID": 7240,
+ "effectName": "shipBonusDreadnoughtPC3WeaponSpeed",
+ "electronicChance": false,
+ "falloffAttributeID": null,
+ "fittingUsageChanceAttributeID": null,
+ "guid": "",
+ "iconID": null,
+ "isAssistance": false,
+ "isOffensive": false,
+ "isWarpSafe": false,
+ "modifierInfo": "- domain: shipID\n func: LocationRequiredSkillModifier\n modifiedAttributeID: 51\n modifyingAttributeID: 2831\n operator: 6\n skillTypeID: 52998\n",
+ "npcActivationChanceAttributeID": null,
+ "npcUsageChanceAttributeID": null,
+ "postExpression": null,
+ "preExpression": null,
+ "propulsionChance": false,
+ "published": false,
+ "rangeAttributeID": null,
+ "rangeChance": false,
+ "resistanceID": null,
+ "sfxName": null,
+ "trackingSpeedAttributeID": null
+ },
+ {
+ "dataID": 105195558,
+ "description": null,
+ "descriptionID": null,
+ "disallowAutoRepeat": false,
+ "dischargeAttributeID": null,
+ "displayName": "",
+ "displayNameID": null,
+ "distribution": null,
+ "durationAttributeID": null,
+ "effectCategory": 0,
+ "effectID": 7241,
+ "effectName": "skillMultiplierShipBonusDreadnoughtPrecursor",
+ "electronicChance": false,
+ "falloffAttributeID": null,
+ "fittingUsageChanceAttributeID": null,
+ "guid": "",
+ "iconID": null,
+ "isAssistance": false,
+ "isOffensive": false,
+ "isWarpSafe": false,
+ "modifierInfo": "- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 2830\n modifyingAttributeID: 280\n operator: 0\n- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 2829\n modifyingAttributeID: 280\n operator: 0\n- domain: shipID\n func: ItemModifier\n modifiedAttributeID: 2831\n modifyingAttributeID: 280\n operator: 0\n",
+ "npcActivationChanceAttributeID": null,
+ "npcUsageChanceAttributeID": null,
+ "postExpression": null,
+ "preExpression": null,
+ "propulsionChance": false,
+ "published": false,
+ "rangeAttributeID": null,
+ "rangeChance": false,
+ "resistanceID": null,
+ "sfxName": null,
+ "trackingSpeedAttributeID": null
+ },
+ {
+ "dataID": 105195530,
+ "description": null,
+ "descriptionID": null,
+ "disallowAutoRepeat": false,
+ "dischargeAttributeID": null,
+ "displayName": "",
+ "displayNameID": null,
+ "distribution": null,
+ "durationAttributeID": null,
+ "effectCategory": 0,
+ "effectID": 7242,
+ "effectName": "capitalPrecursorTurretDmgBonusRequiredSkill",
+ "electronicChance": false,
+ "falloffAttributeID": null,
+ "fittingUsageChanceAttributeID": null,
+ "guid": "",
+ "iconID": null,
+ "isAssistance": false,
+ "isOffensive": false,
+ "isWarpSafe": false,
+ "modifierInfo": "- domain: shipID\n func: LocationRequiredSkillModifier\n modifiedAttributeID: 64\n modifyingAttributeID: 292\n operator: 6\n skillTypeID: 52998\n",
+ "npcActivationChanceAttributeID": null,
+ "npcUsageChanceAttributeID": null,
+ "postExpression": null,
+ "preExpression": null,
+ "propulsionChance": false,
+ "published": false,
+ "rangeAttributeID": null,
+ "rangeChance": false,
+ "resistanceID": null,
+ "sfxName": null,
+ "trackingSpeedAttributeID": null
}
]
\ No newline at end of file
diff --git a/staticdata/bulkdata/dogmatypeattributes.json b/staticdata/bulkdata/dogmatypeattributes.json
index 8d963005c..109ae83ef 100644
--- a/staticdata/bulkdata/dogmatypeattributes.json
+++ b/staticdata/bulkdata/dogmatypeattributes.json
@@ -24,6 +24,11 @@
"typeID": 18,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 18,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 18,
@@ -79,6 +84,11 @@
"typeID": 19,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 19,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 19,
@@ -144,6 +154,11 @@
"typeID": 20,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 20,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 20,
@@ -199,6 +214,11 @@
"typeID": 21,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 21,
@@ -254,6 +274,11 @@
"typeID": 22,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 22,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 22,
@@ -56834,11 +56859,6 @@
"typeID": 1194,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 1194,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 1194,
@@ -58054,6 +58074,11 @@
"typeID": 1223,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1223,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1223,
@@ -58119,6 +58144,11 @@
"typeID": 1224,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1224,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1224,
@@ -58174,6 +58204,11 @@
"typeID": 1225,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1225,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1225,
@@ -58239,6 +58274,11 @@
"typeID": 1226,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1226,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1226,
@@ -58294,6 +58334,11 @@
"typeID": 1227,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1227,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1227,
@@ -58349,6 +58394,11 @@
"typeID": 1228,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1228,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1228,
@@ -58404,6 +58454,11 @@
"typeID": 1229,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1229,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1229,
@@ -58469,6 +58524,11 @@
"typeID": 1230,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1230,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1230,
@@ -58524,6 +58584,11 @@
"typeID": 1231,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1231,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1231,
@@ -58579,6 +58644,11 @@
"typeID": 1232,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 1232,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 1232,
@@ -95052,7 +95122,7 @@
{
"attributeID": 279,
"typeID": 2203,
- "value": 3.0
+ "value": 1.0
},
{
"attributeID": 416,
@@ -110402,7 +110472,7 @@
{
"attributeID": 279,
"typeID": 2454,
- "value": 3.0
+ "value": 1.0
},
{
"attributeID": 416,
@@ -111427,7 +111497,7 @@
{
"attributeID": 279,
"typeID": 2464,
- "value": 3.0
+ "value": 1.0
},
{
"attributeID": 416,
@@ -113297,7 +113367,7 @@
{
"attributeID": 279,
"typeID": 2486,
- "value": 3.0
+ "value": 1.0
},
{
"attributeID": 416,
@@ -126309,6 +126379,11 @@
"typeID": 2850,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 2850,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 2850,
@@ -136249,11 +136324,6 @@
"typeID": 2947,
"value": 300.0
},
- {
- "attributeID": 182,
- "typeID": 2947,
- "value": 32339.0
- },
{
"attributeID": 281,
"typeID": 2947,
@@ -153119,6 +153189,11 @@
"typeID": 3261,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 3261,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 3261,
@@ -157819,11 +157894,6 @@
"typeID": 3355,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 3355,
- "value": 0.0
- },
{
"attributeID": 280,
"typeID": 3355,
@@ -158644,6 +158714,11 @@
"typeID": 3370,
"value": 5.0
},
+ {
+ "attributeID": 279,
+ "typeID": 3370,
+ "value": 1.0
+ },
{
"attributeID": 280,
"typeID": 3370,
@@ -166074,6 +166149,11 @@
"typeID": 3491,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 3491,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 3491,
@@ -181174,11 +181254,6 @@
"typeID": 3739,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 3739,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3739,
@@ -181399,11 +181474,6 @@
"typeID": 3740,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 3740,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3740,
@@ -181624,11 +181694,6 @@
"typeID": 3741,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 3741,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3741,
@@ -181849,11 +181914,6 @@
"typeID": 3742,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 3742,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3742,
@@ -182074,11 +182134,6 @@
"typeID": 3743,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 3743,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3743,
@@ -189059,11 +189114,6 @@
"typeID": 3795,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 3795,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3795,
@@ -189414,11 +189464,6 @@
"typeID": 3805,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 3805,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3805,
@@ -189794,11 +189839,6 @@
"typeID": 3809,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 3809,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 3809,
@@ -335709,11 +335749,6 @@
"typeID": 10648,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10648,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10648,
@@ -340154,11 +340189,6 @@
"typeID": 10665,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10665,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10665,
@@ -340344,11 +340374,6 @@
"typeID": 10666,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10666,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10666,
@@ -340534,11 +340559,6 @@
"typeID": 10667,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10667,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10667,
@@ -340724,11 +340744,6 @@
"typeID": 10668,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10668,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10668,
@@ -343679,11 +343694,6 @@
"typeID": 10766,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10766,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10766,
@@ -343869,11 +343879,6 @@
"typeID": 10767,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10767,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10767,
@@ -344059,11 +344064,6 @@
"typeID": 10768,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10768,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10768,
@@ -344249,11 +344249,6 @@
"typeID": 10769,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10769,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10769,
@@ -344439,11 +344434,6 @@
"typeID": 10770,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 10770,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 10770,
@@ -392239,6 +392229,11 @@
"typeID": 11396,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 11396,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 11396,
@@ -394754,81 +394749,6 @@
"typeID": 11490,
"value": 6000.0
},
- {
- "attributeID": 4,
- "typeID": 11491,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11491,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11491,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11491,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11491,
- "value": 1.0
- },
- {
- "attributeID": 4,
- "typeID": 11492,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11492,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11492,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11492,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11492,
- "value": 1.0
- },
- {
- "attributeID": 4,
- "typeID": 11493,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11493,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11493,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11493,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11493,
- "value": 1.0
- },
{
"attributeID": 4,
"typeID": 11496,
@@ -394859,106 +394779,6 @@
"typeID": 11496,
"value": 1.0
},
- {
- "attributeID": 4,
- "typeID": 11498,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11498,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11498,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11498,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11498,
- "value": 1.0
- },
- {
- "attributeID": 4,
- "typeID": 11499,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11499,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11499,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11499,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11499,
- "value": 1.0
- },
- {
- "attributeID": 4,
- "typeID": 11504,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11504,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11504,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11504,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11504,
- "value": 1.0
- },
- {
- "attributeID": 4,
- "typeID": 11506,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 11506,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 11506,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 11506,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 11506,
- "value": 1.0
- },
{
"attributeID": 4,
"typeID": 11513,
@@ -399919,11 +399739,6 @@
"typeID": 11580,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 11580,
- "value": 2597.0
- },
{
"attributeID": 192,
"typeID": 11580,
@@ -486274,31 +486089,6 @@
"typeID": 12856,
"value": 18.0
},
- {
- "attributeID": 4,
- "typeID": 12867,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 12867,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 12867,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 12867,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 12867,
- "value": 1.0
- },
{
"attributeID": 4,
"typeID": 12892,
@@ -496329,11 +496119,6 @@
"typeID": 13068,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 13068,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 13068,
@@ -498554,11 +498339,6 @@
"typeID": 13113,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 13113,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 13113,
@@ -498834,11 +498614,6 @@
"typeID": 13114,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 13114,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 13114,
@@ -499114,11 +498889,6 @@
"typeID": 13115,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 13115,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 13115,
@@ -499394,11 +499164,6 @@
"typeID": 13116,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 13116,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 13116,
@@ -762639,11 +762404,6 @@
"typeID": 16137,
"value": 5.0
},
- {
- "attributeID": 278,
- "typeID": 16137,
- "value": 1.0
- },
{
"attributeID": 422,
"typeID": 16137,
@@ -785384,6 +785144,11 @@
"typeID": 16262,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16262,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16262,
@@ -785449,6 +785214,11 @@
"typeID": 16263,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16263,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16263,
@@ -785514,6 +785284,11 @@
"typeID": 16264,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16264,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16264,
@@ -785579,6 +785354,11 @@
"typeID": 16265,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16265,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16265,
@@ -785644,6 +785424,11 @@
"typeID": 16266,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16266,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16266,
@@ -785709,6 +785494,11 @@
"typeID": 16267,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16267,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16267,
@@ -785774,6 +785564,11 @@
"typeID": 16268,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16268,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16268,
@@ -785839,6 +785634,11 @@
"typeID": 16269,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 16269,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 16269,
@@ -829949,11 +829749,6 @@
"typeID": 16739,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 16739,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16739,
@@ -830224,11 +830019,6 @@
"typeID": 16740,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 16740,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16740,
@@ -830499,11 +830289,6 @@
"typeID": 16741,
"value": 436.0
},
- {
- "attributeID": 182,
- "typeID": 16741,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16741,
@@ -830774,11 +830559,6 @@
"typeID": 16742,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 16742,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16742,
@@ -831049,11 +830829,6 @@
"typeID": 16743,
"value": 323.0
},
- {
- "attributeID": 182,
- "typeID": 16743,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16743,
@@ -831324,11 +831099,6 @@
"typeID": 16744,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 16744,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16744,
@@ -831599,11 +831369,6 @@
"typeID": 16745,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 16745,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16745,
@@ -831874,11 +831639,6 @@
"typeID": 16746,
"value": 428.0
},
- {
- "attributeID": 182,
- "typeID": 16746,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16746,
@@ -832149,11 +831909,6 @@
"typeID": 16747,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 16747,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 16747,
@@ -959494,11 +959249,6 @@
"typeID": 17144,
"value": 436.0
},
- {
- "attributeID": 182,
- "typeID": 17144,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17144,
@@ -959769,11 +959519,6 @@
"typeID": 17145,
"value": 436.0
},
- {
- "attributeID": 182,
- "typeID": 17145,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17145,
@@ -960044,11 +959789,6 @@
"typeID": 17146,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 17146,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17146,
@@ -960319,11 +960059,6 @@
"typeID": 17147,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 17147,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17147,
@@ -960594,11 +960329,6 @@
"typeID": 17148,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 17148,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17148,
@@ -960869,11 +960599,6 @@
"typeID": 17149,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 17149,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17149,
@@ -961144,11 +960869,6 @@
"typeID": 17150,
"value": 323.0
},
- {
- "attributeID": 182,
- "typeID": 17150,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17150,
@@ -961419,11 +961139,6 @@
"typeID": 17151,
"value": 323.0
},
- {
- "attributeID": 182,
- "typeID": 17151,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17151,
@@ -961694,11 +961409,6 @@
"typeID": 17152,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 17152,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17152,
@@ -961969,11 +961679,6 @@
"typeID": 17153,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 17153,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17153,
@@ -962244,11 +961949,6 @@
"typeID": 17154,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 17154,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17154,
@@ -962519,11 +962219,6 @@
"typeID": 17155,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 17155,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17155,
@@ -962794,11 +962489,6 @@
"typeID": 17156,
"value": 428.0
},
- {
- "attributeID": 182,
- "typeID": 17156,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17156,
@@ -963069,11 +962759,6 @@
"typeID": 17157,
"value": 428.0
},
- {
- "attributeID": 182,
- "typeID": 17157,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17157,
@@ -963344,11 +963029,6 @@
"typeID": 17158,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17158,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17158,
@@ -963619,11 +963299,6 @@
"typeID": 17159,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17159,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17159,
@@ -963894,11 +963569,6 @@
"typeID": 17160,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 17160,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17160,
@@ -964169,11 +963839,6 @@
"typeID": 17161,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 17161,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17161,
@@ -964894,11 +964559,6 @@
"typeID": 17163,
"value": 734.0
},
- {
- "attributeID": 182,
- "typeID": 17163,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17163,
@@ -965194,11 +964854,6 @@
"typeID": 17164,
"value": 734.0
},
- {
- "attributeID": 182,
- "typeID": 17164,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17164,
@@ -979349,6 +979004,11 @@
"typeID": 17425,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17425,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17425,
@@ -979414,6 +979074,11 @@
"typeID": 17426,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17426,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17426,
@@ -979479,6 +979144,11 @@
"typeID": 17428,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17428,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17428,
@@ -979544,6 +979214,11 @@
"typeID": 17429,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17429,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17429,
@@ -979609,6 +979284,11 @@
"typeID": 17432,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17432,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17432,
@@ -979674,6 +979354,11 @@
"typeID": 17433,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17433,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17433,
@@ -979739,6 +979424,11 @@
"typeID": 17436,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17436,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17436,
@@ -979804,6 +979494,11 @@
"typeID": 17437,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17437,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17437,
@@ -979869,6 +979564,11 @@
"typeID": 17440,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17440,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17440,
@@ -979924,6 +979624,11 @@
"typeID": 17441,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17441,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17441,
@@ -979979,6 +979684,11 @@
"typeID": 17444,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17444,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17444,
@@ -980034,6 +979744,11 @@
"typeID": 17445,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17445,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17445,
@@ -980089,6 +979804,11 @@
"typeID": 17448,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17448,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17448,
@@ -980144,6 +979864,11 @@
"typeID": 17449,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17449,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17449,
@@ -980199,6 +979924,11 @@
"typeID": 17452,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17452,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17452,
@@ -980254,6 +979984,11 @@
"typeID": 17453,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17453,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17453,
@@ -980309,6 +980044,11 @@
"typeID": 17455,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17455,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17455,
@@ -980364,6 +980104,11 @@
"typeID": 17456,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17456,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17456,
@@ -980419,6 +980164,11 @@
"typeID": 17459,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17459,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17459,
@@ -980474,6 +980224,11 @@
"typeID": 17460,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17460,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17460,
@@ -980529,6 +980284,11 @@
"typeID": 17463,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17463,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17463,
@@ -980584,6 +980344,11 @@
"typeID": 17464,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17464,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17464,
@@ -980639,6 +980404,11 @@
"typeID": 17466,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17466,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17466,
@@ -980704,6 +980474,11 @@
"typeID": 17467,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17467,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17467,
@@ -980769,6 +980544,11 @@
"typeID": 17470,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17470,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17470,
@@ -980824,6 +980604,11 @@
"typeID": 17471,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17471,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17471,
@@ -987804,11 +987589,6 @@
"typeID": 17568,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17568,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17568,
@@ -988099,11 +987879,6 @@
"typeID": 17569,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17569,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17569,
@@ -988394,11 +988169,6 @@
"typeID": 17570,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17570,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17570,
@@ -988689,11 +988459,6 @@
"typeID": 17571,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17571,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17571,
@@ -988984,11 +988749,6 @@
"typeID": 17572,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17572,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17572,
@@ -989279,11 +989039,6 @@
"typeID": 17573,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17573,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17573,
@@ -989574,11 +989329,6 @@
"typeID": 17574,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17574,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17574,
@@ -989869,11 +989619,6 @@
"typeID": 17575,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17575,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17575,
@@ -990164,11 +989909,6 @@
"typeID": 17576,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17576,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17576,
@@ -990459,11 +990199,6 @@
"typeID": 17577,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17577,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17577,
@@ -990754,11 +990489,6 @@
"typeID": 17578,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17578,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17578,
@@ -991049,11 +990779,6 @@
"typeID": 17579,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17579,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17579,
@@ -991344,11 +991069,6 @@
"typeID": 17580,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17580,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17580,
@@ -991639,11 +991359,6 @@
"typeID": 17581,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17581,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17581,
@@ -991934,11 +991649,6 @@
"typeID": 17582,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17582,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17582,
@@ -992229,11 +991939,6 @@
"typeID": 17583,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17583,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17583,
@@ -992524,11 +992229,6 @@
"typeID": 17584,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17584,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17584,
@@ -992819,11 +992519,6 @@
"typeID": 17585,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17585,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17585,
@@ -993114,11 +992809,6 @@
"typeID": 17586,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17586,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17586,
@@ -993409,11 +993099,6 @@
"typeID": 17587,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17587,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17587,
@@ -993704,11 +993389,6 @@
"typeID": 17588,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17588,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17588,
@@ -993999,11 +993679,6 @@
"typeID": 17589,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17589,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17589,
@@ -994294,11 +993969,6 @@
"typeID": 17590,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17590,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17590,
@@ -994589,11 +994259,6 @@
"typeID": 17591,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17591,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17591,
@@ -994884,11 +994549,6 @@
"typeID": 17592,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17592,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17592,
@@ -995179,11 +994839,6 @@
"typeID": 17593,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17593,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17593,
@@ -995474,11 +995129,6 @@
"typeID": 17594,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17594,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17594,
@@ -995769,11 +995419,6 @@
"typeID": 17595,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17595,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17595,
@@ -996064,11 +995709,6 @@
"typeID": 17596,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17596,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17596,
@@ -996359,11 +995999,6 @@
"typeID": 17597,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17597,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17597,
@@ -996654,11 +996289,6 @@
"typeID": 17598,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17598,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17598,
@@ -996949,11 +996579,6 @@
"typeID": 17599,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17599,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17599,
@@ -997244,11 +996869,6 @@
"typeID": 17600,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17600,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17600,
@@ -997539,11 +997159,6 @@
"typeID": 17601,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17601,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17601,
@@ -997834,11 +997449,6 @@
"typeID": 17602,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17602,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17602,
@@ -998129,11 +997739,6 @@
"typeID": 17603,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17603,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17603,
@@ -998424,11 +998029,6 @@
"typeID": 17605,
"value": 1415.0
},
- {
- "attributeID": 182,
- "typeID": 17605,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17605,
@@ -998724,11 +998324,6 @@
"typeID": 17606,
"value": 1296.0
},
- {
- "attributeID": 182,
- "typeID": 17606,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17606,
@@ -999024,11 +998619,6 @@
"typeID": 17607,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17607,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17607,
@@ -999324,11 +998914,6 @@
"typeID": 17608,
"value": 689.0
},
- {
- "attributeID": 182,
- "typeID": 17608,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17608,
@@ -999624,11 +999209,6 @@
"typeID": 17609,
"value": 637.0
},
- {
- "attributeID": 182,
- "typeID": 17609,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17609,
@@ -999924,11 +999504,6 @@
"typeID": 17610,
"value": 707.0
},
- {
- "attributeID": 182,
- "typeID": 17610,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17610,
@@ -1000224,11 +999799,6 @@
"typeID": 17611,
"value": 974.0
},
- {
- "attributeID": 182,
- "typeID": 17611,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17611,
@@ -1000524,11 +1000094,6 @@
"typeID": 17612,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17612,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17612,
@@ -1005209,11 +1004774,6 @@
"typeID": 17638,
"value": 8516.0
},
- {
- "attributeID": 182,
- "typeID": 17638,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17638,
@@ -1027019,6 +1026579,11 @@
"typeID": 17865,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17865,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17865,
@@ -1027084,6 +1026649,11 @@
"typeID": 17866,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17866,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17866,
@@ -1027149,6 +1026719,11 @@
"typeID": 17867,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17867,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17867,
@@ -1027204,6 +1026779,11 @@
"typeID": 17868,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17868,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17868,
@@ -1027259,6 +1026839,11 @@
"typeID": 17869,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17869,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 17869,
@@ -1027334,6 +1026919,11 @@
"typeID": 17870,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17870,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 17870,
@@ -1027609,11 +1027199,6 @@
"typeID": 17875,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 17875,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17875,
@@ -1027949,11 +1027534,6 @@
"typeID": 17876,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 17876,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17876,
@@ -1028289,11 +1027869,6 @@
"typeID": 17877,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 17877,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17877,
@@ -1028634,11 +1028209,6 @@
"typeID": 17878,
"value": 3500.0
},
- {
- "attributeID": 182,
- "typeID": 17878,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17878,
@@ -1028964,11 +1028534,6 @@
"typeID": 17879,
"value": 3500.0
},
- {
- "attributeID": 182,
- "typeID": 17879,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17879,
@@ -1029294,11 +1028859,6 @@
"typeID": 17880,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 17880,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17880,
@@ -1036484,6 +1036044,11 @@
"typeID": 17975,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17975,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17975,
@@ -1036549,6 +1036114,11 @@
"typeID": 17976,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17976,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17976,
@@ -1036614,6 +1036184,11 @@
"typeID": 17977,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17977,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17977,
@@ -1036679,6 +1036254,11 @@
"typeID": 17978,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 17978,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 17978,
@@ -1037059,11 +1036639,6 @@
"typeID": 17993,
"value": 8516.0
},
- {
- "attributeID": 182,
- "typeID": 17993,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 17993,
@@ -1038049,11 +1037624,6 @@
"typeID": 18000,
"value": 4500.0
},
- {
- "attributeID": 182,
- "typeID": 18000,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18000,
@@ -1038324,11 +1037894,6 @@
"typeID": 18001,
"value": 4500.0
},
- {
- "attributeID": 182,
- "typeID": 18001,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18001,
@@ -1040194,11 +1039759,6 @@
"typeID": 18023,
"value": 222.0
},
- {
- "attributeID": 182,
- "typeID": 18023,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18023,
@@ -1040974,11 +1040534,6 @@
"typeID": 18026,
"value": 220.0
},
- {
- "attributeID": 182,
- "typeID": 18026,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18026,
@@ -1041249,11 +1040804,6 @@
"typeID": 18027,
"value": 220.0
},
- {
- "attributeID": 182,
- "typeID": 18027,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18027,
@@ -1041524,11 +1041074,6 @@
"typeID": 18028,
"value": 220.0
},
- {
- "attributeID": 182,
- "typeID": 18028,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18028,
@@ -1041804,11 +1041349,6 @@
"typeID": 18031,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 18031,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18031,
@@ -1042099,11 +1041639,6 @@
"typeID": 18032,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 18032,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18032,
@@ -1042394,11 +1041929,6 @@
"typeID": 18033,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 18033,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18033,
@@ -1042689,11 +1042219,6 @@
"typeID": 18034,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 18034,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18034,
@@ -1042984,11 +1042509,6 @@
"typeID": 18035,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 18035,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18035,
@@ -1061779,11 +1061299,6 @@
"typeID": 18630,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 18630,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18630,
@@ -1062134,11 +1061649,6 @@
"typeID": 18631,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 18631,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 18631,
@@ -1111729,6 +1111239,11 @@
"typeID": 19594,
"value": 5.0
},
+ {
+ "attributeID": 278,
+ "typeID": 19594,
+ "value": 1.0
+ },
{
"attributeID": 280,
"typeID": 19594,
@@ -1112469,16 +1111984,6 @@
"typeID": 19658,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 19658,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 19658,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 19658,
@@ -1113104,11 +1112609,6 @@
"typeID": 19664,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 19664,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19664,
@@ -1113399,11 +1112899,6 @@
"typeID": 19665,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 19665,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19665,
@@ -1113694,11 +1113189,6 @@
"typeID": 19666,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 19666,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19666,
@@ -1113989,11 +1113479,6 @@
"typeID": 19667,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 19667,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19667,
@@ -1114279,11 +1113764,6 @@
"typeID": 19668,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 19668,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19668,
@@ -1114554,11 +1114034,6 @@
"typeID": 19669,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 19669,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19669,
@@ -1114829,11 +1114304,6 @@
"typeID": 19670,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 19670,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19670,
@@ -1119074,11 +1118544,6 @@
"typeID": 19703,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 19703,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19703,
@@ -1119814,11 +1119279,6 @@
"typeID": 19707,
"value": 3500.0
},
- {
- "attributeID": 182,
- "typeID": 19707,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19707,
@@ -1129569,11 +1129029,6 @@
"typeID": 19955,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 19955,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19955,
@@ -1130129,11 +1129584,6 @@
"typeID": 19961,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 19961,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 19961,
@@ -1138899,31 +1138349,6 @@
"typeID": 20108,
"value": 1.0
},
- {
- "attributeID": 4,
- "typeID": 20113,
- "value": 1.0
- },
- {
- "attributeID": 38,
- "typeID": 20113,
- "value": 0.0
- },
- {
- "attributeID": 161,
- "typeID": 20113,
- "value": 1.0
- },
- {
- "attributeID": 162,
- "typeID": 20113,
- "value": 0.0
- },
- {
- "attributeID": 277,
- "typeID": 20113,
- "value": 1.0
- },
{
"attributeID": 4,
"typeID": 20114,
@@ -1244674,6 +1244099,11 @@
"typeID": 21678,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21678,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21678,
@@ -1244789,6 +1244219,11 @@
"typeID": 21679,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21679,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21679,
@@ -1244904,6 +1244339,11 @@
"typeID": 21680,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21680,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21680,
@@ -1245019,6 +1244459,11 @@
"typeID": 21681,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21681,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21681,
@@ -1245134,6 +1244579,11 @@
"typeID": 21683,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21683,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21683,
@@ -1245249,6 +1244699,11 @@
"typeID": 21684,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21684,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21684,
@@ -1245364,6 +1244819,11 @@
"typeID": 21685,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21685,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21685,
@@ -1245479,6 +1244939,11 @@
"typeID": 21686,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21686,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21686,
@@ -1245594,6 +1245059,11 @@
"typeID": 21688,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21688,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21688,
@@ -1245709,6 +1245179,11 @@
"typeID": 21689,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21689,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21689,
@@ -1245824,6 +1245299,11 @@
"typeID": 21690,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21690,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21690,
@@ -1245939,6 +1245419,11 @@
"typeID": 21691,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21691,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21691,
@@ -1246054,6 +1245539,11 @@
"typeID": 21693,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21693,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21693,
@@ -1246169,6 +1245659,11 @@
"typeID": 21694,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21694,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21694,
@@ -1246284,6 +1245779,11 @@
"typeID": 21695,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21695,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21695,
@@ -1246399,6 +1245899,11 @@
"typeID": 21696,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21696,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21696,
@@ -1246514,6 +1246019,11 @@
"typeID": 21698,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21698,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21698,
@@ -1246619,6 +1246129,11 @@
"typeID": 21699,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21699,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21699,
@@ -1246724,6 +1246239,11 @@
"typeID": 21700,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21700,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21700,
@@ -1246829,6 +1246349,11 @@
"typeID": 21701,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21701,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21701,
@@ -1246934,6 +1246459,11 @@
"typeID": 21703,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21703,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21703,
@@ -1247039,6 +1246569,11 @@
"typeID": 21704,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21704,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21704,
@@ -1247144,6 +1246679,11 @@
"typeID": 21705,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21705,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21705,
@@ -1247249,6 +1246789,11 @@
"typeID": 21706,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21706,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21706,
@@ -1247354,6 +1246899,11 @@
"typeID": 21708,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21708,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21708,
@@ -1247469,6 +1247019,11 @@
"typeID": 21709,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21709,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21709,
@@ -1247584,6 +1247139,11 @@
"typeID": 21710,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21710,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21710,
@@ -1247699,6 +1247259,11 @@
"typeID": 21711,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21711,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21711,
@@ -1247814,6 +1247379,11 @@
"typeID": 21713,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21713,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21713,
@@ -1247929,6 +1247499,11 @@
"typeID": 21714,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21714,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21714,
@@ -1248044,6 +1247619,11 @@
"typeID": 21715,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21715,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21715,
@@ -1248159,6 +1247739,11 @@
"typeID": 21716,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 21716,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 21716,
@@ -1248909,11 +1248494,6 @@
"typeID": 21744,
"value": 571.0
},
- {
- "attributeID": 182,
- "typeID": 21744,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 21744,
@@ -1249184,11 +1248764,6 @@
"typeID": 21745,
"value": 571.0
},
- {
- "attributeID": 182,
- "typeID": 21745,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 21745,
@@ -1249459,11 +1249034,6 @@
"typeID": 21746,
"value": 571.0
},
- {
- "attributeID": 182,
- "typeID": 21746,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 21746,
@@ -1249734,11 +1249304,6 @@
"typeID": 21747,
"value": 571.0
},
- {
- "attributeID": 182,
- "typeID": 21747,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 21747,
@@ -1250009,11 +1249574,6 @@
"typeID": 21748,
"value": 571.0
},
- {
- "attributeID": 182,
- "typeID": 21748,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 21748,
@@ -1250284,11 +1249844,6 @@
"typeID": 21749,
"value": 571.0
},
- {
- "attributeID": 182,
- "typeID": 21749,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 21749,
@@ -1269814,11 +1269369,6 @@
"typeID": 21855,
"value": 10.0
},
- {
- "attributeID": 277,
- "typeID": 21855,
- "value": 1.0
- },
{
"attributeID": 306,
"typeID": 21855,
@@ -1269909,11 +1269459,6 @@
"typeID": 21857,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 21857,
- "value": 1.0
- },
{
"attributeID": 422,
"typeID": 21857,
@@ -1314999,6 +1314544,11 @@
"typeID": 22225,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 22225,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 22225,
@@ -1315114,6 +1314664,11 @@
"typeID": 22226,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 22226,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 22226,
@@ -1331694,6 +1331249,11 @@
"typeID": 22293,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 22293,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 22293,
@@ -1331809,6 +1331369,11 @@
"typeID": 22294,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 22294,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 22294,
@@ -1334649,6 +1334214,11 @@
"typeID": 22343,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 22343,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 22343,
@@ -1357014,11 +1356584,6 @@
"typeID": 22718,
"value": 1000.0
},
- {
- "attributeID": 182,
- "typeID": 22718,
- "value": 3373.0
- },
{
"attributeID": 193,
"typeID": 22718,
@@ -1361589,6 +1361154,11 @@
"typeID": 22797,
"value": 1.0
},
+ {
+ "attributeID": 278,
+ "typeID": 22797,
+ "value": 1.0
+ },
{
"attributeID": 422,
"typeID": 22797,
@@ -1375379,11 +1374949,6 @@
"typeID": 22848,
"value": 323.0
},
- {
- "attributeID": 182,
- "typeID": 22848,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 22848,
@@ -1398549,6 +1398114,11 @@
"typeID": 23188,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23188,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23188,
@@ -1398664,6 +1398234,11 @@
"typeID": 23189,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23189,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23189,
@@ -1398779,6 +1398354,11 @@
"typeID": 23190,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23190,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23190,
@@ -1398894,6 +1398474,11 @@
"typeID": 23191,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23191,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23191,
@@ -1399009,6 +1398594,11 @@
"typeID": 23192,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23192,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23192,
@@ -1399124,6 +1398714,11 @@
"typeID": 23193,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23193,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23193,
@@ -1399239,6 +1398834,11 @@
"typeID": 23194,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23194,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23194,
@@ -1399354,6 +1398954,11 @@
"typeID": 23195,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23195,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23195,
@@ -1399469,6 +1399074,11 @@
"typeID": 23196,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23196,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23196,
@@ -1399584,6 +1399194,11 @@
"typeID": 23197,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23197,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23197,
@@ -1399699,6 +1399314,11 @@
"typeID": 23198,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23198,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23198,
@@ -1399814,6 +1399434,11 @@
"typeID": 23199,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23199,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23199,
@@ -1399929,6 +1399554,11 @@
"typeID": 23200,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23200,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23200,
@@ -1400044,6 +1399674,11 @@
"typeID": 23201,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23201,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23201,
@@ -1400159,6 +1399794,11 @@
"typeID": 23202,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23202,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23202,
@@ -1400274,6 +1399914,11 @@
"typeID": 23203,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23203,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23203,
@@ -1400389,6 +1400034,11 @@
"typeID": 23204,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23204,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23204,
@@ -1400504,6 +1400154,11 @@
"typeID": 23205,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23205,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23205,
@@ -1400619,6 +1400274,11 @@
"typeID": 23206,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23206,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23206,
@@ -1400734,6 +1400394,11 @@
"typeID": 23207,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23207,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23207,
@@ -1400849,6 +1400514,11 @@
"typeID": 23208,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23208,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23208,
@@ -1400964,6 +1400634,11 @@
"typeID": 23209,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23209,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23209,
@@ -1401079,6 +1400754,11 @@
"typeID": 23210,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23210,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23210,
@@ -1401194,6 +1400874,11 @@
"typeID": 23211,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23211,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23211,
@@ -1401309,6 +1400994,11 @@
"typeID": 23212,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23212,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23212,
@@ -1401414,6 +1401104,11 @@
"typeID": 23213,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23213,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23213,
@@ -1401519,6 +1401214,11 @@
"typeID": 23214,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23214,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23214,
@@ -1401624,6 +1401324,11 @@
"typeID": 23215,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23215,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23215,
@@ -1401729,6 +1401434,11 @@
"typeID": 23216,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23216,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23216,
@@ -1401834,6 +1401544,11 @@
"typeID": 23217,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23217,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23217,
@@ -1401939,6 +1401654,11 @@
"typeID": 23218,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23218,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23218,
@@ -1402044,6 +1401764,11 @@
"typeID": 23219,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 23219,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 23219,
@@ -1653147,7 +1652872,7 @@
{
"attributeID": 277,
"typeID": 24241,
- "value": 3.0
+ "value": 1.0
},
{
"attributeID": 280,
@@ -1674824,6 +1674549,11 @@
"typeID": 24464,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 24464,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 24464,
@@ -1686889,16 +1686619,6 @@
"typeID": 24608,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 24608,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 24608,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 24608,
@@ -1698439,11 +1698159,6 @@
"typeID": 24767,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 24767,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 24767,
@@ -1699189,11 +1698904,6 @@
"typeID": 24772,
"value": 428.0
},
- {
- "attributeID": 182,
- "typeID": 24772,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 24772,
@@ -1808964,11 +1808674,6 @@
"typeID": 25385,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 25385,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25385,
@@ -1812859,11 +1812564,6 @@
"typeID": 25472,
"value": 1672.0
},
- {
- "attributeID": 182,
- "typeID": 25472,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25472,
@@ -1813804,11 +1813504,6 @@
"typeID": 25524,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 25524,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25524,
@@ -1814249,11 +1813944,6 @@
"typeID": 25528,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 25528,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25528,
@@ -1817094,11 +1816784,6 @@
"typeID": 25559,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 25559,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25559,
@@ -1820839,11 +1820524,6 @@
"typeID": 25626,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 25626,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25626,
@@ -1852639,11 +1852319,6 @@
"typeID": 25706,
"value": 340.0
},
- {
- "attributeID": 182,
- "typeID": 25706,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25706,
@@ -1854874,11 +1854549,6 @@
"typeID": 25805,
"value": 3500.0
},
- {
- "attributeID": 182,
- "typeID": 25805,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25805,
@@ -1856044,11 +1855714,6 @@
"typeID": 25809,
"value": 24657.0
},
- {
- "attributeID": 182,
- "typeID": 25809,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25809,
@@ -1860494,11 +1860159,6 @@
"typeID": 25827,
"value": 476.0
},
- {
- "attributeID": 182,
- "typeID": 25827,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25827,
@@ -1861119,11 +1860779,6 @@
"typeID": 25840,
"value": 444.0
},
- {
- "attributeID": 182,
- "typeID": 25840,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25840,
@@ -1861359,6 +1861014,11 @@
"typeID": 25841,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 25841,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 25841,
@@ -1863034,11 +1862694,6 @@
"typeID": 25866,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 25866,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 25866,
@@ -1875824,6 +1875479,11 @@
"typeID": 26135,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26135,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26135,
@@ -1875934,6 +1875594,11 @@
"typeID": 26136,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26136,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26136,
@@ -1876044,6 +1875709,11 @@
"typeID": 26137,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26137,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26137,
@@ -1876794,6 +1876464,11 @@
"typeID": 26145,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26145,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26145,
@@ -1876904,6 +1876579,11 @@
"typeID": 26146,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26146,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26146,
@@ -1877014,6 +1876694,11 @@
"typeID": 26148,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26148,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26148,
@@ -1877124,6 +1876809,11 @@
"typeID": 26149,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26149,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26149,
@@ -1877234,6 +1876924,11 @@
"typeID": 26150,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26150,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26150,
@@ -1877344,6 +1877039,11 @@
"typeID": 26151,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26151,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26151,
@@ -1877454,6 +1877154,11 @@
"typeID": 26152,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26152,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26152,
@@ -1877564,6 +1877269,11 @@
"typeID": 26153,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26153,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26153,
@@ -1877674,6 +1877384,11 @@
"typeID": 26154,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26154,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26154,
@@ -1877784,6 +1877499,11 @@
"typeID": 26155,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26155,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26155,
@@ -1877894,6 +1877614,11 @@
"typeID": 26161,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26161,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26161,
@@ -1878004,6 +1877729,11 @@
"typeID": 26162,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26162,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26162,
@@ -1878114,6 +1877844,11 @@
"typeID": 26163,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26163,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26163,
@@ -1878224,6 +1877959,11 @@
"typeID": 26164,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26164,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26164,
@@ -1878334,6 +1878074,11 @@
"typeID": 26165,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26165,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26165,
@@ -1878444,6 +1878189,11 @@
"typeID": 26166,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26166,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26166,
@@ -1883934,11 +1883684,6 @@
"typeID": 26275,
"value": 4500.0
},
- {
- "attributeID": 182,
- "typeID": 26275,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 26275,
@@ -1884199,6 +1883944,11 @@
"typeID": 26276,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26276,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26276,
@@ -1884309,6 +1884059,11 @@
"typeID": 26277,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26277,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26277,
@@ -1898779,6 +1898534,11 @@
"typeID": 26657,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26657,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26657,
@@ -1898884,6 +1898644,11 @@
"typeID": 26658,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26658,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26658,
@@ -1898989,6 +1898754,11 @@
"typeID": 26659,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26659,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26659,
@@ -1899094,6 +1898864,11 @@
"typeID": 26660,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26660,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26660,
@@ -1899689,6 +1899464,11 @@
"typeID": 26662,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26662,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26662,
@@ -1899794,6 +1899574,11 @@
"typeID": 26663,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26663,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26663,
@@ -1899899,6 +1899684,11 @@
"typeID": 26664,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26664,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26664,
@@ -1900004,6 +1899794,11 @@
"typeID": 26665,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26665,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26665,
@@ -1900109,6 +1899904,11 @@
"typeID": 26666,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26666,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26666,
@@ -1900214,6 +1900014,11 @@
"typeID": 26667,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26667,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26667,
@@ -1900319,6 +1900124,11 @@
"typeID": 26668,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26668,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26668,
@@ -1900424,6 +1900234,11 @@
"typeID": 26669,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26669,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26669,
@@ -1900529,6 +1900344,11 @@
"typeID": 26670,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26670,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26670,
@@ -1900634,6 +1900454,11 @@
"typeID": 26671,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26671,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26671,
@@ -1900739,6 +1900564,11 @@
"typeID": 26672,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26672,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26672,
@@ -1900844,6 +1900674,11 @@
"typeID": 26673,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26673,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26673,
@@ -1900949,6 +1900784,11 @@
"typeID": 26674,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26674,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26674,
@@ -1901054,6 +1900894,11 @@
"typeID": 26675,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26675,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26675,
@@ -1901159,6 +1901004,11 @@
"typeID": 26676,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26676,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26676,
@@ -1901264,6 +1901114,11 @@
"typeID": 26677,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26677,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 26677,
@@ -1907694,11 +1907549,6 @@
"typeID": 26709,
"value": 1672.0
},
- {
- "attributeID": 182,
- "typeID": 26709,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 26709,
@@ -1908309,6 +1908159,11 @@
"typeID": 26713,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26713,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 26713,
@@ -1913784,11 +1913639,6 @@
"typeID": 26747,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 26747,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 26747,
@@ -1930279,6 +1930129,11 @@
"typeID": 26851,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26851,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 26851,
@@ -1930324,6 +1930179,11 @@
"typeID": 26852,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26852,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 26852,
@@ -1930779,11 +1930639,6 @@
"typeID": 26856,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 26856,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 26856,
@@ -1931129,11 +1930984,6 @@
"typeID": 26857,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 26857,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 26857,
@@ -1931479,11 +1931329,6 @@
"typeID": 26858,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 26858,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 26858,
@@ -1934564,6 +1934409,11 @@
"typeID": 26868,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 26868,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 26868,
@@ -1944119,6 +1943969,11 @@
"typeID": 27028,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 27028,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 27028,
@@ -1953104,11 +1952959,6 @@
"typeID": 27280,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 27280,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27280,
@@ -1953399,11 +1953249,6 @@
"typeID": 27281,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 27281,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27281,
@@ -1953689,11 +1953534,6 @@
"typeID": 27282,
"value": 79.0
},
- {
- "attributeID": 182,
- "typeID": 27282,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27282,
@@ -1953964,11 +1953804,6 @@
"typeID": 27283,
"value": 79.0
},
- {
- "attributeID": 182,
- "typeID": 27283,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27283,
@@ -1954239,11 +1954074,6 @@
"typeID": 27284,
"value": 79.0
},
- {
- "attributeID": 182,
- "typeID": 27284,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27284,
@@ -1954514,11 +1954344,6 @@
"typeID": 27285,
"value": 79.0
},
- {
- "attributeID": 182,
- "typeID": 27285,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27285,
@@ -2028039,6 +2027864,11 @@
"typeID": 27802,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 27802,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 27802,
@@ -2028154,6 +2027984,11 @@
"typeID": 27804,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 27804,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 27804,
@@ -2038289,11 +2038124,6 @@
"typeID": 27956,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 27956,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 27956,
@@ -2059509,6 +2059339,11 @@
"typeID": 28224,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28224,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28224,
@@ -2061159,6 +2060994,11 @@
"typeID": 28259,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28259,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28259,
@@ -2061487,7 +2061327,7 @@
{
"attributeID": 279,
"typeID": 28262,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2063602,7 +2063442,7 @@
{
"attributeID": 279,
"typeID": 28274,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2064307,7 +2064147,7 @@
{
"attributeID": 279,
"typeID": 28278,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2068537,7 +2068377,7 @@
{
"attributeID": 279,
"typeID": 28302,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2072334,6 +2072174,11 @@
"typeID": 28367,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28367,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28367,
@@ -2073389,6 +2073234,11 @@
"typeID": 28385,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28385,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28385,
@@ -2073459,6 +2073309,11 @@
"typeID": 28387,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28387,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28387,
@@ -2073504,6 +2073359,11 @@
"typeID": 28388,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28388,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28388,
@@ -2073549,6 +2073409,11 @@
"typeID": 28389,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28389,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28389,
@@ -2073594,6 +2073459,11 @@
"typeID": 28390,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28390,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28390,
@@ -2073639,6 +2073509,11 @@
"typeID": 28391,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28391,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28391,
@@ -2073684,6 +2073559,11 @@
"typeID": 28392,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28392,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28392,
@@ -2073729,6 +2073609,11 @@
"typeID": 28393,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28393,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28393,
@@ -2073774,6 +2073659,11 @@
"typeID": 28394,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28394,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28394,
@@ -2073819,6 +2073709,11 @@
"typeID": 28395,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28395,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28395,
@@ -2073864,6 +2073759,11 @@
"typeID": 28396,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28396,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28396,
@@ -2073909,6 +2073809,11 @@
"typeID": 28397,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28397,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28397,
@@ -2073954,6 +2073859,11 @@
"typeID": 28398,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28398,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28398,
@@ -2073999,6 +2073909,11 @@
"typeID": 28399,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28399,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28399,
@@ -2074044,6 +2073959,11 @@
"typeID": 28400,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28400,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28400,
@@ -2074089,6 +2074009,11 @@
"typeID": 28401,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28401,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28401,
@@ -2074134,6 +2074059,11 @@
"typeID": 28402,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28402,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28402,
@@ -2074179,6 +2074109,11 @@
"typeID": 28403,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28403,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28403,
@@ -2074224,6 +2074159,11 @@
"typeID": 28404,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28404,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28404,
@@ -2074269,6 +2074209,11 @@
"typeID": 28405,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28405,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28405,
@@ -2074314,6 +2074259,11 @@
"typeID": 28406,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28406,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28406,
@@ -2074359,6 +2074309,11 @@
"typeID": 28407,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28407,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28407,
@@ -2074404,6 +2074359,11 @@
"typeID": 28408,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28408,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28408,
@@ -2074449,6 +2074409,11 @@
"typeID": 28409,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28409,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28409,
@@ -2074494,6 +2074459,11 @@
"typeID": 28410,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28410,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28410,
@@ -2074539,6 +2074509,11 @@
"typeID": 28411,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28411,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28411,
@@ -2074584,6 +2074559,11 @@
"typeID": 28412,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28412,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 28412,
@@ -2074639,6 +2074619,11 @@
"typeID": 28413,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28413,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 28413,
@@ -2074694,6 +2074679,11 @@
"typeID": 28414,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28414,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 28414,
@@ -2074749,6 +2074739,11 @@
"typeID": 28415,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28415,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28415,
@@ -2074794,6 +2074789,11 @@
"typeID": 28416,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28416,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28416,
@@ -2074839,6 +2074839,11 @@
"typeID": 28417,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28417,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28417,
@@ -2074884,6 +2074889,11 @@
"typeID": 28418,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28418,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28418,
@@ -2074929,6 +2074939,11 @@
"typeID": 28419,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28419,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28419,
@@ -2074974,6 +2074989,11 @@
"typeID": 28420,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28420,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28420,
@@ -2075019,6 +2075039,11 @@
"typeID": 28421,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28421,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28421,
@@ -2075064,6 +2075089,11 @@
"typeID": 28422,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28422,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28422,
@@ -2075109,6 +2075139,11 @@
"typeID": 28423,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28423,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28423,
@@ -2075154,6 +2075189,11 @@
"typeID": 28424,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28424,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28424,
@@ -2075199,6 +2075239,11 @@
"typeID": 28425,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28425,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28425,
@@ -2075244,6 +2075289,11 @@
"typeID": 28426,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28426,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28426,
@@ -2075289,6 +2075339,11 @@
"typeID": 28427,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28427,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28427,
@@ -2075334,6 +2075389,11 @@
"typeID": 28428,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28428,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28428,
@@ -2075379,6 +2075439,11 @@
"typeID": 28429,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28429,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28429,
@@ -2075424,6 +2075489,11 @@
"typeID": 28430,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28430,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28430,
@@ -2075469,6 +2075539,11 @@
"typeID": 28431,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28431,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28431,
@@ -2075514,6 +2075589,11 @@
"typeID": 28432,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28432,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28432,
@@ -2075559,6 +2075639,11 @@
"typeID": 28433,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28433,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28433,
@@ -2075604,6 +2075689,11 @@
"typeID": 28434,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28434,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28434,
@@ -2075649,6 +2075739,11 @@
"typeID": 28435,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28435,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28435,
@@ -2075694,6 +2075789,11 @@
"typeID": 28436,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28436,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28436,
@@ -2075739,6 +2075839,11 @@
"typeID": 28437,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28437,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28437,
@@ -2075784,6 +2075889,11 @@
"typeID": 28438,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28438,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28438,
@@ -2075829,6 +2075939,11 @@
"typeID": 28439,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28439,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28439,
@@ -2075874,6 +2075989,11 @@
"typeID": 28440,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28440,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28440,
@@ -2075919,6 +2076039,11 @@
"typeID": 28441,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28441,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28441,
@@ -2075964,6 +2076089,11 @@
"typeID": 28442,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28442,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28442,
@@ -2076009,6 +2076139,11 @@
"typeID": 28443,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28443,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28443,
@@ -2076054,6 +2076189,11 @@
"typeID": 28444,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28444,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28444,
@@ -2078424,11 +2078564,6 @@
"typeID": 28508,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 28508,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28508,
@@ -2079139,11 +2079274,6 @@
"typeID": 28510,
"value": 3500.0
},
- {
- "attributeID": 182,
- "typeID": 28510,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28510,
@@ -2083064,11 +2083194,6 @@
"typeID": 28571,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 28571,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28571,
@@ -2083404,11 +2083529,6 @@
"typeID": 28572,
"value": 8516.0
},
- {
- "attributeID": 182,
- "typeID": 28572,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28572,
@@ -2083744,11 +2083864,6 @@
"typeID": 28573,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 28573,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28573,
@@ -2084084,11 +2084199,6 @@
"typeID": 28574,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 28574,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28574,
@@ -2084429,11 +2084539,6 @@
"typeID": 28575,
"value": 3500.0
},
- {
- "attributeID": 182,
- "typeID": 28575,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28575,
@@ -2086429,6 +2086534,11 @@
"typeID": 28617,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28617,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28617,
@@ -2086474,6 +2086584,11 @@
"typeID": 28618,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28618,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28618,
@@ -2086519,6 +2086634,11 @@
"typeID": 28619,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28619,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28619,
@@ -2086564,6 +2086684,11 @@
"typeID": 28620,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28620,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28620,
@@ -2086609,6 +2086734,11 @@
"typeID": 28621,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28621,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28621,
@@ -2086654,6 +2086784,11 @@
"typeID": 28622,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28622,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28622,
@@ -2086699,6 +2086834,11 @@
"typeID": 28623,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28623,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28623,
@@ -2086744,6 +2086884,11 @@
"typeID": 28624,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28624,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28624,
@@ -2086789,6 +2086934,11 @@
"typeID": 28625,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28625,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28625,
@@ -2086834,6 +2086984,11 @@
"typeID": 28626,
"value": 11395.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28626,
+ "value": 1.0
+ },
{
"attributeID": 522,
"typeID": 28626,
@@ -2086889,6 +2087044,11 @@
"typeID": 28627,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28627,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28627,
@@ -2086944,6 +2087104,11 @@
"typeID": 28628,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28628,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 28628,
@@ -2100304,6 +2100469,11 @@
"typeID": 28871,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28871,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28871,
@@ -2100419,6 +2100589,11 @@
"typeID": 28872,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28872,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28872,
@@ -2100534,6 +2100709,11 @@
"typeID": 28873,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28873,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28873,
@@ -2100649,6 +2100829,11 @@
"typeID": 28874,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28874,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28874,
@@ -2100764,6 +2100949,11 @@
"typeID": 28875,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28875,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28875,
@@ -2100879,6 +2101069,11 @@
"typeID": 28876,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28876,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28876,
@@ -2100994,6 +2101189,11 @@
"typeID": 28877,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28877,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28877,
@@ -2101109,6 +2101309,11 @@
"typeID": 28878,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 28878,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 28878,
@@ -2108429,11 +2108634,6 @@
"typeID": 28998,
"value": 6185.0
},
- {
- "attributeID": 182,
- "typeID": 28998,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 28998,
@@ -2110034,11 +2110234,6 @@
"typeID": 29020,
"value": 8380.0
},
- {
- "attributeID": 182,
- "typeID": 29020,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 29020,
@@ -2110389,11 +2110584,6 @@
"typeID": 29021,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 29021,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 29021,
@@ -2110744,11 +2110934,6 @@
"typeID": 29022,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 29022,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 29022,
@@ -2111099,11 +2111284,6 @@
"typeID": 29023,
"value": 8960.0
},
- {
- "attributeID": 182,
- "typeID": 29023,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 29023,
@@ -2114199,6 +2114379,11 @@
"typeID": 29113,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29113,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29113,
@@ -2114229,6 +2114414,11 @@
"typeID": 29115,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29115,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29115,
@@ -2114259,6 +2114449,11 @@
"typeID": 29117,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29117,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29117,
@@ -2114289,6 +2114484,11 @@
"typeID": 29119,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29119,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29119,
@@ -2114319,6 +2114519,11 @@
"typeID": 29121,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29121,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29121,
@@ -2114349,6 +2114554,11 @@
"typeID": 29123,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29123,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29123,
@@ -2114379,6 +2114589,11 @@
"typeID": 29125,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29125,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29125,
@@ -2114409,6 +2114624,11 @@
"typeID": 29127,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29127,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29127,
@@ -2114439,6 +2114659,11 @@
"typeID": 29129,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29129,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29129,
@@ -2114469,6 +2114694,11 @@
"typeID": 29131,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29131,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29131,
@@ -2114499,6 +2114729,11 @@
"typeID": 29133,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29133,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29133,
@@ -2114529,6 +2114764,11 @@
"typeID": 29135,
"value": 16281.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29135,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 29135,
@@ -2118244,6 +2118484,11 @@
"typeID": 29190,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29190,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29190,
@@ -2126499,6 +2126744,11 @@
"typeID": 29289,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29289,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29289,
@@ -2135244,6 +2135494,11 @@
"typeID": 29549,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29549,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29549,
@@ -2152694,6 +2152949,11 @@
"typeID": 29716,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29716,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29716,
@@ -2152799,6 +2153059,11 @@
"typeID": 29717,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29717,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29717,
@@ -2152904,6 +2153169,11 @@
"typeID": 29718,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29718,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29718,
@@ -2153009,6 +2153279,11 @@
"typeID": 29719,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29719,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29719,
@@ -2153114,6 +2153389,11 @@
"typeID": 29720,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29720,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29720,
@@ -2153219,6 +2153499,11 @@
"typeID": 29721,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29721,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29721,
@@ -2153324,6 +2153609,11 @@
"typeID": 29722,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29722,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29722,
@@ -2153429,6 +2153719,11 @@
"typeID": 29723,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29723,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29723,
@@ -2153534,6 +2153829,11 @@
"typeID": 29724,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29724,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29724,
@@ -2153639,6 +2153939,11 @@
"typeID": 29725,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29725,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29725,
@@ -2153744,6 +2154049,11 @@
"typeID": 29726,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29726,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29726,
@@ -2153849,6 +2154159,11 @@
"typeID": 29727,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29727,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29727,
@@ -2153954,6 +2154269,11 @@
"typeID": 29728,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29728,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29728,
@@ -2154059,6 +2154379,11 @@
"typeID": 29729,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29729,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29729,
@@ -2154164,6 +2154489,11 @@
"typeID": 29730,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29730,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29730,
@@ -2154269,6 +2154599,11 @@
"typeID": 29731,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29731,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29731,
@@ -2154374,6 +2154709,11 @@
"typeID": 29732,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29732,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29732,
@@ -2154479,6 +2154819,11 @@
"typeID": 29733,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29733,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29733,
@@ -2154584,6 +2154929,11 @@
"typeID": 29734,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29734,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29734,
@@ -2154689,6 +2155039,11 @@
"typeID": 29735,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29735,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29735,
@@ -2154794,6 +2155149,11 @@
"typeID": 29736,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29736,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29736,
@@ -2154899,6 +2155259,11 @@
"typeID": 29737,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29737,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29737,
@@ -2155004,6 +2155369,11 @@
"typeID": 29738,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29738,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29738,
@@ -2155109,6 +2155479,11 @@
"typeID": 29739,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29739,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29739,
@@ -2155214,6 +2155589,11 @@
"typeID": 29740,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29740,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29740,
@@ -2155319,6 +2155699,11 @@
"typeID": 29741,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29741,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29741,
@@ -2155424,6 +2155809,11 @@
"typeID": 29742,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29742,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29742,
@@ -2155529,6 +2155919,11 @@
"typeID": 29743,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29743,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29743,
@@ -2155634,6 +2156029,11 @@
"typeID": 29744,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29744,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29744,
@@ -2155739,6 +2156139,11 @@
"typeID": 29745,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29745,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29745,
@@ -2199614,6 +2200019,11 @@
"typeID": 29894,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29894,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29894,
@@ -2199719,6 +2200129,11 @@
"typeID": 29895,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29895,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29895,
@@ -2199824,6 +2200239,11 @@
"typeID": 29896,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29896,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29896,
@@ -2199929,6 +2200349,11 @@
"typeID": 29897,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29897,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29897,
@@ -2200034,6 +2200459,11 @@
"typeID": 29898,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29898,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29898,
@@ -2200139,6 +2200569,11 @@
"typeID": 29899,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29899,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29899,
@@ -2200244,6 +2200679,11 @@
"typeID": 29900,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29900,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29900,
@@ -2200349,6 +2200789,11 @@
"typeID": 29901,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29901,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29901,
@@ -2200454,6 +2200899,11 @@
"typeID": 29902,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29902,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29902,
@@ -2200559,6 +2201009,11 @@
"typeID": 29903,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 29903,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 29903,
@@ -2235609,16 +2236064,6 @@
"typeID": 30221,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 30221,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 30221,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 30221,
@@ -2235714,16 +2236159,6 @@
"typeID": 30222,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 30222,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 30222,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 30222,
@@ -2243519,11 +2243954,6 @@
"typeID": 30460,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 30460,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 30460,
@@ -2243759,11 +2244189,6 @@
"typeID": 30461,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 30461,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 30461,
@@ -2243999,11 +2244424,6 @@
"typeID": 30462,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 30462,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 30462,
@@ -2246559,6 +2246979,11 @@
"typeID": 30516,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30516,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30516,
@@ -2246669,6 +2247094,11 @@
"typeID": 30517,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30517,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30517,
@@ -2246779,6 +2247209,11 @@
"typeID": 30518,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30518,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30518,
@@ -2246889,6 +2247324,11 @@
"typeID": 30519,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30519,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30519,
@@ -2246999,6 +2247439,11 @@
"typeID": 30520,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30520,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30520,
@@ -2247109,6 +2247554,11 @@
"typeID": 30521,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30521,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30521,
@@ -2247219,6 +2247669,11 @@
"typeID": 30522,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30522,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30522,
@@ -2247329,6 +2247784,11 @@
"typeID": 30523,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30523,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30523,
@@ -2247439,6 +2247899,11 @@
"typeID": 30524,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30524,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30524,
@@ -2247549,6 +2248014,11 @@
"typeID": 30525,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30525,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30525,
@@ -2247659,6 +2248129,11 @@
"typeID": 30526,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30526,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30526,
@@ -2247769,6 +2248244,11 @@
"typeID": 30527,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30527,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30527,
@@ -2247879,6 +2248359,11 @@
"typeID": 30528,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30528,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30528,
@@ -2247989,6 +2248474,11 @@
"typeID": 30529,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30529,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30529,
@@ -2248099,6 +2248589,11 @@
"typeID": 30530,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30530,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30530,
@@ -2274504,6 +2274999,11 @@
"typeID": 30969,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30969,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30969,
@@ -2275089,6 +2275589,11 @@
"typeID": 30976,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30976,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30976,
@@ -2275204,6 +2275709,11 @@
"typeID": 30981,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30981,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30981,
@@ -2275319,6 +2275829,11 @@
"typeID": 30982,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30982,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30982,
@@ -2275894,6 +2276409,11 @@
"typeID": 30996,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 30996,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 30996,
@@ -2313442,7 +2313962,7 @@
{
"attributeID": 279,
"typeID": 31864,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2314802,7 +2315322,7 @@
{
"attributeID": 279,
"typeID": 31872,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2316162,7 +2316682,7 @@
{
"attributeID": 279,
"typeID": 31880,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2317527,7 +2318047,7 @@
{
"attributeID": 279,
"typeID": 31888,
- "value": 3.0
+ "value": 2.0
},
{
"attributeID": 416,
@@ -2326244,6 +2326764,11 @@
"typeID": 32100,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 32100,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 32100,
@@ -2332464,6 +2332989,11 @@
"typeID": 32240,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 32240,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 32240,
@@ -2334629,6 +2335159,11 @@
"typeID": 32279,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 32279,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 32279,
@@ -2334744,6 +2335279,11 @@
"typeID": 32281,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 32281,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 32281,
@@ -2334859,6 +2335399,11 @@
"typeID": 32282,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 32282,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 32282,
@@ -2341014,11 +2341559,6 @@
"typeID": 32361,
"value": 300.0
},
- {
- "attributeID": 182,
- "typeID": 32361,
- "value": 32339.0
- },
{
"attributeID": 281,
"typeID": 32361,
@@ -2341694,6 +2342234,11 @@
"typeID": 32377,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 32377,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 32377,
@@ -2375489,16 +2376034,6 @@
"typeID": 32993,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 32993,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 32993,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 32993,
@@ -2375589,16 +2376124,6 @@
"typeID": 32994,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 32994,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 32994,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 32994,
@@ -2375689,16 +2376214,6 @@
"typeID": 32995,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 32995,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 32995,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 32995,
@@ -2383369,6 +2383884,11 @@
"typeID": 33147,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33147,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33147,
@@ -2389344,6 +2389864,11 @@
"typeID": 33186,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33186,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33186,
@@ -2389419,6 +2389944,11 @@
"typeID": 33187,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33187,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33187,
@@ -2389494,6 +2390024,11 @@
"typeID": 33188,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33188,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33188,
@@ -2390789,6 +2391324,11 @@
"typeID": 33233,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33233,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33233,
@@ -2390864,6 +2391404,11 @@
"typeID": 33234,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33234,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33234,
@@ -2390939,6 +2391484,11 @@
"typeID": 33235,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33235,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33235,
@@ -2391014,6 +2391564,11 @@
"typeID": 33236,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33236,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33236,
@@ -2391089,6 +2391644,11 @@
"typeID": 33237,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33237,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33237,
@@ -2391164,6 +2391724,11 @@
"typeID": 33238,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33238,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33238,
@@ -2391239,6 +2391804,11 @@
"typeID": 33239,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33239,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33239,
@@ -2391314,6 +2391884,11 @@
"typeID": 33240,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33240,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33240,
@@ -2391389,6 +2391964,11 @@
"typeID": 33241,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33241,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33241,
@@ -2391464,6 +2392044,11 @@
"typeID": 33242,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33242,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33242,
@@ -2391539,6 +2392124,11 @@
"typeID": 33243,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33243,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33243,
@@ -2391614,6 +2392204,11 @@
"typeID": 33244,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33244,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33244,
@@ -2391689,6 +2392284,11 @@
"typeID": 33245,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33245,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33245,
@@ -2391764,6 +2392364,11 @@
"typeID": 33246,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33246,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33246,
@@ -2391839,6 +2392444,11 @@
"typeID": 33247,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33247,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33247,
@@ -2391914,6 +2392524,11 @@
"typeID": 33248,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33248,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33248,
@@ -2391989,6 +2392604,11 @@
"typeID": 33249,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33249,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33249,
@@ -2392064,6 +2392684,11 @@
"typeID": 33251,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33251,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33251,
@@ -2392139,6 +2392764,11 @@
"typeID": 33252,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33252,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33252,
@@ -2392214,6 +2392844,11 @@
"typeID": 33253,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33253,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33253,
@@ -2392289,6 +2392924,11 @@
"typeID": 33254,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33254,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33254,
@@ -2392364,6 +2393004,11 @@
"typeID": 33255,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33255,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33255,
@@ -2392439,6 +2393084,11 @@
"typeID": 33256,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33256,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33256,
@@ -2392514,6 +2393164,11 @@
"typeID": 33257,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33257,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33257,
@@ -2392589,6 +2393244,11 @@
"typeID": 33258,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33258,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33258,
@@ -2392664,6 +2393324,11 @@
"typeID": 33259,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33259,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33259,
@@ -2392739,6 +2393404,11 @@
"typeID": 33260,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33260,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33260,
@@ -2392814,6 +2393484,11 @@
"typeID": 33261,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33261,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33261,
@@ -2392889,6 +2393564,11 @@
"typeID": 33262,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33262,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33262,
@@ -2392964,6 +2393644,11 @@
"typeID": 33263,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33263,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33263,
@@ -2393039,6 +2393724,11 @@
"typeID": 33264,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33264,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33264,
@@ -2393114,6 +2393804,11 @@
"typeID": 33265,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33265,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33265,
@@ -2393189,6 +2393884,11 @@
"typeID": 33266,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33266,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33266,
@@ -2393264,6 +2393964,11 @@
"typeID": 33267,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33267,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33267,
@@ -2393339,6 +2394044,11 @@
"typeID": 33268,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33268,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33268,
@@ -2393414,6 +2394124,11 @@
"typeID": 33269,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 33269,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 33269,
@@ -2412999,11 +2413714,6 @@
"typeID": 33530,
"value": 14.0
},
- {
- "attributeID": 182,
- "typeID": 33530,
- "value": 21718.0
- },
{
"attributeID": 456,
"typeID": 33530,
@@ -2413074,11 +2413784,6 @@
"typeID": 33531,
"value": 14.0
},
- {
- "attributeID": 182,
- "typeID": 33531,
- "value": 21718.0
- },
{
"attributeID": 456,
"typeID": 33531,
@@ -2413149,11 +2413854,6 @@
"typeID": 33532,
"value": 14.0
},
- {
- "attributeID": 182,
- "typeID": 33532,
- "value": 21718.0
- },
{
"attributeID": 456,
"typeID": 33532,
@@ -2413224,11 +2413924,6 @@
"typeID": 33533,
"value": 14.0
},
- {
- "attributeID": 182,
- "typeID": 33533,
- "value": 21718.0
- },
{
"attributeID": 456,
"typeID": 33533,
@@ -2413299,11 +2413994,6 @@
"typeID": 33534,
"value": 14.0
},
- {
- "attributeID": 182,
- "typeID": 33534,
- "value": 21718.0
- },
{
"attributeID": 456,
"typeID": 33534,
@@ -2414704,16 +2415394,6 @@
"typeID": 33569,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 33569,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 33569,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 33569,
@@ -2414804,16 +2415484,6 @@
"typeID": 33571,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 33571,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 33571,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 33571,
@@ -2414904,16 +2415574,6 @@
"typeID": 33572,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 33572,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 33572,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 33572,
@@ -2415004,16 +2415664,6 @@
"typeID": 33573,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 33573,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 33573,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 33573,
@@ -2447334,11 +2447984,6 @@
"typeID": 33889,
"value": 0.0
},
- {
- "attributeID": 277,
- "typeID": 33889,
- "value": 13278.0
- },
{
"attributeID": 416,
"typeID": 33889,
@@ -2478039,6 +2478684,11 @@
"typeID": 34299,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34299,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34299,
@@ -2478154,6 +2478804,11 @@
"typeID": 34300,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34300,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34300,
@@ -2478269,6 +2478924,11 @@
"typeID": 34301,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34301,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34301,
@@ -2478519,6 +2479179,11 @@
"typeID": 34305,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34305,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34305,
@@ -2478854,6 +2479519,11 @@
"typeID": 34315,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34315,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34315,
@@ -2482049,6 +2482719,11 @@
"typeID": 34375,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34375,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34375,
@@ -2482159,6 +2482834,11 @@
"typeID": 34378,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34378,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34378,
@@ -2482299,6 +2482979,11 @@
"typeID": 34384,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34384,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34384,
@@ -2482409,6 +2483094,11 @@
"typeID": 34385,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34385,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34385,
@@ -2483194,6 +2483884,11 @@
"typeID": 34403,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34403,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34403,
@@ -2483354,6 +2484049,11 @@
"typeID": 34406,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34406,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34406,
@@ -2483649,6 +2484349,11 @@
"typeID": 34438,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34438,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34438,
@@ -2485154,6 +2485859,11 @@
"typeID": 34447,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34447,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34447,
@@ -2485369,6 +2486079,11 @@
"typeID": 34453,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34453,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34453,
@@ -2485514,11 +2486229,6 @@
"typeID": 34454,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 34454,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 34454,
@@ -2485754,11 +2486464,6 @@
"typeID": 34455,
"value": 45.0
},
- {
- "attributeID": 182,
- "typeID": 34455,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 34455,
@@ -2493069,6 +2493774,11 @@
"typeID": 34503,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34503,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34503,
@@ -2493189,6 +2493899,11 @@
"typeID": 34504,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34504,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34504,
@@ -2493309,6 +2494024,11 @@
"typeID": 34505,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34505,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34505,
@@ -2493429,6 +2494149,11 @@
"typeID": 34506,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34506,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34506,
@@ -2493549,6 +2494274,11 @@
"typeID": 34507,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34507,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34507,
@@ -2493669,6 +2494399,11 @@
"typeID": 34508,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34508,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34508,
@@ -2493789,6 +2494524,11 @@
"typeID": 34509,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34509,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34509,
@@ -2493909,6 +2494649,11 @@
"typeID": 34510,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34510,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34510,
@@ -2494029,6 +2494774,11 @@
"typeID": 34511,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34511,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34511,
@@ -2494149,6 +2494899,11 @@
"typeID": 34512,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34512,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34512,
@@ -2494269,6 +2495024,11 @@
"typeID": 34513,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34513,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34513,
@@ -2494389,6 +2495149,11 @@
"typeID": 34514,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34514,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34514,
@@ -2494509,6 +2495274,11 @@
"typeID": 34515,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34515,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34515,
@@ -2494629,6 +2495399,11 @@
"typeID": 34516,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34516,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34516,
@@ -2494749,6 +2495524,11 @@
"typeID": 34517,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34517,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34517,
@@ -2494869,6 +2495649,11 @@
"typeID": 34518,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34518,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34518,
@@ -2494989,6 +2495774,11 @@
"typeID": 34519,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34519,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34519,
@@ -2495109,6 +2495899,11 @@
"typeID": 34520,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34520,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34520,
@@ -2495229,6 +2496024,11 @@
"typeID": 34521,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34521,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34521,
@@ -2495349,6 +2496149,11 @@
"typeID": 34522,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34522,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34522,
@@ -2495469,6 +2496274,11 @@
"typeID": 34523,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34523,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34523,
@@ -2495589,6 +2496399,11 @@
"typeID": 34524,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34524,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34524,
@@ -2495709,6 +2496524,11 @@
"typeID": 34525,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34525,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34525,
@@ -2495829,6 +2496649,11 @@
"typeID": 34526,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34526,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34526,
@@ -2495949,6 +2496774,11 @@
"typeID": 34527,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34527,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34527,
@@ -2496069,6 +2496899,11 @@
"typeID": 34528,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34528,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34528,
@@ -2496189,6 +2497024,11 @@
"typeID": 34529,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34529,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34529,
@@ -2496309,6 +2497149,11 @@
"typeID": 34530,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34530,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34530,
@@ -2496429,6 +2497274,11 @@
"typeID": 34531,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34531,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34531,
@@ -2496549,6 +2497399,11 @@
"typeID": 34532,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34532,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34532,
@@ -2498464,6 +2499319,11 @@
"typeID": 34572,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 34572,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 34572,
@@ -2503404,11 +2504264,6 @@
"typeID": 34873,
"value": 371.0
},
- {
- "attributeID": 182,
- "typeID": 34873,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 34873,
@@ -2553269,6 +2554124,11 @@
"typeID": 37479,
"value": 1.0
},
+ {
+ "attributeID": 2832,
+ "typeID": 37479,
+ "value": 25.0
+ },
{
"attributeID": 3,
"typeID": 37480,
@@ -2567967,7 +2568827,7 @@
{
"attributeID": 2184,
"typeID": 40347,
- "value": -15.0
+ "value": -10.0
},
{
"attributeID": 2185,
@@ -2577477,7 +2578337,7 @@
{
"attributeID": 2184,
"typeID": 40571,
- "value": -20.0
+ "value": -15.0
},
{
"attributeID": 2185,
@@ -2578462,7 +2579322,7 @@
{
"attributeID": 552,
"typeID": 40633,
- "value": 2000.0
+ "value": 10000.0
},
{
"attributeID": 633,
@@ -2692264,16 +2693124,6 @@
"typeID": 44110,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44110,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44110,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44110,
@@ -2692899,16 +2693749,6 @@
"typeID": 44260,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44260,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44260,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44260,
@@ -2692999,16 +2693839,6 @@
"typeID": 44261,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44261,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44261,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44261,
@@ -2693099,16 +2693929,6 @@
"typeID": 44262,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44262,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44262,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44262,
@@ -2693199,16 +2694019,6 @@
"typeID": 44263,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44263,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44263,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44263,
@@ -2693299,16 +2694109,6 @@
"typeID": 44264,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44264,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44264,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44264,
@@ -2693399,16 +2694199,6 @@
"typeID": 44265,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44265,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44265,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44265,
@@ -2693499,16 +2694289,6 @@
"typeID": 44266,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44266,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44266,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44266,
@@ -2693599,16 +2694379,6 @@
"typeID": 44267,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44267,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44267,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44267,
@@ -2693699,16 +2694469,6 @@
"typeID": 44268,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44268,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44268,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44268,
@@ -2693799,16 +2694559,6 @@
"typeID": 44269,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44269,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44269,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44269,
@@ -2693899,16 +2694649,6 @@
"typeID": 44270,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44270,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44270,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44270,
@@ -2693999,16 +2694739,6 @@
"typeID": 44271,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44271,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44271,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44271,
@@ -2694099,16 +2694829,6 @@
"typeID": 44272,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 44272,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 44272,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 44272,
@@ -2694644,6 +2695364,11 @@
"typeID": 44279,
"value": 0.0
},
+ {
+ "attributeID": 277,
+ "typeID": 44279,
+ "value": 1.0
+ },
{
"attributeID": 416,
"typeID": 44279,
@@ -2702289,6 +2703014,11 @@
"typeID": 45490,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45490,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45490,
@@ -2702349,6 +2703079,11 @@
"typeID": 45491,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45491,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45491,
@@ -2702409,6 +2703144,11 @@
"typeID": 45492,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45492,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45492,
@@ -2702469,6 +2703209,11 @@
"typeID": 45493,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45493,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45493,
@@ -2702529,6 +2703274,11 @@
"typeID": 45494,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45494,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45494,
@@ -2702589,6 +2703339,11 @@
"typeID": 45495,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45495,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45495,
@@ -2702649,6 +2703404,11 @@
"typeID": 45496,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45496,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45496,
@@ -2702709,6 +2703469,11 @@
"typeID": 45497,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45497,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45497,
@@ -2702769,6 +2703534,11 @@
"typeID": 45498,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45498,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45498,
@@ -2702829,6 +2703599,11 @@
"typeID": 45499,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45499,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45499,
@@ -2702889,6 +2703664,11 @@
"typeID": 45500,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45500,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45500,
@@ -2702949,6 +2703729,11 @@
"typeID": 45501,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45501,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45501,
@@ -2703009,6 +2703794,11 @@
"typeID": 45502,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45502,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45502,
@@ -2703069,6 +2703859,11 @@
"typeID": 45503,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45503,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45503,
@@ -2703129,6 +2703924,11 @@
"typeID": 45504,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45504,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45504,
@@ -2703189,6 +2703989,11 @@
"typeID": 45506,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45506,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45506,
@@ -2703249,6 +2704054,11 @@
"typeID": 45510,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45510,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45510,
@@ -2703309,6 +2704119,11 @@
"typeID": 45511,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45511,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45511,
@@ -2703369,6 +2704184,11 @@
"typeID": 45512,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45512,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45512,
@@ -2703429,6 +2704249,11 @@
"typeID": 45513,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 45513,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 45513,
@@ -2726119,6 +2726944,11 @@
"typeID": 46280,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46280,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46280,
@@ -2726179,6 +2727009,11 @@
"typeID": 46281,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46281,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46281,
@@ -2726239,6 +2727074,11 @@
"typeID": 46282,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46282,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46282,
@@ -2726299,6 +2727139,11 @@
"typeID": 46283,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46283,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46283,
@@ -2726359,6 +2727204,11 @@
"typeID": 46284,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46284,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46284,
@@ -2726419,6 +2727269,11 @@
"typeID": 46285,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46285,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46285,
@@ -2726479,6 +2727334,11 @@
"typeID": 46286,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46286,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46286,
@@ -2726539,6 +2727399,11 @@
"typeID": 46287,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46287,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46287,
@@ -2726599,6 +2727464,11 @@
"typeID": 46288,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46288,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46288,
@@ -2726659,6 +2727529,11 @@
"typeID": 46289,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46289,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46289,
@@ -2726719,6 +2727594,11 @@
"typeID": 46290,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46290,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46290,
@@ -2726779,6 +2727659,11 @@
"typeID": 46291,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46291,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46291,
@@ -2726839,6 +2727724,11 @@
"typeID": 46292,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46292,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46292,
@@ -2726899,6 +2727789,11 @@
"typeID": 46293,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46293,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46293,
@@ -2726959,6 +2727854,11 @@
"typeID": 46294,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46294,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46294,
@@ -2727019,6 +2727919,11 @@
"typeID": 46295,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46295,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46295,
@@ -2727079,6 +2727984,11 @@
"typeID": 46296,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46296,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46296,
@@ -2727139,6 +2728049,11 @@
"typeID": 46297,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46297,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46297,
@@ -2727199,6 +2728114,11 @@
"typeID": 46298,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46298,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46298,
@@ -2727259,6 +2728179,11 @@
"typeID": 46299,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46299,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46299,
@@ -2727319,6 +2728244,11 @@
"typeID": 46300,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46300,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46300,
@@ -2727379,6 +2728309,11 @@
"typeID": 46301,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46301,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46301,
@@ -2727439,6 +2728374,11 @@
"typeID": 46302,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46302,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46302,
@@ -2727499,6 +2728439,11 @@
"typeID": 46303,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46303,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46303,
@@ -2727559,6 +2728504,11 @@
"typeID": 46304,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46304,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46304,
@@ -2727619,6 +2728569,11 @@
"typeID": 46305,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46305,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46305,
@@ -2727679,6 +2728634,11 @@
"typeID": 46306,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46306,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46306,
@@ -2727739,6 +2728699,11 @@
"typeID": 46307,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46307,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46307,
@@ -2727799,6 +2728764,11 @@
"typeID": 46308,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46308,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46308,
@@ -2727859,6 +2728829,11 @@
"typeID": 46309,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46309,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46309,
@@ -2727919,6 +2728894,11 @@
"typeID": 46310,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46310,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46310,
@@ -2727979,6 +2728959,11 @@
"typeID": 46311,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46311,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46311,
@@ -2728039,6 +2729024,11 @@
"typeID": 46312,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46312,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46312,
@@ -2728099,6 +2729089,11 @@
"typeID": 46313,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46313,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46313,
@@ -2728159,6 +2729154,11 @@
"typeID": 46314,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46314,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46314,
@@ -2728219,6 +2729219,11 @@
"typeID": 46315,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46315,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46315,
@@ -2728279,6 +2729284,11 @@
"typeID": 46316,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46316,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46316,
@@ -2728339,6 +2729349,11 @@
"typeID": 46317,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46317,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46317,
@@ -2728399,6 +2729414,11 @@
"typeID": 46318,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46318,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46318,
@@ -2728459,6 +2729479,11 @@
"typeID": 46319,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46319,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46319,
@@ -2738644,6 +2739669,11 @@
"typeID": 46675,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46675,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46675,
@@ -2738714,6 +2739744,11 @@
"typeID": 46676,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46676,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46676,
@@ -2738784,6 +2739819,11 @@
"typeID": 46677,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46677,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46677,
@@ -2738854,6 +2739894,11 @@
"typeID": 46678,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46678,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46678,
@@ -2738924,6 +2739969,11 @@
"typeID": 46679,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46679,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46679,
@@ -2738994,6 +2740044,11 @@
"typeID": 46680,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46680,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46680,
@@ -2739064,6 +2740119,11 @@
"typeID": 46681,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46681,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46681,
@@ -2739134,6 +2740194,11 @@
"typeID": 46682,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46682,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46682,
@@ -2739204,6 +2740269,11 @@
"typeID": 46683,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46683,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46683,
@@ -2739274,6 +2740344,11 @@
"typeID": 46684,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46684,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46684,
@@ -2739344,6 +2740419,11 @@
"typeID": 46685,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46685,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46685,
@@ -2739414,6 +2740494,11 @@
"typeID": 46686,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46686,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46686,
@@ -2739484,6 +2740569,11 @@
"typeID": 46687,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46687,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46687,
@@ -2739554,6 +2740644,11 @@
"typeID": 46688,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46688,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46688,
@@ -2739624,6 +2740719,11 @@
"typeID": 46689,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46689,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46689,
@@ -2739779,6 +2740879,11 @@
"typeID": 46691,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46691,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46691,
@@ -2739824,6 +2740929,11 @@
"typeID": 46692,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46692,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46692,
@@ -2739869,6 +2740979,11 @@
"typeID": 46693,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46693,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46693,
@@ -2739914,6 +2741029,11 @@
"typeID": 46694,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46694,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46694,
@@ -2739959,6 +2741079,11 @@
"typeID": 46695,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46695,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46695,
@@ -2740004,6 +2741129,11 @@
"typeID": 46696,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46696,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46696,
@@ -2740049,6 +2741179,11 @@
"typeID": 46697,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46697,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46697,
@@ -2740094,6 +2741229,11 @@
"typeID": 46698,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46698,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46698,
@@ -2740139,6 +2741279,11 @@
"typeID": 46699,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46699,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46699,
@@ -2740184,6 +2741329,11 @@
"typeID": 46700,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46700,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46700,
@@ -2740229,6 +2741379,11 @@
"typeID": 46701,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46701,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46701,
@@ -2740274,6 +2741429,11 @@
"typeID": 46702,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46702,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46702,
@@ -2740319,6 +2741479,11 @@
"typeID": 46703,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46703,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46703,
@@ -2740364,6 +2741529,11 @@
"typeID": 46704,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46704,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46704,
@@ -2740409,6 +2741579,11 @@
"typeID": 46705,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 46705,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 46705,
@@ -2750287,7 +2751462,7 @@
{
"attributeID": 2184,
"typeID": 47133,
- "value": -15.0
+ "value": -10.0
},
{
"attributeID": 2185,
@@ -2751507,7 +2752682,7 @@
{
"attributeID": 2184,
"typeID": 47137,
- "value": -20.0
+ "value": -15.0
},
{
"attributeID": 2185,
@@ -2760134,16 +2761309,6 @@
"typeID": 47264,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 47264,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 47264,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 47264,
@@ -2763219,16 +2764384,6 @@
"typeID": 47300,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 47300,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 47300,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 47300,
@@ -2763319,16 +2764474,6 @@
"typeID": 47301,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 47301,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 47301,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 47301,
@@ -2763419,16 +2764564,6 @@
"typeID": 47302,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 47302,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 47302,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 47302,
@@ -2768359,6 +2769494,11 @@
"typeID": 47457,
"value": 13278.0
},
+ {
+ "attributeID": 277,
+ "typeID": 47457,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 47457,
@@ -2770094,11 +2771234,6 @@
"typeID": 47488,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 47488,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 47488,
@@ -2813889,6 +2815024,11 @@
"typeID": 48133,
"value": 21718.0
},
+ {
+ "attributeID": 277,
+ "typeID": 48133,
+ "value": 1.0
+ },
{
"attributeID": 456,
"typeID": 48133,
@@ -2829404,11 +2830544,6 @@
"typeID": 48594,
"value": 241.0
},
- {
- "attributeID": 182,
- "typeID": 48594,
- "value": 3373.0
- },
{
"attributeID": 192,
"typeID": 48594,
@@ -2838684,6 +2839819,11 @@
"typeID": 48916,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 48916,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 48916,
@@ -2852949,6 +2854089,11 @@
"typeID": 49789,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 49789,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 49789,
@@ -2854334,16 +2855479,6 @@
"typeID": 49991,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 49991,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 49991,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 49991,
@@ -2854434,16 +2855569,6 @@
"typeID": 49992,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 49992,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 49992,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 49992,
@@ -2854824,6 +2855949,11 @@
"typeID": 50015,
"value": 3386.0
},
+ {
+ "attributeID": 277,
+ "typeID": 50015,
+ "value": 1.0
+ },
{
"attributeID": 790,
"typeID": 50015,
@@ -2855929,16 +2857059,6 @@
"typeID": 50138,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 50138,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 50138,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 50138,
@@ -2864489,16 +2865609,6 @@
"typeID": 52219,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 52219,
- "value": 1.0
- },
- {
- "attributeID": 278,
- "typeID": 52219,
- "value": 1.0
- },
{
"attributeID": 281,
"typeID": 52219,
@@ -2868629,11 +2869739,6 @@
"typeID": 52306,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 52306,
- "value": 3386.0
- },
{
"attributeID": 790,
"typeID": 52306,
@@ -2868814,11 +2869919,6 @@
"typeID": 52315,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 52315,
- "value": 3386.0
- },
{
"attributeID": 790,
"typeID": 52315,
@@ -2868859,11 +2869959,6 @@
"typeID": 52316,
"value": 1.0
},
- {
- "attributeID": 277,
- "typeID": 52316,
- "value": 3386.0
- },
{
"attributeID": 790,
"typeID": 52316,
@@ -2888999,6 +2890094,606 @@
"typeID": 52696,
"value": 1.0
},
+ {
+ "attributeID": 4,
+ "typeID": 52700,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52700,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 37,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52700,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 55,
+ "typeID": 52700,
+ "value": 10.0
+ },
+ {
+ "attributeID": 70,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 76,
+ "typeID": 52700,
+ "value": 30000.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52700,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52700,
+ "value": 371.0
+ },
+ {
+ "attributeID": 192,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 208,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 209,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 210,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 211,
+ "typeID": 52700,
+ "value": 15.0
+ },
+ {
+ "attributeID": 245,
+ "typeID": 52700,
+ "value": 372.0
+ },
+ {
+ "attributeID": 250,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 252,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 263,
+ "typeID": 52700,
+ "value": 40000.0
+ },
+ {
+ "attributeID": 265,
+ "typeID": 52700,
+ "value": 80000.0
+ },
+ {
+ "attributeID": 267,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 268,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 269,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 270,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 271,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 272,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 273,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 274,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 292,
+ "typeID": 52700,
+ "value": 100.0
+ },
+ {
+ "attributeID": 309,
+ "typeID": 52700,
+ "value": -50.0
+ },
+ {
+ "attributeID": 416,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 456,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 457,
+ "typeID": 52700,
+ "value": 3.0
+ },
+ {
+ "attributeID": 479,
+ "typeID": 52700,
+ "value": 625000.0
+ },
+ {
+ "attributeID": 481,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 482,
+ "typeID": 52700,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 508,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 52700,
+ "value": 260.0
+ },
+ {
+ "attributeID": 562,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 564,
+ "typeID": 52700,
+ "value": 3000.0
+ },
+ {
+ "attributeID": 566,
+ "typeID": 52700,
+ "value": -50.0
+ },
+ {
+ "attributeID": 580,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 581,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 582,
+ "typeID": 52700,
+ "value": 0.0
+ },
+ {
+ "attributeID": 583,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 665,
+ "typeID": 52700,
+ "value": 1000000.0
+ },
+ {
+ "attributeID": 798,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 854,
+ "typeID": 52700,
+ "value": 1.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52701,
+ "value": 100000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52701,
+ "value": 211250.0
+ },
+ {
+ "attributeID": 37,
+ "typeID": 52701,
+ "value": 100.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52701,
+ "value": 2175.0
+ },
+ {
+ "attributeID": 51,
+ "typeID": 52701,
+ "value": 8147.449447
+ },
+ {
+ "attributeID": 54,
+ "typeID": 52701,
+ "value": 311850.0
+ },
+ {
+ "attributeID": 55,
+ "typeID": 52701,
+ "value": 3300000.0
+ },
+ {
+ "attributeID": 64,
+ "typeID": 52701,
+ "value": 52.22547103
+ },
+ {
+ "attributeID": 70,
+ "typeID": 52701,
+ "value": 0.0151875
+ },
+ {
+ "attributeID": 76,
+ "typeID": 52701,
+ "value": 355960.0
+ },
+ {
+ "attributeID": 90,
+ "typeID": 52701,
+ "value": 420.0
+ },
+ {
+ "attributeID": 109,
+ "typeID": 52701,
+ "value": 0.67
+ },
+ {
+ "attributeID": 110,
+ "typeID": 52701,
+ "value": 0.67
+ },
+ {
+ "attributeID": 111,
+ "typeID": 52701,
+ "value": 0.67
+ },
+ {
+ "attributeID": 113,
+ "typeID": 52701,
+ "value": 0.67
+ },
+ {
+ "attributeID": 114,
+ "typeID": 52701,
+ "value": 40.0
+ },
+ {
+ "attributeID": 116,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 117,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 118,
+ "typeID": 52701,
+ "value": 24.0
+ },
+ {
+ "attributeID": 158,
+ "typeID": 52701,
+ "value": 52500.0
+ },
+ {
+ "attributeID": 160,
+ "typeID": 52701,
+ "value": 0.007159789
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52701,
+ "value": 18500000.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52701,
+ "value": 1700.0
+ },
+ {
+ "attributeID": 192,
+ "typeID": 52701,
+ "value": 7.0
+ },
+ {
+ "attributeID": 208,
+ "typeID": 52701,
+ "value": 54.0
+ },
+ {
+ "attributeID": 209,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 210,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 211,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 245,
+ "typeID": 52701,
+ "value": 41118.0
+ },
+ {
+ "attributeID": 246,
+ "typeID": 52701,
+ "value": 397.0
+ },
+ {
+ "attributeID": 252,
+ "typeID": 52701,
+ "value": 0.5
+ },
+ {
+ "attributeID": 263,
+ "typeID": 52701,
+ "value": 140125.0
+ },
+ {
+ "attributeID": 265,
+ "typeID": 52701,
+ "value": 211250.0
+ },
+ {
+ "attributeID": 267,
+ "typeID": 52701,
+ "value": 0.359375
+ },
+ {
+ "attributeID": 268,
+ "typeID": 52701,
+ "value": 0.302224002
+ },
+ {
+ "attributeID": 269,
+ "typeID": 52701,
+ "value": 0.283335002
+ },
+ {
+ "attributeID": 270,
+ "typeID": 52701,
+ "value": 0.4671875
+ },
+ {
+ "attributeID": 271,
+ "typeID": 52701,
+ "value": 1.0
+ },
+ {
+ "attributeID": 272,
+ "typeID": 52701,
+ "value": 0.5
+ },
+ {
+ "attributeID": 273,
+ "typeID": 52701,
+ "value": 0.6
+ },
+ {
+ "attributeID": 274,
+ "typeID": 52701,
+ "value": 0.8
+ },
+ {
+ "attributeID": 479,
+ "typeID": 52701,
+ "value": 11250000.0
+ },
+ {
+ "attributeID": 481,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 482,
+ "typeID": 52701,
+ "value": 131500.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 52701,
+ "value": 11800.0
+ },
+ {
+ "attributeID": 562,
+ "typeID": 52701,
+ "value": 0.1
+ },
+ {
+ "attributeID": 563,
+ "typeID": 52701,
+ "value": 5.0
+ },
+ {
+ "attributeID": 564,
+ "typeID": 52701,
+ "value": 112.0
+ },
+ {
+ "attributeID": 620,
+ "typeID": 52701,
+ "value": 40000.0
+ },
+ {
+ "attributeID": 797,
+ "typeID": 52701,
+ "value": 500000.0
+ },
+ {
+ "attributeID": 1785,
+ "typeID": 52701,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1945,
+ "typeID": 52701,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2244,
+ "typeID": 52701,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2433,
+ "typeID": 52701,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2629,
+ "typeID": 52701,
+ "value": 0.0
+ },
+ {
+ "attributeID": 2630,
+ "typeID": 52701,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 2631,
+ "typeID": 52701,
+ "value": 12000.0
+ },
+ {
+ "attributeID": 2632,
+ "typeID": 52701,
+ "value": 24000.0
+ },
+ {
+ "attributeID": 2633,
+ "typeID": 52701,
+ "value": 22500.0
+ },
+ {
+ "attributeID": 2634,
+ "typeID": 52701,
+ "value": 2500.0
+ },
+ {
+ "attributeID": 2635,
+ "typeID": 52701,
+ "value": 26880.0
+ },
+ {
+ "attributeID": 2638,
+ "typeID": 52701,
+ "value": -99.9999
+ },
+ {
+ "attributeID": 2639,
+ "typeID": 52701,
+ "value": -80.0
+ },
+ {
+ "attributeID": 2640,
+ "typeID": 52701,
+ "value": -70.0
+ },
+ {
+ "attributeID": 2641,
+ "typeID": 52701,
+ "value": -70.0
+ },
+ {
+ "attributeID": 2642,
+ "typeID": 52701,
+ "value": 1e-05
+ },
+ {
+ "attributeID": 2643,
+ "typeID": 52701,
+ "value": -100.0
+ },
+ {
+ "attributeID": 2644,
+ "typeID": 52701,
+ "value": 100.0
+ },
+ {
+ "attributeID": 2645,
+ "typeID": 52701,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2646,
+ "typeID": 52701,
+ "value": 10.0
+ },
+ {
+ "attributeID": 2647,
+ "typeID": 52701,
+ "value": 100.0
+ },
+ {
+ "attributeID": 2648,
+ "typeID": 52701,
+ "value": -50.0
+ },
+ {
+ "attributeID": 2649,
+ "typeID": 52701,
+ "value": 840.0
+ },
{
"attributeID": 4,
"typeID": 52785,
@@ -2889344,6 +2891039,396 @@
"typeID": 52790,
"value": 1.6
},
+ {
+ "attributeID": 4,
+ "typeID": 52797,
+ "value": 12750000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52797,
+ "value": 1500.0
+ },
+ {
+ "attributeID": 20,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 37,
+ "typeID": 52797,
+ "value": 350.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52797,
+ "value": 280.0
+ },
+ {
+ "attributeID": 51,
+ "typeID": 52797,
+ "value": 2500.0
+ },
+ {
+ "attributeID": 54,
+ "typeID": 52797,
+ "value": 20000.0
+ },
+ {
+ "attributeID": 55,
+ "typeID": 52797,
+ "value": 1000000.0
+ },
+ {
+ "attributeID": 64,
+ "typeID": 52797,
+ "value": 5.0
+ },
+ {
+ "attributeID": 79,
+ "typeID": 52797,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 114,
+ "typeID": 52797,
+ "value": 8.0
+ },
+ {
+ "attributeID": 116,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 117,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 118,
+ "typeID": 52797,
+ "value": 10.0
+ },
+ {
+ "attributeID": 158,
+ "typeID": 52797,
+ "value": 8000.0
+ },
+ {
+ "attributeID": 160,
+ "typeID": 52797,
+ "value": 0.0396
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52797,
+ "value": 118000.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52797,
+ "value": 134.43
+ },
+ {
+ "attributeID": 192,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 193,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 208,
+ "typeID": 52797,
+ "value": 20.0
+ },
+ {
+ "attributeID": 209,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 210,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 211,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 217,
+ "typeID": 52797,
+ "value": 397.0
+ },
+ {
+ "attributeID": 245,
+ "typeID": 52797,
+ "value": 459.0
+ },
+ {
+ "attributeID": 246,
+ "typeID": 52797,
+ "value": 397.0
+ },
+ {
+ "attributeID": 247,
+ "typeID": 52797,
+ "value": 35000.0
+ },
+ {
+ "attributeID": 250,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 252,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 263,
+ "typeID": 52797,
+ "value": 1200.0
+ },
+ {
+ "attributeID": 265,
+ "typeID": 52797,
+ "value": 1800.0
+ },
+ {
+ "attributeID": 267,
+ "typeID": 52797,
+ "value": 0.5
+ },
+ {
+ "attributeID": 268,
+ "typeID": 52797,
+ "value": 0.8
+ },
+ {
+ "attributeID": 269,
+ "typeID": 52797,
+ "value": 0.7
+ },
+ {
+ "attributeID": 270,
+ "typeID": 52797,
+ "value": 0.625
+ },
+ {
+ "attributeID": 271,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 272,
+ "typeID": 52797,
+ "value": 0.4
+ },
+ {
+ "attributeID": 273,
+ "typeID": 52797,
+ "value": 0.6
+ },
+ {
+ "attributeID": 274,
+ "typeID": 52797,
+ "value": 0.8
+ },
+ {
+ "attributeID": 416,
+ "typeID": 52797,
+ "value": 20000.0
+ },
+ {
+ "attributeID": 456,
+ "typeID": 52797,
+ "value": 4.0
+ },
+ {
+ "attributeID": 457,
+ "typeID": 52797,
+ "value": 6.0
+ },
+ {
+ "attributeID": 466,
+ "typeID": 52797,
+ "value": 0.7
+ },
+ {
+ "attributeID": 475,
+ "typeID": 52797,
+ "value": 1500.0
+ },
+ {
+ "attributeID": 476,
+ "typeID": 52797,
+ "value": 7500.0
+ },
+ {
+ "attributeID": 479,
+ "typeID": 52797,
+ "value": 1000000.0
+ },
+ {
+ "attributeID": 481,
+ "typeID": 52797,
+ "value": 120000.0
+ },
+ {
+ "attributeID": 482,
+ "typeID": 52797,
+ "value": 450.0
+ },
+ {
+ "attributeID": 484,
+ "typeID": 52797,
+ "value": 0.75
+ },
+ {
+ "attributeID": 497,
+ "typeID": 52797,
+ "value": 0.09
+ },
+ {
+ "attributeID": 504,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 508,
+ "typeID": 52797,
+ "value": 175.0
+ },
+ {
+ "attributeID": 524,
+ "typeID": 52797,
+ "value": 0.75
+ },
+ {
+ "attributeID": 525,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 52797,
+ "value": 125.0
+ },
+ {
+ "attributeID": 562,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 564,
+ "typeID": 52797,
+ "value": 275.0
+ },
+ {
+ "attributeID": 580,
+ "typeID": 52797,
+ "value": 15000.0
+ },
+ {
+ "attributeID": 581,
+ "typeID": 52797,
+ "value": 0.35
+ },
+ {
+ "attributeID": 582,
+ "typeID": 52797,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 583,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 620,
+ "typeID": 52797,
+ "value": 125.0
+ },
+ {
+ "attributeID": 630,
+ "typeID": 52797,
+ "value": 25000.0
+ },
+ {
+ "attributeID": 631,
+ "typeID": 52797,
+ "value": 400.0
+ },
+ {
+ "attributeID": 638,
+ "typeID": 52797,
+ "value": 0.6
+ },
+ {
+ "attributeID": 645,
+ "typeID": 52797,
+ "value": 1.5
+ },
+ {
+ "attributeID": 646,
+ "typeID": 52797,
+ "value": 1.5
+ },
+ {
+ "attributeID": 665,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 798,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 854,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1648,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1650,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1651,
+ "typeID": 52797,
+ "value": 0.0
+ },
+ {
+ "attributeID": 1652,
+ "typeID": 52797,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1656,
+ "typeID": 52797,
+ "value": 0.7
+ },
+ {
+ "attributeID": 1766,
+ "typeID": 52797,
+ "value": 26.0
+ },
+ {
+ "attributeID": 1855,
+ "typeID": 52797,
+ "value": 50.0
+ },
{
"attributeID": 4,
"typeID": 52813,
@@ -2889504,6 +2891589,1736 @@
"typeID": 52814,
"value": 18201.0
},
+ {
+ "attributeID": 4,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52815,
+ "value": 211250.0
+ },
+ {
+ "attributeID": 37,
+ "typeID": 52815,
+ "value": 100.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 51,
+ "typeID": 52815,
+ "value": 8147.449447
+ },
+ {
+ "attributeID": 54,
+ "typeID": 52815,
+ "value": 311850.0
+ },
+ {
+ "attributeID": 55,
+ "typeID": 52815,
+ "value": 3300000.0
+ },
+ {
+ "attributeID": 64,
+ "typeID": 52815,
+ "value": 52.22547103
+ },
+ {
+ "attributeID": 70,
+ "typeID": 52815,
+ "value": 0.0151875
+ },
+ {
+ "attributeID": 76,
+ "typeID": 52815,
+ "value": 355960.0
+ },
+ {
+ "attributeID": 90,
+ "typeID": 52815,
+ "value": 420.0
+ },
+ {
+ "attributeID": 109,
+ "typeID": 52815,
+ "value": 0.67
+ },
+ {
+ "attributeID": 110,
+ "typeID": 52815,
+ "value": 0.67
+ },
+ {
+ "attributeID": 111,
+ "typeID": 52815,
+ "value": 0.67
+ },
+ {
+ "attributeID": 113,
+ "typeID": 52815,
+ "value": 0.67
+ },
+ {
+ "attributeID": 114,
+ "typeID": 52815,
+ "value": 40.0
+ },
+ {
+ "attributeID": 116,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 117,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 118,
+ "typeID": 52815,
+ "value": 24.0
+ },
+ {
+ "attributeID": 158,
+ "typeID": 52815,
+ "value": 52500.0
+ },
+ {
+ "attributeID": 160,
+ "typeID": 52815,
+ "value": 0.007159789
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52815,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 192,
+ "typeID": 52815,
+ "value": 7.0
+ },
+ {
+ "attributeID": 208,
+ "typeID": 52815,
+ "value": 54.0
+ },
+ {
+ "attributeID": 209,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 210,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 211,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 245,
+ "typeID": 52815,
+ "value": 41118.0
+ },
+ {
+ "attributeID": 246,
+ "typeID": 52815,
+ "value": 397.0
+ },
+ {
+ "attributeID": 252,
+ "typeID": 52815,
+ "value": 0.5
+ },
+ {
+ "attributeID": 263,
+ "typeID": 52815,
+ "value": 140125.0
+ },
+ {
+ "attributeID": 265,
+ "typeID": 52815,
+ "value": 211250.0
+ },
+ {
+ "attributeID": 267,
+ "typeID": 52815,
+ "value": 0.359375
+ },
+ {
+ "attributeID": 268,
+ "typeID": 52815,
+ "value": 0.302224002
+ },
+ {
+ "attributeID": 269,
+ "typeID": 52815,
+ "value": 0.283335002
+ },
+ {
+ "attributeID": 270,
+ "typeID": 52815,
+ "value": 0.4671875
+ },
+ {
+ "attributeID": 271,
+ "typeID": 52815,
+ "value": 1.0
+ },
+ {
+ "attributeID": 272,
+ "typeID": 52815,
+ "value": 0.5
+ },
+ {
+ "attributeID": 273,
+ "typeID": 52815,
+ "value": 0.6
+ },
+ {
+ "attributeID": 274,
+ "typeID": 52815,
+ "value": 0.8
+ },
+ {
+ "attributeID": 479,
+ "typeID": 52815,
+ "value": 11250000.0
+ },
+ {
+ "attributeID": 481,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 482,
+ "typeID": 52815,
+ "value": 131500.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 52815,
+ "value": 11800.0
+ },
+ {
+ "attributeID": 562,
+ "typeID": 52815,
+ "value": 0.1
+ },
+ {
+ "attributeID": 563,
+ "typeID": 52815,
+ "value": 5.0
+ },
+ {
+ "attributeID": 564,
+ "typeID": 52815,
+ "value": 112.0
+ },
+ {
+ "attributeID": 620,
+ "typeID": 52815,
+ "value": 40000.0
+ },
+ {
+ "attributeID": 797,
+ "typeID": 52815,
+ "value": 500000.0
+ },
+ {
+ "attributeID": 1785,
+ "typeID": 52815,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1945,
+ "typeID": 52815,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2244,
+ "typeID": 52815,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2433,
+ "typeID": 52815,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2629,
+ "typeID": 52815,
+ "value": 0.0
+ },
+ {
+ "attributeID": 2630,
+ "typeID": 52815,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 2631,
+ "typeID": 52815,
+ "value": 12000.0
+ },
+ {
+ "attributeID": 2632,
+ "typeID": 52815,
+ "value": 24000.0
+ },
+ {
+ "attributeID": 2633,
+ "typeID": 52815,
+ "value": 22500.0
+ },
+ {
+ "attributeID": 2634,
+ "typeID": 52815,
+ "value": 2500.0
+ },
+ {
+ "attributeID": 2635,
+ "typeID": 52815,
+ "value": 26880.0
+ },
+ {
+ "attributeID": 2638,
+ "typeID": 52815,
+ "value": -99.9999
+ },
+ {
+ "attributeID": 2639,
+ "typeID": 52815,
+ "value": -80.0
+ },
+ {
+ "attributeID": 2640,
+ "typeID": 52815,
+ "value": -70.0
+ },
+ {
+ "attributeID": 2641,
+ "typeID": 52815,
+ "value": -70.0
+ },
+ {
+ "attributeID": 2642,
+ "typeID": 52815,
+ "value": 1e-05
+ },
+ {
+ "attributeID": 2643,
+ "typeID": 52815,
+ "value": -100.0
+ },
+ {
+ "attributeID": 2644,
+ "typeID": 52815,
+ "value": 100.0
+ },
+ {
+ "attributeID": 2645,
+ "typeID": 52815,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2646,
+ "typeID": 52815,
+ "value": 10.0
+ },
+ {
+ "attributeID": 2647,
+ "typeID": 52815,
+ "value": 100.0
+ },
+ {
+ "attributeID": 2648,
+ "typeID": 52815,
+ "value": -50.0
+ },
+ {
+ "attributeID": 2649,
+ "typeID": 52815,
+ "value": 840.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52842,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52842,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52842,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52842,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52842,
+ "value": 371.0
+ },
+ {
+ "attributeID": 250,
+ "typeID": 52842,
+ "value": 0.0
+ },
+ {
+ "attributeID": 263,
+ "typeID": 52842,
+ "value": 40000.0
+ },
+ {
+ "attributeID": 265,
+ "typeID": 52842,
+ "value": 80000.0
+ },
+ {
+ "attributeID": 267,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 268,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 269,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 270,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 271,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 272,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 273,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 274,
+ "typeID": 52842,
+ "value": 1.0
+ },
+ {
+ "attributeID": 456,
+ "typeID": 52842,
+ "value": 0.0
+ },
+ {
+ "attributeID": 457,
+ "typeID": 52842,
+ "value": 3.0
+ },
+ {
+ "attributeID": 479,
+ "typeID": 52842,
+ "value": 625000.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 52842,
+ "value": 8000.0
+ },
+ {
+ "attributeID": 3,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52907,
+ "value": 1275000000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52907,
+ "value": 130000.0
+ },
+ {
+ "attributeID": 11,
+ "typeID": 52907,
+ "value": 935000.0
+ },
+ {
+ "attributeID": 12,
+ "typeID": 52907,
+ "value": 8.0
+ },
+ {
+ "attributeID": 13,
+ "typeID": 52907,
+ "value": 4.0
+ },
+ {
+ "attributeID": 14,
+ "typeID": 52907,
+ "value": 3.0
+ },
+ {
+ "attributeID": 15,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 19,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 21,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 37,
+ "typeID": 52907,
+ "value": 80.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52907,
+ "value": 2400.0
+ },
+ {
+ "attributeID": 48,
+ "typeID": 52907,
+ "value": 840.0
+ },
+ {
+ "attributeID": 49,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 55,
+ "typeID": 52907,
+ "value": 4200000.0
+ },
+ {
+ "attributeID": 70,
+ "typeID": 52907,
+ "value": 0.044
+ },
+ {
+ "attributeID": 76,
+ "typeID": 52907,
+ "value": 102000.0
+ },
+ {
+ "attributeID": 79,
+ "typeID": 52907,
+ "value": 8300.0
+ },
+ {
+ "attributeID": 101,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 102,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 109,
+ "typeID": 52907,
+ "value": 0.67
+ },
+ {
+ "attributeID": 110,
+ "typeID": 52907,
+ "value": 0.67
+ },
+ {
+ "attributeID": 111,
+ "typeID": 52907,
+ "value": 0.67
+ },
+ {
+ "attributeID": 113,
+ "typeID": 52907,
+ "value": 0.67
+ },
+ {
+ "attributeID": 124,
+ "typeID": 52907,
+ "value": 16777215.0
+ },
+ {
+ "attributeID": 129,
+ "typeID": 52907,
+ "value": 999.0
+ },
+ {
+ "attributeID": 136,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 153,
+ "typeID": 52907,
+ "value": 1.38e-08
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52907,
+ "value": 18500000.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52907,
+ "value": 1700.0
+ },
+ {
+ "attributeID": 182,
+ "typeID": 52907,
+ "value": 20533.0
+ },
+ {
+ "attributeID": 183,
+ "typeID": 52907,
+ "value": 52997.0
+ },
+ {
+ "attributeID": 184,
+ "typeID": 52907,
+ "value": 3456.0
+ },
+ {
+ "attributeID": 192,
+ "typeID": 52907,
+ "value": 7.0
+ },
+ {
+ "attributeID": 208,
+ "typeID": 52907,
+ "value": 43.0
+ },
+ {
+ "attributeID": 209,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 210,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 211,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 217,
+ "typeID": 52907,
+ "value": 394.0
+ },
+ {
+ "attributeID": 246,
+ "typeID": 52907,
+ "value": 394.0
+ },
+ {
+ "attributeID": 263,
+ "typeID": 52907,
+ "value": 58800.0
+ },
+ {
+ "attributeID": 265,
+ "typeID": 52907,
+ "value": 170000.0
+ },
+ {
+ "attributeID": 267,
+ "typeID": 52907,
+ "value": 0.5
+ },
+ {
+ "attributeID": 268,
+ "typeID": 52907,
+ "value": 0.8
+ },
+ {
+ "attributeID": 269,
+ "typeID": 52907,
+ "value": 0.75
+ },
+ {
+ "attributeID": 270,
+ "typeID": 52907,
+ "value": 0.65
+ },
+ {
+ "attributeID": 271,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 272,
+ "typeID": 52907,
+ "value": 0.5
+ },
+ {
+ "attributeID": 273,
+ "typeID": 52907,
+ "value": 0.6
+ },
+ {
+ "attributeID": 274,
+ "typeID": 52907,
+ "value": 0.8
+ },
+ {
+ "attributeID": 277,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 278,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 279,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 283,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 422,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 479,
+ "typeID": 52907,
+ "value": 15000000.0
+ },
+ {
+ "attributeID": 482,
+ "typeID": 52907,
+ "value": 56000.0
+ },
+ {
+ "attributeID": 484,
+ "typeID": 52907,
+ "value": 0.75
+ },
+ {
+ "attributeID": 524,
+ "typeID": 52907,
+ "value": 0.75
+ },
+ {
+ "attributeID": 525,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 52907,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 564,
+ "typeID": 52907,
+ "value": 78.0
+ },
+ {
+ "attributeID": 600,
+ "typeID": 52907,
+ "value": 1.5
+ },
+ {
+ "attributeID": 633,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 661,
+ "typeID": 52907,
+ "value": 1000.0
+ },
+ {
+ "attributeID": 662,
+ "typeID": 52907,
+ "value": 0.5
+ },
+ {
+ "attributeID": 715,
+ "typeID": 52907,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 853,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 861,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 866,
+ "typeID": 52907,
+ "value": 16274.0
+ },
+ {
+ "attributeID": 867,
+ "typeID": 52907,
+ "value": 3.5
+ },
+ {
+ "attributeID": 868,
+ "typeID": 52907,
+ "value": 3000.0
+ },
+ {
+ "attributeID": 869,
+ "typeID": 52907,
+ "value": 300000.0
+ },
+ {
+ "attributeID": 874,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 898,
+ "typeID": 52907,
+ "value": 0.95
+ },
+ {
+ "attributeID": 907,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 908,
+ "typeID": 52907,
+ "value": 1000000.0
+ },
+ {
+ "attributeID": 911,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 912,
+ "typeID": 52907,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 1132,
+ "typeID": 52907,
+ "value": 400.0
+ },
+ {
+ "attributeID": 1137,
+ "typeID": 52907,
+ "value": 3.0
+ },
+ {
+ "attributeID": 1154,
+ "typeID": 52907,
+ "value": 3.0
+ },
+ {
+ "attributeID": 1178,
+ "typeID": 52907,
+ "value": 100.0
+ },
+ {
+ "attributeID": 1179,
+ "typeID": 52907,
+ "value": 0.01
+ },
+ {
+ "attributeID": 1196,
+ "typeID": 52907,
+ "value": 0.01
+ },
+ {
+ "attributeID": 1198,
+ "typeID": 52907,
+ "value": 0.01
+ },
+ {
+ "attributeID": 1199,
+ "typeID": 52907,
+ "value": 100.0
+ },
+ {
+ "attributeID": 1200,
+ "typeID": 52907,
+ "value": 100.0
+ },
+ {
+ "attributeID": 1224,
+ "typeID": 52907,
+ "value": 0.35
+ },
+ {
+ "attributeID": 1253,
+ "typeID": 52907,
+ "value": -5.0
+ },
+ {
+ "attributeID": 1259,
+ "typeID": 52907,
+ "value": 0.72
+ },
+ {
+ "attributeID": 1261,
+ "typeID": 52907,
+ "value": 0.7
+ },
+ {
+ "attributeID": 1262,
+ "typeID": 52907,
+ "value": 0.81
+ },
+ {
+ "attributeID": 1271,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 1281,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1547,
+ "typeID": 52907,
+ "value": 4.0
+ },
+ {
+ "attributeID": 1549,
+ "typeID": 52907,
+ "value": 8000.0
+ },
+ {
+ "attributeID": 1555,
+ "typeID": 52907,
+ "value": 4000.0
+ },
+ {
+ "attributeID": 1768,
+ "typeID": 52907,
+ "value": 11313.0
+ },
+ {
+ "attributeID": 1785,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1970,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1973,
+ "typeID": 52907,
+ "value": 0.0
+ },
+ {
+ "attributeID": 2021,
+ "typeID": 52907,
+ "value": 5.0
+ },
+ {
+ "attributeID": 2045,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2112,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2113,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2114,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2115,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2116,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2135,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2244,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2298,
+ "typeID": 52907,
+ "value": 100.0
+ },
+ {
+ "attributeID": 2299,
+ "typeID": 52907,
+ "value": -50.0
+ },
+ {
+ "attributeID": 2433,
+ "typeID": 52907,
+ "value": 1.0
+ },
+ {
+ "attributeID": 2754,
+ "typeID": 52907,
+ "value": 1e-05
+ },
+ {
+ "attributeID": 2829,
+ "typeID": 52907,
+ "value": -4.0
+ },
+ {
+ "attributeID": 2830,
+ "typeID": 52907,
+ "value": 5.0
+ },
+ {
+ "attributeID": 2831,
+ "typeID": 52907,
+ "value": -3.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52915,
+ "value": 40000.0
+ },
+ {
+ "attributeID": 6,
+ "typeID": 52915,
+ "value": 384.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52915,
+ "value": 40.0
+ },
+ {
+ "attributeID": 30,
+ "typeID": 52915,
+ "value": 825000.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52915,
+ "value": 5.0
+ },
+ {
+ "attributeID": 47,
+ "typeID": 52915,
+ "value": 1.0
+ },
+ {
+ "attributeID": 50,
+ "typeID": 52915,
+ "value": 480.0
+ },
+ {
+ "attributeID": 51,
+ "typeID": 52915,
+ "value": 12160.0
+ },
+ {
+ "attributeID": 54,
+ "typeID": 52915,
+ "value": 52000.0
+ },
+ {
+ "attributeID": 56,
+ "typeID": 52915,
+ "value": 1.0
+ },
+ {
+ "attributeID": 61,
+ "typeID": 52915,
+ "value": 0.0
+ },
+ {
+ "attributeID": 64,
+ "typeID": 52915,
+ "value": 2.55
+ },
+ {
+ "attributeID": 128,
+ "typeID": 52915,
+ "value": 4.0
+ },
+ {
+ "attributeID": 160,
+ "typeID": 52915,
+ "value": 0.0545
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52915,
+ "value": 1600.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52915,
+ "value": 1.0
+ },
+ {
+ "attributeID": 182,
+ "typeID": 52915,
+ "value": 52998.0
+ },
+ {
+ "attributeID": 183,
+ "typeID": 52915,
+ "value": 3300.0
+ },
+ {
+ "attributeID": 277,
+ "typeID": 52915,
+ "value": 1.0
+ },
+ {
+ "attributeID": 278,
+ "typeID": 52915,
+ "value": 5.0
+ },
+ {
+ "attributeID": 422,
+ "typeID": 52915,
+ "value": 1.0
+ },
+ {
+ "attributeID": 604,
+ "typeID": 52915,
+ "value": 1987.0
+ },
+ {
+ "attributeID": 620,
+ "typeID": 52915,
+ "value": 40000.0
+ },
+ {
+ "attributeID": 633,
+ "typeID": 52915,
+ "value": 0.0
+ },
+ {
+ "attributeID": 1180,
+ "typeID": 52915,
+ "value": 0.01
+ },
+ {
+ "attributeID": 1210,
+ "typeID": 52915,
+ "value": 15.0
+ },
+ {
+ "attributeID": 1211,
+ "typeID": 52915,
+ "value": 13.3
+ },
+ {
+ "attributeID": 1212,
+ "typeID": 52915,
+ "value": 1.0
+ },
+ {
+ "attributeID": 1302,
+ "typeID": 52915,
+ "value": 52907.0
+ },
+ {
+ "attributeID": 1768,
+ "typeID": 52915,
+ "value": 11313.0
+ },
+ {
+ "attributeID": 1795,
+ "typeID": 52915,
+ "value": 0.01
+ },
+ {
+ "attributeID": 2733,
+ "typeID": 52915,
+ "value": 0.05
+ },
+ {
+ "attributeID": 2734,
+ "typeID": 52915,
+ "value": 1.5
+ },
+ {
+ "attributeID": 3,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52916,
+ "value": 1.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 52916,
+ "value": 1.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 114,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 116,
+ "typeID": 52916,
+ "value": 644.0
+ },
+ {
+ "attributeID": 117,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 118,
+ "typeID": 52916,
+ "value": 980.0
+ },
+ {
+ "attributeID": 120,
+ "typeID": 52916,
+ "value": 1.1
+ },
+ {
+ "attributeID": 124,
+ "typeID": 52916,
+ "value": 11646664.0
+ },
+ {
+ "attributeID": 128,
+ "typeID": 52916,
+ "value": 4.0
+ },
+ {
+ "attributeID": 137,
+ "typeID": 52916,
+ "value": 1986.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52916,
+ "value": 0.01
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52916,
+ "value": 1.0
+ },
+ {
+ "attributeID": 244,
+ "typeID": 52916,
+ "value": 1.0
+ },
+ {
+ "attributeID": 317,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 422,
+ "typeID": 52916,
+ "value": 1.0
+ },
+ {
+ "attributeID": 612,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 613,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 779,
+ "typeID": 52916,
+ "value": 0.5
+ },
+ {
+ "attributeID": 1692,
+ "typeID": 52916,
+ "value": 0.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52997,
+ "value": 0.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52997,
+ "value": 0.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52997,
+ "value": 0.01
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52997,
+ "value": 1.0
+ },
+ {
+ "attributeID": 180,
+ "typeID": 52997,
+ "value": 167.0
+ },
+ {
+ "attributeID": 181,
+ "typeID": 52997,
+ "value": 168.0
+ },
+ {
+ "attributeID": 182,
+ "typeID": 52997,
+ "value": 20533.0
+ },
+ {
+ "attributeID": 183,
+ "typeID": 52997,
+ "value": 47869.0
+ },
+ {
+ "attributeID": 184,
+ "typeID": 52997,
+ "value": 22043.0
+ },
+ {
+ "attributeID": 275,
+ "typeID": 52997,
+ "value": 12.0
+ },
+ {
+ "attributeID": 277,
+ "typeID": 52997,
+ "value": 3.0
+ },
+ {
+ "attributeID": 278,
+ "typeID": 52997,
+ "value": 3.0
+ },
+ {
+ "attributeID": 279,
+ "typeID": 52997,
+ "value": 1.0
+ },
+ {
+ "attributeID": 280,
+ "typeID": 52997,
+ "value": 0.0
+ },
+ {
+ "attributeID": 1047,
+ "typeID": 52997,
+ "value": 1.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 52998,
+ "value": 0.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 52998,
+ "value": 0.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 52998,
+ "value": 0.01
+ },
+ {
+ "attributeID": 162,
+ "typeID": 52998,
+ "value": 1.0
+ },
+ {
+ "attributeID": 180,
+ "typeID": 52998,
+ "value": 167.0
+ },
+ {
+ "attributeID": 181,
+ "typeID": 52998,
+ "value": 168.0
+ },
+ {
+ "attributeID": 182,
+ "typeID": 52998,
+ "value": 3300.0
+ },
+ {
+ "attributeID": 183,
+ "typeID": 52998,
+ "value": 47872.0
+ },
+ {
+ "attributeID": 275,
+ "typeID": 52998,
+ "value": 7.0
+ },
+ {
+ "attributeID": 277,
+ "typeID": 52998,
+ "value": 5.0
+ },
+ {
+ "attributeID": 278,
+ "typeID": 52998,
+ "value": 5.0
+ },
+ {
+ "attributeID": 292,
+ "typeID": 52998,
+ "value": 5.0
+ },
+ {
+ "attributeID": 1047,
+ "typeID": 52998,
+ "value": 1.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 53025,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 53025,
+ "value": 15000.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 53025,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 53025,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 53025,
+ "value": 14.0
+ },
+ {
+ "attributeID": 525,
+ "typeID": 53025,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 53025,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 901,
+ "typeID": 53025,
+ "value": 10.0
+ },
+ {
+ "attributeID": 4,
+ "typeID": 53068,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 53068,
+ "value": 700.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 53068,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 53068,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 53068,
+ "value": 14.0
+ },
+ {
+ "attributeID": 525,
+ "typeID": 53068,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 53068,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 901,
+ "typeID": 53068,
+ "value": 30.0
+ },
+ {
+ "attributeID": 974,
+ "typeID": 53068,
+ "value": 0.001
+ },
+ {
+ "attributeID": 4,
+ "typeID": 53069,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 53069,
+ "value": 700.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 53069,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 53069,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 53069,
+ "value": 14.0
+ },
+ {
+ "attributeID": 525,
+ "typeID": 53069,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 53069,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 901,
+ "typeID": 53069,
+ "value": -10.0
+ },
+ {
+ "attributeID": 974,
+ "typeID": 53069,
+ "value": 0.001
+ },
+ {
+ "attributeID": 4,
+ "typeID": 53070,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 53070,
+ "value": 700.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 53070,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 53070,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 53070,
+ "value": 14.0
+ },
+ {
+ "attributeID": 525,
+ "typeID": 53070,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 53070,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 901,
+ "typeID": 53070,
+ "value": -10.0
+ },
+ {
+ "attributeID": 974,
+ "typeID": 53070,
+ "value": 0.001
+ },
+ {
+ "attributeID": 4,
+ "typeID": 53071,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 53071,
+ "value": 700.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 53071,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 53071,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 53071,
+ "value": 14.0
+ },
+ {
+ "attributeID": 525,
+ "typeID": 53071,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 53071,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 901,
+ "typeID": 53071,
+ "value": -10.0
+ },
+ {
+ "attributeID": 974,
+ "typeID": 53071,
+ "value": 0.001
+ },
+ {
+ "attributeID": 4,
+ "typeID": 53072,
+ "value": 10000.0
+ },
+ {
+ "attributeID": 9,
+ "typeID": 53072,
+ "value": 700.0
+ },
+ {
+ "attributeID": 38,
+ "typeID": 53072,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 161,
+ "typeID": 53072,
+ "value": 27500.0
+ },
+ {
+ "attributeID": 162,
+ "typeID": 53072,
+ "value": 14.0
+ },
+ {
+ "attributeID": 525,
+ "typeID": 53072,
+ "value": 1.0
+ },
+ {
+ "attributeID": 552,
+ "typeID": 53072,
+ "value": 5000.0
+ },
+ {
+ "attributeID": 901,
+ "typeID": 53072,
+ "value": 30.0
+ },
+ {
+ "attributeID": 974,
+ "typeID": 53072,
+ "value": 0.001
+ },
{
"attributeID": 4,
"typeID": 53287,
diff --git a/staticdata/bulkdata/dogmatypeeffects.json b/staticdata/bulkdata/dogmatypeeffects.json
index d4a84cc62..e98f063b6 100644
--- a/staticdata/bulkdata/dogmatypeeffects.json
+++ b/staticdata/bulkdata/dogmatypeeffects.json
@@ -212669,6 +212669,31 @@
"isDefault": true,
"typeID": 52694
},
+ {
+ "effectID": 7235,
+ "isDefault": false,
+ "typeID": 52700
+ },
+ {
+ "effectID": 10,
+ "isDefault": false,
+ "typeID": 52701
+ },
+ {
+ "effectID": 6882,
+ "isDefault": false,
+ "typeID": 52701
+ },
+ {
+ "effectID": 6884,
+ "isDefault": false,
+ "typeID": 52701
+ },
+ {
+ "effectID": 6885,
+ "isDefault": false,
+ "typeID": 52701
+ },
{
"effectID": 310,
"isDefault": false,
@@ -212774,6 +212799,16 @@
"isDefault": false,
"typeID": 52790
},
+ {
+ "effectID": 10,
+ "isDefault": true,
+ "typeID": 52797
+ },
+ {
+ "effectID": 878,
+ "isDefault": false,
+ "typeID": 52797
+ },
{
"effectID": 302,
"isDefault": false,
@@ -212824,6 +212859,131 @@
"isDefault": false,
"typeID": 52814
},
+ {
+ "effectID": 10,
+ "isDefault": false,
+ "typeID": 52815
+ },
+ {
+ "effectID": 6882,
+ "isDefault": false,
+ "typeID": 52815
+ },
+ {
+ "effectID": 6884,
+ "isDefault": false,
+ "typeID": 52815
+ },
+ {
+ "effectID": 6885,
+ "isDefault": false,
+ "typeID": 52815
+ },
+ {
+ "effectID": 6743,
+ "isDefault": false,
+ "typeID": 52842
+ },
+ {
+ "effectID": 7092,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 7093,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 7094,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 7112,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 7238,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 7239,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 7240,
+ "isDefault": false,
+ "typeID": 52907
+ },
+ {
+ "effectID": 12,
+ "isDefault": false,
+ "typeID": 52915
+ },
+ {
+ "effectID": 16,
+ "isDefault": false,
+ "typeID": 52915
+ },
+ {
+ "effectID": 42,
+ "isDefault": false,
+ "typeID": 52915
+ },
+ {
+ "effectID": 3025,
+ "isDefault": false,
+ "typeID": 52915
+ },
+ {
+ "effectID": 6995,
+ "isDefault": true,
+ "typeID": 52915
+ },
+ {
+ "effectID": 596,
+ "isDefault": false,
+ "typeID": 52916
+ },
+ {
+ "effectID": 804,
+ "isDefault": false,
+ "typeID": 52916
+ },
+ {
+ "effectID": 1173,
+ "isDefault": false,
+ "typeID": 52916
+ },
+ {
+ "effectID": 132,
+ "isDefault": true,
+ "typeID": 52997
+ },
+ {
+ "effectID": 7241,
+ "isDefault": false,
+ "typeID": 52997
+ },
+ {
+ "effectID": 132,
+ "isDefault": true,
+ "typeID": 52998
+ },
+ {
+ "effectID": 152,
+ "isDefault": false,
+ "typeID": 52998
+ },
+ {
+ "effectID": 7242,
+ "isDefault": false,
+ "typeID": 52998
+ },
{
"effectID": 302,
"isDefault": false,
diff --git a/staticdata/fsd_binary/marketgroups.json b/staticdata/fsd_binary/marketgroups.json
index 74a0d94e1..3d3753b88 100644
--- a/staticdata/fsd_binary/marketgroups.json
+++ b/staticdata/fsd_binary/marketgroups.json
@@ -14765,7 +14765,7 @@
"description": "Amarr Shuttle Skins",
"descriptionID": 315927,
"hasTypes": 1,
- "iconID": 2703,
+ "iconID": 20959,
"name": "Amarr",
"nameID": 315926,
"parentGroupID": 2315
diff --git a/staticdata/fsd_binary/metagroups.json b/staticdata/fsd_binary/metagroups.json
index ad1b90202..69187e6d8 100644
--- a/staticdata/fsd_binary/metagroups.json
+++ b/staticdata/fsd_binary/metagroups.json
@@ -5,7 +5,7 @@
},
"2": {
"iconID": 24150,
- "iconSuffix": "tech2",
+ "iconSuffix": "t2",
"name": "Tech II",
"nameID": 66673
},
@@ -65,7 +65,7 @@
},
"14": {
"iconID": 24151,
- "iconSuffix": "tech3",
+ "iconSuffix": "t3",
"name": "Tech III",
"nameID": 66685
},
@@ -93,19 +93,19 @@
},
"52": {
"iconID": 24155,
- "iconSuffix": "structureFaction",
+ "iconSuffix": "struct_faction",
"name": "Structure Faction",
"nameID": 550638
},
"53": {
"iconID": 24156,
- "iconSuffix": "structureTech2",
+ "iconSuffix": "struct_t2",
"name": "Structure Tech II",
"nameID": 550639
},
"54": {
"iconID": 24157,
- "iconSuffix": "structureTech1",
+ "iconSuffix": "struct",
"name": "Structure Tech I",
"nameID": 550644
}
diff --git a/staticdata/fsd_lite/evegroups.json b/staticdata/fsd_lite/evegroups.json
index e61524d39..10f4192f8 100644
--- a/staticdata/fsd_lite/evegroups.json
+++ b/staticdata/fsd_lite/evegroups.json
@@ -9477,6 +9477,50 @@
"published": false,
"useBasePrice": false
},
+ "4034": {
+ "anchorable": false,
+ "anchored": false,
+ "categoryID": 11,
+ "fittableNonSingleton": false,
+ "groupID": 4034,
+ "groupName": "Retaliating Amarr Entities",
+ "groupNameID": 552396,
+ "published": false,
+ "useBasePrice": false
+ },
+ "4035": {
+ "anchorable": false,
+ "anchored": false,
+ "categoryID": 11,
+ "fittableNonSingleton": false,
+ "groupID": 4035,
+ "groupName": "Retaliating Caldari Entities",
+ "groupNameID": 552397,
+ "published": false,
+ "useBasePrice": false
+ },
+ "4036": {
+ "anchorable": false,
+ "anchored": false,
+ "categoryID": 11,
+ "fittableNonSingleton": false,
+ "groupID": 4036,
+ "groupName": "Retaliating Gallente Entities",
+ "groupNameID": 552398,
+ "published": false,
+ "useBasePrice": false
+ },
+ "4037": {
+ "anchorable": false,
+ "anchored": false,
+ "categoryID": 11,
+ "fittableNonSingleton": false,
+ "groupID": 4037,
+ "groupName": "Retaliating Minmatar Entities",
+ "groupNameID": 552399,
+ "published": false,
+ "useBasePrice": false
+ },
"404": {
"anchorable": true,
"anchored": false,
diff --git a/staticdata/fsd_lite/evetypes.json b/staticdata/fsd_lite/evetypes.json
index 38d257434..5e092f5c2 100644
--- a/staticdata/fsd_lite/evetypes.json
+++ b/staticdata/fsd_lite/evetypes.json
@@ -2717,6 +2717,7 @@
"groupID": 177,
"marketGroupID": 358,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 10247,
@@ -5991,6 +5992,7 @@
"graphicID": 1814,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 11012,
@@ -6852,6 +6854,7 @@
"groupID": 724,
"iconID": 2053,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"typeID": 11074,
@@ -10499,6 +10502,7 @@
"graphicID": 1782,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"typeID": 11374,
@@ -10533,6 +10537,7 @@
"graphicID": 1770,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"typeID": 11376,
@@ -10711,6 +10716,7 @@
"graphicID": 1868,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"typeID": 11384,
@@ -10802,6 +10808,7 @@
"graphicID": 1913,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"typeID": 11390,
@@ -17731,6 +17738,7 @@
"graphicID": 4515,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 11937,
@@ -17770,6 +17778,7 @@
"graphicID": 2240,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 11939,
@@ -17996,6 +18005,7 @@
"iconID": 90,
"marketGroupID": 1555,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 1196,
@@ -19164,6 +19174,7 @@
"graphicID": 1966,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"typeID": 12037,
@@ -28443,6 +28454,7 @@
"graphicID": 11869,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 13203,
@@ -42264,6 +42276,7 @@
"iconID": 90,
"marketGroupID": 1557,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 1446,
@@ -52343,6 +52356,7 @@
"iconID": 70,
"marketGroupID": 1560,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 1540,
@@ -55138,6 +55152,7 @@
"groupID": 346,
"iconID": 1405,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15676,
@@ -55171,6 +55186,7 @@
"groupID": 346,
"iconID": 1405,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15678,
@@ -55205,6 +55221,7 @@
"groupID": 400,
"iconID": 21440,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15682,
@@ -55239,6 +55256,7 @@
"groupID": 400,
"iconID": 21440,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15684,
@@ -55273,6 +55291,7 @@
"groupID": 163,
"iconID": 20958,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15686,
@@ -55307,6 +55326,7 @@
"groupID": 163,
"iconID": 20956,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15688,
@@ -55341,6 +55361,7 @@
"groupID": 163,
"iconID": 20955,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15690,
@@ -55375,6 +55396,7 @@
"groupID": 163,
"iconID": 20957,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15692,
@@ -55409,6 +55431,7 @@
"groupID": 163,
"iconID": 1030,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15694,
@@ -55443,6 +55466,7 @@
"groupID": 163,
"iconID": 20958,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15696,
@@ -55477,6 +55501,7 @@
"groupID": 163,
"iconID": 20956,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15698,
@@ -55511,6 +55536,7 @@
"groupID": 163,
"iconID": 20955,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15700,
@@ -55545,6 +55571,7 @@
"groupID": 163,
"iconID": 20957,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15702,
@@ -55579,6 +55606,7 @@
"groupID": 163,
"iconID": 1030,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15704,
@@ -55613,6 +55641,7 @@
"groupID": 348,
"iconID": 20946,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15706,
@@ -55647,6 +55676,7 @@
"groupID": 348,
"iconID": 20945,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15708,
@@ -55681,6 +55711,7 @@
"groupID": 348,
"iconID": 20943,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15710,
@@ -55715,6 +55746,7 @@
"groupID": 348,
"iconID": 20944,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15712,
@@ -55749,6 +55781,7 @@
"groupID": 348,
"iconID": 20946,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15714,
@@ -55783,6 +55816,7 @@
"groupID": 348,
"iconID": 20945,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15716,
@@ -55817,6 +55851,7 @@
"groupID": 348,
"iconID": 20943,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15718,
@@ -55851,6 +55886,7 @@
"groupID": 348,
"iconID": 20944,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15720,
@@ -55885,6 +55921,7 @@
"groupID": 163,
"iconID": 20954,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15722,
@@ -55919,6 +55956,7 @@
"groupID": 163,
"iconID": 20952,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15724,
@@ -55953,6 +55991,7 @@
"groupID": 163,
"iconID": 20951,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15726,
@@ -55987,6 +56026,7 @@
"groupID": 163,
"iconID": 20953,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15728,
@@ -56021,6 +56061,7 @@
"groupID": 163,
"iconID": 2066,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15730,
@@ -56055,6 +56096,7 @@
"groupID": 163,
"iconID": 20954,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15732,
@@ -56089,6 +56131,7 @@
"groupID": 163,
"iconID": 20952,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15734,
@@ -56123,6 +56166,7 @@
"groupID": 163,
"iconID": 20951,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15736,
@@ -56157,6 +56201,7 @@
"groupID": 163,
"iconID": 20953,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15738,
@@ -56191,6 +56236,7 @@
"groupID": 163,
"iconID": 2066,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15740,
@@ -56352,6 +56398,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -56388,6 +56435,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15750,
@@ -56423,6 +56471,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -56459,6 +56508,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15754,
@@ -56494,6 +56544,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -56530,6 +56581,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15758,
@@ -56565,6 +56617,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -56601,6 +56654,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15762,
@@ -56636,6 +56690,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -56672,6 +56727,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15767,
@@ -56707,6 +56763,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -56743,6 +56800,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15771,
@@ -56776,6 +56834,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15773,
@@ -56829,6 +56888,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15777,
@@ -56862,6 +56922,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15779,
@@ -56895,6 +56956,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15781,
@@ -56928,6 +56990,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15783,
@@ -56961,6 +57024,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15785,
@@ -56994,6 +57058,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15787,
@@ -57027,6 +57092,7 @@
"groupID": 123,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15789,
@@ -57060,6 +57126,7 @@
"groupID": 401,
"iconID": 2106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15791,
@@ -57093,6 +57160,7 @@
"groupID": 224,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15793,
@@ -57126,6 +57194,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15795,
@@ -57159,6 +57228,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15797,
@@ -57192,6 +57262,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15799,
@@ -57225,6 +57296,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15801,
@@ -57258,6 +57330,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15803,
@@ -57291,6 +57364,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15805,
@@ -57324,6 +57398,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15807,
@@ -57357,6 +57432,7 @@
"groupID": 218,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15809,
@@ -57390,6 +57466,7 @@
"groupID": 218,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15811,
@@ -57561,6 +57638,7 @@
"groupID": 154,
"iconID": 366,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15819,
@@ -57619,6 +57697,7 @@
"groupID": 154,
"iconID": 370,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15822,
@@ -57999,6 +58078,7 @@
"groupID": 154,
"iconID": 366,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15839,
@@ -58057,6 +58137,7 @@
"groupID": 154,
"iconID": 370,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15842,
@@ -58797,6 +58878,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -58832,6 +58914,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -58867,6 +58950,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -58902,6 +58986,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -58937,6 +59022,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -58972,6 +59058,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -59006,6 +59093,7 @@
"groupID": 132,
"iconID": 3433,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15888,
@@ -59039,6 +59127,7 @@
"groupID": 132,
"iconID": 111,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15890,
@@ -59072,6 +59161,7 @@
"groupID": 132,
"iconID": 111,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15892,
@@ -59105,6 +59195,7 @@
"groupID": 132,
"iconID": 3433,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15894,
@@ -59138,6 +59229,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15896,
@@ -59348,6 +59440,7 @@
"groupID": 360,
"iconID": 2104,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15906,
@@ -59382,6 +59475,7 @@
"groupID": 360,
"iconID": 2104,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15908,
@@ -59415,6 +59509,7 @@
"groupID": 296,
"iconID": 20942,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15910,
@@ -59448,6 +59543,7 @@
"groupID": 296,
"iconID": 20939,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15912,
@@ -59481,6 +59577,7 @@
"groupID": 296,
"iconID": 20940,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15914,
@@ -59514,6 +59611,7 @@
"groupID": 296,
"iconID": 20941,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15916,
@@ -59547,6 +59645,7 @@
"groupID": 296,
"iconID": 20942,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15918,
@@ -59580,6 +59679,7 @@
"groupID": 296,
"iconID": 20939,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15920,
@@ -59613,6 +59713,7 @@
"groupID": 296,
"iconID": 20940,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15922,
@@ -59646,6 +59747,7 @@
"groupID": 296,
"iconID": 20941,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15924,
@@ -59681,6 +59783,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15926,
@@ -59716,6 +59819,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15928,
@@ -59751,6 +59855,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15930,
@@ -59786,6 +59891,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15932,
@@ -59843,6 +59949,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15936,
@@ -59878,6 +59985,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15938,
@@ -59913,6 +60021,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15940,
@@ -59948,6 +60057,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15942,
@@ -60005,6 +60115,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15946,
@@ -60040,6 +60151,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15948,
@@ -60075,6 +60187,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15950,
@@ -60132,6 +60245,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15954,
@@ -60167,6 +60281,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15956,
@@ -60202,6 +60317,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15958,
@@ -60237,6 +60353,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15960,
@@ -60272,6 +60389,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15962,
@@ -60307,6 +60425,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15964,
@@ -60340,6 +60459,7 @@
"groupID": 344,
"iconID": 1640,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15966,
@@ -60373,6 +60493,7 @@
"groupID": 345,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 15968,
@@ -62034,6 +62155,7 @@
"groupID": 136,
"iconID": 2530,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 16063,
@@ -62090,6 +62212,7 @@
"groupID": 136,
"iconID": 1345,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 16066,
@@ -82924,6 +83047,7 @@
"groupID": 136,
"iconID": 2530,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17486,
@@ -82980,6 +83104,7 @@
"groupID": 136,
"iconID": 1345,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17489,
@@ -83226,6 +83351,7 @@
"groupID": 145,
"iconID": 1284,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17501,
@@ -83260,6 +83386,7 @@
"groupID": 348,
"iconID": 20944,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17503,
@@ -83294,6 +83421,7 @@
"groupID": 348,
"iconID": 20943,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17505,
@@ -83328,6 +83456,7 @@
"groupID": 348,
"iconID": 20945,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17507,
@@ -83362,6 +83491,7 @@
"groupID": 348,
"iconID": 20946,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17509,
@@ -83396,6 +83526,7 @@
"groupID": 137,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17511,
@@ -83430,6 +83561,7 @@
"groupID": 163,
"iconID": 20957,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17513,
@@ -83464,6 +83596,7 @@
"groupID": 163,
"iconID": 1030,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17515,
@@ -83498,6 +83631,7 @@
"groupID": 163,
"iconID": 20955,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17517,
@@ -83532,6 +83666,7 @@
"groupID": 163,
"iconID": 20956,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17519,
@@ -83566,6 +83701,7 @@
"groupID": 223,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17521,
@@ -83600,6 +83736,7 @@
"groupID": 137,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17523,
@@ -83634,6 +83771,7 @@
"groupID": 137,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17525,
@@ -83667,6 +83805,7 @@
"groupID": 123,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17527,
@@ -83701,6 +83840,7 @@
"groupID": 137,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17529,
@@ -83735,6 +83875,7 @@
"groupID": 163,
"iconID": 2066,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17537,
@@ -83769,6 +83910,7 @@
"groupID": 163,
"iconID": 20953,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17539,
@@ -83803,6 +83945,7 @@
"groupID": 163,
"iconID": 20951,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17541,
@@ -83837,6 +83980,7 @@
"groupID": 163,
"iconID": 20952,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17543,
@@ -83871,6 +84015,7 @@
"groupID": 163,
"iconID": 20954,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17545,
@@ -83968,6 +84113,7 @@
"groupID": 163,
"iconID": 1030,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17550,
@@ -84002,6 +84148,7 @@
"groupID": 163,
"iconID": 20957,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17552,
@@ -84036,6 +84183,7 @@
"groupID": 163,
"iconID": 20955,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17554,
@@ -84070,6 +84218,7 @@
"groupID": 163,
"iconID": 20956,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17556,
@@ -84104,6 +84253,7 @@
"groupID": 163,
"iconID": 20958,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17558,
@@ -84138,6 +84288,7 @@
"groupID": 145,
"iconID": 1284,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17561,
@@ -85006,6 +85157,7 @@
"graphicID": 2633,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17620,
@@ -85266,6 +85418,7 @@
"graphicID": 1786,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17635,
@@ -85306,6 +85459,7 @@
"graphicID": 2123,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17637,
@@ -86348,6 +86502,7 @@
"graphicID": 1067,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17704,
@@ -86458,6 +86613,7 @@
"graphicID": 1731,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17710,
@@ -86498,6 +86654,7 @@
"graphicID": 1884,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17714,
@@ -86538,6 +86695,7 @@
"graphicID": 1824,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17716,
@@ -86577,6 +86735,7 @@
"graphicID": 1236,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17719,
@@ -86616,6 +86775,7 @@
"graphicID": 337,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17721,
@@ -86656,6 +86816,7 @@
"graphicID": 1815,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17723,
@@ -86696,6 +86857,7 @@
"graphicID": 2239,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17727,
@@ -86736,6 +86898,7 @@
"graphicID": 2139,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17729,
@@ -86776,6 +86939,7 @@
"graphicID": 2642,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17733,
@@ -86815,6 +86979,7 @@
"graphicID": 2295,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17737,
@@ -86854,6 +87019,7 @@
"graphicID": 335,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17739,
@@ -86894,6 +87060,7 @@
"graphicID": 2157,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17741,
@@ -87808,6 +87975,7 @@
"graphicID": 2635,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17813,
@@ -88111,6 +88279,7 @@
"groupID": 348,
"iconID": 20944,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17833,
@@ -88145,6 +88314,7 @@
"groupID": 348,
"iconID": 20943,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17835,
@@ -88179,6 +88349,7 @@
"groupID": 348,
"iconID": 20945,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17837,
@@ -88213,6 +88384,7 @@
"groupID": 348,
"iconID": 20946,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17839,
@@ -88268,6 +88440,7 @@
"graphicID": 2634,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17842,
@@ -88309,6 +88482,7 @@
"graphicID": 1803,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17844,
@@ -89421,6 +89595,7 @@
"graphicID": 2159,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17919,
@@ -89461,6 +89636,7 @@
"graphicID": 2122,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17921,
@@ -89500,6 +89676,7 @@
"graphicID": 2636,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17923,
@@ -89539,6 +89716,7 @@
"graphicID": 1237,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17925,
@@ -89578,6 +89756,7 @@
"graphicID": 2632,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17927,
@@ -89617,6 +89796,7 @@
"graphicID": 20301,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17929,
@@ -89657,6 +89837,7 @@
"graphicID": 1831,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17931,
@@ -89696,6 +89877,7 @@
"graphicID": 338,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 17933,
@@ -105791,6 +105973,7 @@
"groupID": 504,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 19811,
@@ -105825,6 +106008,7 @@
"groupID": 504,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 19813,
@@ -105859,6 +106043,7 @@
"groupID": 504,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 19815,
@@ -106815,6 +107000,7 @@
"groupID": 165,
"iconID": 1292,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 19995,
@@ -106960,6 +107146,7 @@
"groupID": 165,
"iconID": 1299,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 20003,
@@ -109287,6 +109474,7 @@
"groupID": 131,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20219,
@@ -109378,6 +109566,7 @@
"groupID": 131,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20225,
@@ -109464,6 +109653,7 @@
"groupID": 131,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20231,
@@ -109537,6 +109727,7 @@
"groupID": 131,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20237,
@@ -109570,6 +109761,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20239,
@@ -109623,6 +109815,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20241,
@@ -109656,6 +109849,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20243,
@@ -109689,6 +109883,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20245,
@@ -109722,6 +109917,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20247,
@@ -109755,6 +109951,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20249,
@@ -109803,6 +110000,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20251,
@@ -109836,6 +110034,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20253,
@@ -109869,6 +110068,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20255,
@@ -109918,6 +110118,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20261,
@@ -109951,6 +110152,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20263,
@@ -109984,6 +110186,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 20265,
@@ -112558,6 +112761,7 @@
"iconID": 77,
"marketGroupID": 1542,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 2047,
@@ -113993,6 +114197,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20556,
@@ -114026,6 +114231,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20558,
@@ -114075,6 +114281,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20560,
@@ -114108,6 +114315,7 @@
"groupID": 401,
"iconID": 2106,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20562,
@@ -114141,7 +114349,7 @@
"groupID": 401,
"iconID": 2106,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"techLevel": 2,
@@ -114176,7 +114384,7 @@
"groupID": 401,
"iconID": 2106,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"techLevel": 2,
@@ -114211,6 +114419,7 @@
"groupID": 346,
"iconID": 1405,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20568,
@@ -114260,6 +114469,7 @@
"groupID": 346,
"iconID": 1405,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20570,
@@ -114294,6 +114504,7 @@
"groupID": 130,
"iconID": 3227,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -114329,6 +114540,7 @@
"groupID": 130,
"iconID": 3228,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -114364,6 +114576,7 @@
"groupID": 130,
"iconID": 3226,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -114415,6 +114628,7 @@
"groupID": 130,
"iconID": 3229,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -114450,6 +114664,7 @@
"groupID": 160,
"iconID": 109,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -114486,6 +114701,7 @@
"groupID": 154,
"iconID": 349,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20588,
@@ -114537,6 +114753,7 @@
"groupID": 154,
"iconID": 370,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20590,
@@ -114572,6 +114789,7 @@
"groupID": 154,
"iconID": 366,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20592,
@@ -114606,6 +114824,7 @@
"groupID": 136,
"iconID": 1345,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20594,
@@ -114640,6 +114859,7 @@
"groupID": 136,
"iconID": 168,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20596,
@@ -114674,6 +114894,7 @@
"groupID": 136,
"iconID": 1345,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20598,
@@ -114745,6 +114966,7 @@
"groupID": 136,
"iconID": 169,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20600,
@@ -114780,6 +115002,7 @@
"groupID": 136,
"iconID": 2530,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20602,
@@ -114815,6 +115038,7 @@
"groupID": 136,
"iconID": 170,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20604,
@@ -114848,6 +115072,7 @@
"groupID": 296,
"iconID": 20941,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20606,
@@ -114881,6 +115106,7 @@
"groupID": 296,
"iconID": 20940,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20608,
@@ -114930,6 +115156,7 @@
"groupID": 296,
"iconID": 20939,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20610,
@@ -114963,6 +115190,7 @@
"groupID": 296,
"iconID": 20942,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20612,
@@ -114997,6 +115225,7 @@
"groupID": 360,
"iconID": 2104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20614,
@@ -115031,6 +115260,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20618,
@@ -115081,6 +115311,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20620,
@@ -115115,6 +115346,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20622,
@@ -115149,6 +115381,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20624,
@@ -115182,6 +115415,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20626,
@@ -115216,6 +115450,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -115268,6 +115503,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20630,
@@ -115301,6 +115537,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20632,
@@ -115334,6 +115571,7 @@
"groupID": 157,
"iconID": 20949,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20634,
@@ -115367,6 +115605,7 @@
"groupID": 157,
"iconID": 20950,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20636,
@@ -115400,6 +115639,7 @@
"groupID": 157,
"iconID": 81,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20638,
@@ -115448,6 +115688,7 @@
"groupID": 157,
"iconID": 20948,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20640,
@@ -115481,6 +115722,7 @@
"groupID": 157,
"iconID": 20947,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 20642,
@@ -121316,6 +121558,7 @@
"graphicID": 317,
"groupID": 111,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"typeID": 21098,
@@ -124576,6 +124819,7 @@
"groupID": 167,
"iconID": 1047,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 21335,
@@ -126283,6 +126527,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21471,
@@ -126318,6 +126563,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126354,6 +126600,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126390,6 +126637,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126426,6 +126674,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126480,6 +126729,7 @@
"groupID": 126,
"iconID": 10149,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126513,6 +126763,7 @@
"groupID": 400,
"iconID": 21440,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -126548,6 +126799,7 @@
"groupID": 400,
"iconID": 21440,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -126583,6 +126835,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -126616,6 +126869,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -126688,6 +126942,7 @@
"groupID": 158,
"iconID": 98,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126724,6 +126979,7 @@
"groupID": 158,
"iconID": 92,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126778,6 +127034,7 @@
"groupID": 158,
"iconID": 76,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126814,6 +127071,7 @@
"groupID": 158,
"iconID": 1041,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126886,6 +127144,7 @@
"groupID": 158,
"iconID": 1042,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -126953,6 +127212,7 @@
"groupID": 143,
"iconID": 21378,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21505,
@@ -126986,6 +127246,7 @@
"groupID": 143,
"iconID": 21378,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21507,
@@ -127019,6 +127280,7 @@
"groupID": 143,
"iconID": 21378,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21509,
@@ -127071,6 +127333,7 @@
"groupID": 132,
"iconID": 111,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -127105,6 +127368,7 @@
"groupID": 132,
"iconID": 3433,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21513,
@@ -127269,6 +127533,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -127303,6 +127568,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -127337,6 +127603,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -127372,6 +127639,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -127424,6 +127692,7 @@
"groupID": 347,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -127497,6 +127766,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21535,
@@ -127532,6 +127802,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21537,
@@ -127567,6 +127838,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21539,
@@ -127619,6 +127891,7 @@
"groupID": 504,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -127654,6 +127927,7 @@
"groupID": 136,
"iconID": 1345,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21543,
@@ -127704,6 +127978,7 @@
"groupID": 135,
"iconID": 387,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21546,
@@ -127739,6 +128014,7 @@
"groupID": 135,
"iconID": 389,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21548,
@@ -127792,6 +128068,7 @@
"groupID": 135,
"iconID": 389,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21550,
@@ -127827,6 +128104,7 @@
"groupID": 135,
"iconID": 386,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21552,
@@ -127862,6 +128140,7 @@
"groupID": 135,
"iconID": 384,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21554,
@@ -127897,6 +128176,7 @@
"groupID": 135,
"iconID": 384,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21556,
@@ -127932,6 +128212,7 @@
"groupID": 135,
"iconID": 381,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21558,
@@ -127985,6 +128266,7 @@
"groupID": 135,
"iconID": 379,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21560,
@@ -128020,6 +128302,7 @@
"groupID": 135,
"iconID": 379,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 21562,
@@ -129165,6 +129448,7 @@
"graphicID": 20231,
"groupID": 111,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 21629,
@@ -132883,6 +133167,7 @@
"groupID": 158,
"iconID": 92,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -132920,6 +133205,7 @@
"groupID": 126,
"iconID": 96,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -146252,6 +146538,7 @@
"groupID": 342,
"iconID": 97,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22876,
@@ -146285,6 +146572,7 @@
"groupID": 342,
"iconID": 97,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22878,
@@ -146335,6 +146623,7 @@
"groupID": 163,
"iconID": 2066,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22880,
@@ -146369,6 +146658,7 @@
"groupID": 163,
"iconID": 20954,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22882,
@@ -146403,6 +146693,7 @@
"groupID": 163,
"iconID": 20953,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22884,
@@ -146467,6 +146758,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22888,
@@ -146518,6 +146810,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22890,
@@ -146551,6 +146844,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22892,
@@ -146583,6 +146877,7 @@
"groupID": 140,
"iconID": 77,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -146618,6 +146913,7 @@
"groupID": 223,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -146652,6 +146948,7 @@
"groupID": 131,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -146720,6 +147017,7 @@
"groupID": 154,
"iconID": 376,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22900,
@@ -146755,6 +147053,7 @@
"groupID": 154,
"iconID": 376,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22902,
@@ -146790,6 +147089,7 @@
"groupID": 154,
"iconID": 376,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"typeID": 22904,
@@ -146825,6 +147125,7 @@
"groupID": 154,
"iconID": 371,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22906,
@@ -146860,6 +147161,7 @@
"groupID": 154,
"iconID": 371,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22908,
@@ -146913,6 +147215,7 @@
"groupID": 154,
"iconID": 371,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22910,
@@ -146948,6 +147251,7 @@
"groupID": 154,
"iconID": 365,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22912,
@@ -146983,6 +147287,7 @@
"groupID": 154,
"iconID": 365,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22914,
@@ -147018,6 +147323,7 @@
"groupID": 154,
"iconID": 365,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22916,
@@ -147050,6 +147356,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -147099,6 +147406,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147197,6 +147505,7 @@
"groupID": 223,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147230,6 +147539,7 @@
"groupID": 224,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -147283,6 +147593,7 @@
"groupID": 224,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147320,6 +147631,7 @@
"groupID": 343,
"iconID": 21437,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147354,6 +147666,7 @@
"groupID": 343,
"iconID": 1639,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22934,
@@ -147386,6 +147699,7 @@
"groupID": 345,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -147420,6 +147734,7 @@
"groupID": 345,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22938,
@@ -147465,6 +147780,7 @@
"groupID": 223,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -147497,6 +147813,7 @@
"groupID": 223,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -147530,6 +147847,7 @@
"groupID": 223,
"iconID": 105,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -147565,6 +147883,7 @@
"groupID": 223,
"iconID": 105,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147602,6 +147921,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147657,6 +147977,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -147693,6 +148014,7 @@
"iconID": 21426,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -147728,6 +148050,7 @@
"groupID": 137,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 22954,
@@ -149231,6 +149554,7 @@
"groupID": 168,
"iconID": 1131,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 23072,
@@ -155033,6 +155357,7 @@
"iconID": 21426,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -155070,6 +155395,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -155105,6 +155431,7 @@
"groupID": 140,
"iconID": 77,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161229,6 +161556,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -161265,6 +161593,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -161301,6 +161630,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -161356,6 +161686,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -161392,6 +161723,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -161428,6 +161760,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -161462,6 +161795,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23796,
@@ -161495,6 +161829,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23798,
@@ -161547,6 +161882,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23800,
@@ -161581,6 +161917,7 @@
"groupID": 141,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161616,6 +161953,7 @@
"groupID": 141,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161651,6 +161989,7 @@
"groupID": 141,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161685,6 +162024,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23808,
@@ -161737,6 +162077,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23810,
@@ -161770,6 +162111,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23812,
@@ -161803,6 +162145,7 @@
"groupID": 123,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23814,
@@ -161837,6 +162180,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161872,6 +162216,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161926,6 +162271,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161961,6 +162307,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -161996,6 +162343,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -162102,6 +162450,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -162188,6 +162537,7 @@
"groupID": 133,
"iconID": 352,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23835,
@@ -162222,6 +162572,7 @@
"groupID": 133,
"iconID": 350,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23837,
@@ -162256,6 +162607,7 @@
"groupID": 133,
"iconID": 352,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23839,
@@ -162309,6 +162661,7 @@
"groupID": 133,
"iconID": 355,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23841,
@@ -162343,6 +162696,7 @@
"groupID": 133,
"iconID": 356,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23843,
@@ -162377,6 +162731,7 @@
"groupID": 133,
"iconID": 355,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23845,
@@ -162411,6 +162766,7 @@
"groupID": 133,
"iconID": 360,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23847,
@@ -162445,6 +162801,7 @@
"groupID": 133,
"iconID": 361,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23849,
@@ -162498,6 +162855,7 @@
"groupID": 133,
"iconID": 361,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23851,
@@ -162532,6 +162890,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23853,
@@ -162566,6 +162925,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23855,
@@ -162600,6 +162960,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23857,
@@ -162721,6 +163082,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23865,
@@ -162756,6 +163118,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23867,
@@ -162791,6 +163154,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23869,
@@ -163142,6 +163506,7 @@
"groupID": 137,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23895,
@@ -163176,6 +163541,7 @@
"groupID": 137,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23897,
@@ -163210,6 +163576,7 @@
"groupID": 137,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 23899,
@@ -163276,6 +163643,7 @@
"groupID": 218,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -163310,6 +163678,7 @@
"groupID": 218,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -187088,6 +187457,7 @@
"groupID": 134,
"iconID": 3074,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 25541,
@@ -187123,6 +187493,7 @@
"groupID": 134,
"iconID": 3074,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 25543,
@@ -203597,6 +203968,7 @@
"groupID": 134,
"iconID": 1061,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": false,
"typeID": 26607,
@@ -206487,6 +206859,7 @@
"graphicID": 3205,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 26843,
@@ -217650,6 +218023,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27677,
@@ -217711,6 +218085,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27680,
@@ -217724,6 +218099,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27681,
@@ -217737,6 +218113,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27682,
@@ -217750,6 +218127,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27684,
@@ -217763,6 +218141,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27685,
@@ -217776,6 +218155,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27688,
@@ -217789,6 +218169,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27689,
@@ -217816,6 +218197,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27690,
@@ -217829,6 +218211,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27694,
@@ -217842,6 +218225,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27695,
@@ -217855,6 +218239,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27696,
@@ -217868,6 +218253,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27697,
@@ -217881,6 +218267,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27698,
@@ -217894,6 +218281,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27699,
@@ -217921,6 +218309,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27703,
@@ -217934,6 +218323,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27704,
@@ -217947,6 +218337,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27705,
@@ -217960,6 +218351,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27706,
@@ -217973,6 +218365,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27707,
@@ -217986,6 +218379,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27708,
@@ -218013,6 +218407,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27712,
@@ -218026,6 +218421,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27713,
@@ -218039,6 +218435,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27714,
@@ -219304,6 +219701,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27781,
@@ -219337,6 +219735,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27783,
@@ -219370,6 +219769,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27785,
@@ -219403,6 +219803,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27787,
@@ -219436,6 +219837,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27789,
@@ -219484,6 +219886,7 @@
"groupID": 841,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27791,
@@ -219723,6 +220126,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27807,
@@ -219736,6 +220140,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27808,
@@ -219749,6 +220154,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27809,
@@ -219777,6 +220183,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27810,
@@ -219790,6 +220197,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27811,
@@ -219803,6 +220211,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27812,
@@ -219816,6 +220225,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27813,
@@ -219829,6 +220239,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27814,
@@ -219842,6 +220253,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27815,
@@ -219855,6 +220267,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27816,
@@ -219868,6 +220281,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27817,
@@ -219881,6 +220295,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27818,
@@ -219894,6 +220309,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27819,
@@ -219922,6 +220338,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27820,
@@ -219935,6 +220352,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27821,
@@ -219948,6 +220366,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27822,
@@ -219961,6 +220380,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27823,
@@ -219974,6 +220394,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27824,
@@ -219987,6 +220408,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27825,
@@ -220000,6 +220422,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27826,
@@ -220013,6 +220436,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27827,
@@ -220026,6 +220450,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27828,
@@ -220039,6 +220464,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27829,
@@ -220067,6 +220493,7 @@
"groupID": 853,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27830,
@@ -220080,6 +220507,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27831,
@@ -220093,6 +220521,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27832,
@@ -220106,6 +220535,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27833,
@@ -220119,6 +220549,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27834,
@@ -220132,6 +220563,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27835,
@@ -220145,6 +220577,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27836,
@@ -220158,6 +220591,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27837,
@@ -220171,6 +220605,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27838,
@@ -220184,6 +220619,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27839,
@@ -220212,6 +220648,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27840,
@@ -220225,6 +220662,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27841,
@@ -220238,6 +220676,7 @@
"groupID": 854,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27842,
@@ -220251,6 +220690,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27843,
@@ -220264,6 +220704,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27844,
@@ -220277,6 +220718,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27845,
@@ -220290,6 +220732,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27846,
@@ -220303,6 +220746,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27847,
@@ -220316,6 +220760,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27848,
@@ -220329,6 +220774,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27849,
@@ -220357,6 +220803,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27850,
@@ -220370,6 +220817,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27851,
@@ -220383,6 +220831,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27852,
@@ -220396,6 +220845,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27853,
@@ -220409,6 +220859,7 @@
"groupID": 855,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27854,
@@ -220498,6 +220949,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27859,
@@ -220527,6 +220979,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27860,
@@ -220540,6 +220993,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27861,
@@ -220553,6 +221007,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27862,
@@ -220566,6 +221021,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27863,
@@ -220579,6 +221035,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27864,
@@ -220592,6 +221049,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27865,
@@ -220605,6 +221063,7 @@
"groupID": 856,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27866,
@@ -220618,6 +221077,7 @@
"groupID": 857,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27867,
@@ -220631,6 +221091,7 @@
"groupID": 857,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27868,
@@ -220644,6 +221105,7 @@
"groupID": 857,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27869,
@@ -220672,6 +221134,7 @@
"groupID": 857,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27870,
@@ -220685,6 +221148,7 @@
"groupID": 858,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27871,
@@ -220698,6 +221162,7 @@
"groupID": 858,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27872,
@@ -220711,6 +221176,7 @@
"groupID": 859,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27873,
@@ -220724,6 +221190,7 @@
"groupID": 859,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27874,
@@ -220737,6 +221204,7 @@
"groupID": 860,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27875,
@@ -220750,6 +221218,7 @@
"groupID": 860,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27876,
@@ -220763,6 +221232,7 @@
"groupID": 860,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27877,
@@ -220776,6 +221246,7 @@
"groupID": 860,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27878,
@@ -221881,6 +222352,7 @@
"groupID": 871,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27944,
@@ -221894,6 +222366,7 @@
"groupID": 871,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27945,
@@ -221907,6 +222380,7 @@
"groupID": 871,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27946,
@@ -221920,6 +222394,7 @@
"groupID": 871,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27947,
@@ -221933,6 +222408,7 @@
"groupID": 871,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27948,
@@ -221946,6 +222422,7 @@
"groupID": 871,
"iconID": 21,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 27949,
@@ -227104,6 +227581,7 @@
"groupID": 176,
"iconID": 1084,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28263,
@@ -227140,6 +227618,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227176,6 +227655,7 @@
"graphicID": 1089,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28267,
@@ -227212,6 +227692,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227263,6 +227744,7 @@
"graphicID": 2774,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28271,
@@ -227299,6 +227781,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227335,6 +227818,7 @@
"graphicID": 1099,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28275,
@@ -227371,6 +227855,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227407,6 +227892,7 @@
"graphicID": 1104,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28279,
@@ -227458,6 +227944,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227494,6 +227981,7 @@
"graphicID": 2778,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28283,
@@ -227530,6 +228018,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227566,6 +228055,7 @@
"graphicID": 20250,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28287,
@@ -227602,6 +228092,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227653,6 +228144,7 @@
"graphicID": 1119,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28291,
@@ -227689,6 +228181,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227725,6 +228218,7 @@
"graphicID": 2780,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28295,
@@ -227761,6 +228255,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227797,6 +228292,7 @@
"graphicID": 2776,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28299,
@@ -227848,6 +228344,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227884,6 +228381,7 @@
"graphicID": 1124,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28303,
@@ -227920,6 +228418,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -227956,6 +228455,7 @@
"graphicID": 1079,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28307,
@@ -227992,6 +228492,7 @@
"groupID": 176,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -228172,6 +228673,7 @@
"groupID": 165,
"iconID": 1300,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28325,
@@ -228206,6 +228708,7 @@
"groupID": 165,
"iconID": 1292,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28327,
@@ -228240,6 +228743,7 @@
"groupID": 165,
"iconID": 1004,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28329,
@@ -228290,6 +228794,7 @@
"groupID": 165,
"iconID": 2827,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28331,
@@ -228325,6 +228830,7 @@
"groupID": 165,
"iconID": 1301,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28333,
@@ -228359,6 +228865,7 @@
"groupID": 165,
"iconID": 1293,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28335,
@@ -228393,6 +228900,7 @@
"groupID": 165,
"iconID": 1285,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28337,
@@ -228427,6 +228935,7 @@
"groupID": 165,
"iconID": 2828,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28339,
@@ -228482,6 +228991,7 @@
"graphicID": 21766,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 2835,
@@ -228771,6 +229281,7 @@
"graphicID": 10006,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 2837,
@@ -228836,6 +229347,7 @@
"groupID": 136,
"iconID": 3241,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28376,
@@ -228870,6 +229382,7 @@
"groupID": 136,
"iconID": 3241,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28378,
@@ -228919,6 +229432,7 @@
"groupID": 136,
"iconID": 3241,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28380,
@@ -228953,6 +229467,7 @@
"groupID": 136,
"iconID": 3241,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28382,
@@ -228987,6 +229502,7 @@
"groupID": 136,
"iconID": 3241,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28384,
@@ -231164,6 +231680,7 @@
"groupID": 136,
"iconID": 1345,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28512,
@@ -231217,6 +231734,7 @@
"groupID": 145,
"iconID": 1284,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28515,
@@ -231250,6 +231768,7 @@
"groupID": 132,
"iconID": 111,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28517,
@@ -231283,6 +231802,7 @@
"groupID": 132,
"iconID": 3433,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28519,
@@ -231333,6 +231853,7 @@
"groupID": 163,
"iconID": 1030,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28521,
@@ -231367,6 +231888,7 @@
"groupID": 348,
"iconID": 20944,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28523,
@@ -231401,6 +231923,7 @@
"groupID": 348,
"iconID": 20943,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28525,
@@ -231435,6 +231958,7 @@
"groupID": 348,
"iconID": 20945,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28527,
@@ -231469,6 +231993,7 @@
"groupID": 348,
"iconID": 20946,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28529,
@@ -231517,6 +232042,7 @@
"groupID": 123,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28531,
@@ -231551,6 +232077,7 @@
"groupID": 137,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28533,
@@ -231585,6 +232112,7 @@
"groupID": 163,
"iconID": 2066,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28535,
@@ -231619,6 +232147,7 @@
"groupID": 163,
"iconID": 20953,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28537,
@@ -231653,6 +232182,7 @@
"groupID": 163,
"iconID": 20951,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28539,
@@ -231703,6 +232233,7 @@
"groupID": 163,
"iconID": 20952,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28541,
@@ -231737,6 +232268,7 @@
"groupID": 163,
"iconID": 20954,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28543,
@@ -231793,6 +232325,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28546,
@@ -231827,6 +232360,7 @@
"groupID": 163,
"iconID": 20957,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28548,
@@ -231902,6 +232436,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28551,
@@ -231936,6 +232471,7 @@
"groupID": 163,
"iconID": 20955,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28553,
@@ -231970,6 +232506,7 @@
"groupID": 163,
"iconID": 20956,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28555,
@@ -232026,6 +232563,7 @@
"groupID": 152,
"iconID": 112,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28558,
@@ -232075,6 +232613,7 @@
"groupID": 163,
"iconID": 20958,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28560,
@@ -232108,6 +232647,7 @@
"groupID": 346,
"iconID": 1405,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28562,
@@ -232142,6 +232682,7 @@
"groupID": 400,
"iconID": 21440,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28564,
@@ -232176,6 +232717,7 @@
"groupID": 136,
"iconID": 3241,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 28566,
@@ -234112,6 +234654,7 @@
"groupID": 130,
"iconID": 3227,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -234147,6 +234690,7 @@
"groupID": 130,
"iconID": 109,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -234182,6 +234726,7 @@
"groupID": 130,
"iconID": 3228,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -234217,6 +234762,7 @@
"groupID": 130,
"iconID": 3226,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -234252,6 +234798,7 @@
"groupID": 130,
"iconID": 3229,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -234322,6 +234869,7 @@
"groupID": 352,
"iconID": 2105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28741,
@@ -234355,6 +234903,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28743,
@@ -234388,6 +234937,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28745,
@@ -234421,6 +234971,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28747,
@@ -234456,6 +235007,7 @@
"groupID": 134,
"iconID": 2101,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28749,
@@ -234507,6 +235059,7 @@
"groupID": 134,
"iconID": 1061,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28751,
@@ -234542,6 +235095,7 @@
"groupID": 490,
"iconID": 2526,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28753,
@@ -234577,6 +235131,7 @@
"groupID": 490,
"iconID": 2527,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28755,
@@ -234611,6 +235166,7 @@
"groupID": 918,
"iconID": 2677,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28757,
@@ -234645,6 +235201,7 @@
"groupID": 918,
"iconID": 2677,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28759,
@@ -234751,6 +235308,7 @@
"groupID": 371,
"iconID": 2309,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28771,
@@ -234787,6 +235345,7 @@
"groupID": 371,
"iconID": 2309,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28773,
@@ -234823,6 +235382,7 @@
"groupID": 371,
"iconID": 2309,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28775,
@@ -234857,6 +235417,7 @@
"groupID": 137,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28777,
@@ -234892,6 +235453,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -234946,6 +235508,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -234982,6 +235545,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -235018,6 +235582,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -235054,6 +235619,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -235090,6 +235656,7 @@
"groupID": 134,
"iconID": 3074,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 28789,
@@ -243035,6 +243602,7 @@
"graphicID": 1730,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 29338,
@@ -243048,6 +243616,7 @@
"graphicID": 1887,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 29339,
@@ -243103,6 +243672,7 @@
"graphicID": 1784,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 29341,
@@ -243143,6 +243713,7 @@
"graphicID": 1802,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 29345,
@@ -257428,6 +257999,7 @@
"groupID": 108,
"marketGroupID": 1389,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 3039,
@@ -280597,6 +281169,7 @@
"groupID": 176,
"iconID": 1084,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31865,
@@ -280632,6 +281205,7 @@
"graphicID": 2773,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31867,
@@ -280667,6 +281241,7 @@
"graphicID": 20258,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31869,
@@ -280717,6 +281292,7 @@
"graphicID": 2824,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31871,
@@ -280752,6 +281328,7 @@
"graphicID": 2822,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31873,
@@ -280787,6 +281364,7 @@
"graphicID": 2770,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31875,
@@ -280822,6 +281400,7 @@
"graphicID": 2968,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31877,
@@ -280857,6 +281436,7 @@
"graphicID": 20260,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31879,
@@ -280909,6 +281489,7 @@
"graphicID": 20246,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31881,
@@ -280944,6 +281525,7 @@
"graphicID": 20248,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31883,
@@ -280979,6 +281561,7 @@
"graphicID": 20252,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31885,
@@ -281014,6 +281597,7 @@
"graphicID": 20256,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31887,
@@ -281049,6 +281633,7 @@
"graphicID": 20264,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31889,
@@ -281101,6 +281686,7 @@
"graphicID": 20266,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31891,
@@ -281136,6 +281722,7 @@
"graphicID": 20267,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31893,
@@ -281171,6 +281758,7 @@
"graphicID": 20269,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31895,
@@ -281206,6 +281794,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281242,6 +281831,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281295,6 +281885,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281331,6 +281922,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281367,6 +281959,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281403,6 +281996,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281439,6 +282033,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281492,6 +282087,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281528,6 +282124,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281564,6 +282161,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -281615,6 +282213,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31923,
@@ -281648,6 +282247,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31925,
@@ -281681,6 +282281,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31927,
@@ -281714,6 +282315,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31929,
@@ -281764,6 +282366,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31931,
@@ -281797,6 +282400,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31933,
@@ -281868,6 +282472,7 @@
"groupID": 408,
"iconID": 1640,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31943,
@@ -281903,6 +282508,7 @@
"groupID": 504,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31945,
@@ -281937,6 +282543,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31947,
@@ -281971,6 +282578,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31949,
@@ -282022,6 +282630,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31951,
@@ -282056,6 +282665,7 @@
"groupID": 137,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 31953,
@@ -285334,6 +285944,7 @@
"graphicID": 3799,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 32208,
@@ -285389,6 +286000,7 @@
"graphicID": 3800,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 32210,
@@ -286839,6 +287451,7 @@
"graphicID": 3814,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32306,
@@ -286879,6 +287492,7 @@
"graphicID": 2138,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32308,
@@ -286936,6 +287550,7 @@
"graphicID": 3815,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32310,
@@ -286976,6 +287591,7 @@
"graphicID": 2160,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32312,
@@ -288339,6 +288955,7 @@
"groupID": 504,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"typeID": 32415,
@@ -291147,6 +291764,7 @@
"graphicID": 20136,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32789,
@@ -291202,6 +291820,7 @@
"graphicID": 20137,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32791,
@@ -291431,6 +292050,7 @@
"groupID": 163,
"iconID": 20958,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32810,
@@ -291470,6 +292090,7 @@
"graphicID": 11877,
"groupID": 108,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 32812,
@@ -291909,6 +292530,7 @@
"groupID": 487,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -291948,6 +292570,7 @@
"groupID": 487,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -291987,6 +292610,7 @@
"groupID": 487,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -292026,6 +292650,7 @@
"groupID": 487,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -292065,6 +292690,7 @@
"groupID": 487,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -292118,6 +292744,7 @@
"iconID": 2663,
"marketGroupID": 1521,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 32854,
@@ -292132,6 +292759,7 @@
"iconID": 2663,
"marketGroupID": 1521,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 32855,
@@ -293943,6 +294571,7 @@
"groupID": 105,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -293982,6 +294611,7 @@
"groupID": 105,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -294021,6 +294651,7 @@
"iconID": 21,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -294077,6 +294708,7 @@
"groupID": 105,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -296586,6 +297218,7 @@
"graphicID": 20229,
"groupID": 489,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33152,
@@ -296626,6 +297259,7 @@
"graphicID": 20283,
"groupID": 489,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33154,
@@ -296666,6 +297300,7 @@
"graphicID": 20227,
"groupID": 489,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33156,
@@ -296706,6 +297341,7 @@
"graphicID": 20230,
"groupID": 489,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33158,
@@ -297150,6 +297786,7 @@
"groupID": 105,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -300255,6 +300892,7 @@
"graphicID": 20345,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33396,
@@ -300293,6 +300931,7 @@
"graphicID": 20344,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33398,
@@ -300632,6 +301271,7 @@
"groupID": 136,
"iconID": 21074,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33447,
@@ -300923,6 +301563,7 @@
"groupID": 136,
"iconID": 21074,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33460,
@@ -301106,6 +301747,7 @@
"graphicID": 20386,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33469,
@@ -301164,6 +301806,7 @@
"graphicID": 20385,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33471,
@@ -301203,6 +301846,7 @@
"graphicID": 20384,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33473,
@@ -302141,6 +302785,7 @@
"groupID": 1269,
"iconID": 0,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 33521,
@@ -302179,6 +302824,7 @@
"groupID": 1269,
"iconID": 0,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 33523,
@@ -302626,6 +303272,7 @@
"graphicID": 20403,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33554,
@@ -303069,6 +303716,7 @@
"graphicID": 20437,
"groupID": 1267,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -303104,6 +303752,7 @@
"graphicID": 20436,
"groupID": 1267,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -304723,6 +305372,7 @@
"graphicID": 20605,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"typeID": 33674,
@@ -304760,6 +305410,7 @@
"graphicID": 20604,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"typeID": 33676,
@@ -304798,6 +305449,7 @@
"groupID": 105,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 37.0,
@@ -304852,6 +305504,7 @@
"graphicID": 20483,
"groupID": 176,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33682,
@@ -304890,6 +305543,7 @@
"groupID": 477,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -305245,6 +305899,7 @@
"groupID": 1270,
"iconID": 0,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 33701,
@@ -305281,6 +305936,7 @@
"groupID": 1270,
"iconID": 0,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 33703,
@@ -307214,6 +307870,7 @@
"graphicID": 20616,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33817,
@@ -307253,6 +307910,7 @@
"graphicID": 20614,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33819,
@@ -307307,6 +307965,7 @@
"graphicID": 20615,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 33821,
@@ -307871,6 +308530,7 @@
"graphicID": 2377,
"groupID": 1048,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -309958,6 +310618,7 @@
"groupID": 158,
"iconID": 98,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 33984,
@@ -309992,6 +310653,7 @@
"groupID": 158,
"iconID": 98,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 33986,
@@ -312290,6 +312952,7 @@
"groupID": 158,
"iconID": 98,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 34125,
@@ -312324,6 +312987,7 @@
"groupID": 158,
"iconID": 98,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"typeID": 34127,
@@ -312652,6 +313316,7 @@
"graphicID": 20927,
"groupID": 107,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -313788,6 +314453,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -313824,6 +314490,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -313860,6 +314527,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314017,6 +314685,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314053,6 +314722,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314089,6 +314759,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314211,6 +314882,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314247,6 +314919,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314283,6 +314956,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314442,6 +315116,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314478,6 +315153,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -314514,6 +315190,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -318088,6 +318765,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -318125,6 +318803,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -318358,6 +319037,7 @@
"groupID": 106,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -318395,6 +319075,7 @@
"groupID": 106,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -318447,6 +319128,7 @@
"groupID": 106,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -320175,6 +320857,7 @@
"graphicID": 21076,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 8,
@@ -328911,6 +329594,7 @@
"graphicID": 10038,
"groupID": 1013,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 3515,
@@ -329602,6 +330286,7 @@
"graphicID": 10950,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 3517,
@@ -330027,6 +330712,7 @@
"graphicID": 10951,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 3519,
@@ -336880,6 +337566,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -337346,6 +338033,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -340377,6 +341065,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -340688,6 +341377,7 @@
"groupID": 121,
"iconID": 86,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -353023,6 +353713,7 @@
"graphicID": 21156,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -353064,6 +353755,7 @@
"graphicID": 21155,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -353278,6 +353970,7 @@
"groupID": 147,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -353512,6 +354205,7 @@
"groupID": 917,
"iconID": 2856,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"typeID": 3582,
@@ -353833,7 +354527,7 @@
"35841": {
"basePrice": 0.0,
"capacity": 0.0,
- "description": "Designed by the Upwell Consortium to function as the successor and improvement over starbase jump bridges, the Ansiblex Jump Gate is the flagship of their new Fast Logistical EXpansion (FLEX) structures product line.\r\n\r\nThe Ansiblex enables point-to-point FTL travel even for ships that lack their own jump drives, and a matched pair of gates provides a transport connection between two star systems within its operational range, using stabilized spatiotemporal tunneling. The Ansiblex makes a large number of improvements over the older jump bridge portal devices, and incorporates some elements of Triglavian Collective space-time conduit technology in its workings.\r\n\r\nEach Ansiblex Jump Gate structure is automatically equipped with one Standup Conduit Generator I service module. This service module may only be onlined in a system that contains an Infrastructure Hub with the Advanced Logistics Network upgrade active.\r\n\r\nMay not be deployed within 200km of another Upwell Structure, or 1000km of Stargates, Stations, or Starbases. A maximum of one Jump Gate may be deployed per system.",
+ "description": "Designed by the Upwell Consortium to function as the successor and improvement over starbase jump bridges, the Ansiblex Jump Gate is the flagship of their new Fast Logistical EXpansion (FLEX) structures product line.\r\n\r\nThe Ansiblex enables point-to-point FTL travel even for ships that lack their own jump drives, and a matched pair of gates provides a transport connection between two star systems within its operational range, using stabilized spatiotemporal tunneling. The Ansiblex makes a large number of improvements over the older jump bridge portal devices, and incorporates some elements of Triglavian Collective space-time conduit technology in its workings.\r\n\r\nEach Ansiblex Jump Gate structure is automatically equipped with one Standup Conduit Generator I service module. This service module may only be onlined in a system that contains an Infrastructure Hub with the Advanced Logistics Network upgrade active.\r\n\r\nMay not be deployed within 500km of another Upwell Structure, or 1000km of Stargates, Stations, or Starbases. A maximum of one Jump Gate may be deployed per system.",
"descriptionID": 543483,
"graphicID": 22269,
"groupID": 1408,
@@ -385362,6 +386056,7 @@
"descriptionID": 509067,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385375,6 +386070,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385406,6 +386102,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385419,6 +386116,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385432,6 +386130,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385446,6 +386145,7 @@
"groupID": 1709,
"iconID": 20970,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385460,6 +386160,7 @@
"groupID": 1709,
"iconID": 20970,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385474,6 +386175,7 @@
"groupID": 1709,
"iconID": 20970,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385488,6 +386190,7 @@
"groupID": 1709,
"iconID": 20970,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385502,6 +386205,7 @@
"groupID": 1709,
"iconID": 20970,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385517,6 +386221,7 @@
"iconID": 21564,
"marketGroupID": 2185,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385599,6 +386304,7 @@
"iconID": 2531,
"marketGroupID": 2189,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385613,6 +386319,7 @@
"groupID": 1709,
"iconID": 21560,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385628,6 +386335,7 @@
"iconID": 21595,
"marketGroupID": 2181,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385643,6 +386351,7 @@
"iconID": 21596,
"marketGroupID": 2181,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385656,6 +386365,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385669,6 +386379,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385682,6 +386393,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385695,6 +386407,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385710,6 +386423,7 @@
"iconID": 1405,
"marketGroupID": 2173,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385725,6 +386439,7 @@
"iconID": 21561,
"marketGroupID": 2186,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385756,6 +386471,7 @@
"iconID": 2934,
"marketGroupID": 2180,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385785,6 +386501,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385800,6 +386517,7 @@
"iconID": 21597,
"marketGroupID": 2182,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385814,6 +386532,7 @@
"groupID": 1709,
"iconID": 21598,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385829,6 +386548,7 @@
"iconID": 21774,
"marketGroupID": 2182,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385843,6 +386563,7 @@
"groupID": 1709,
"iconID": 2989,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385857,6 +386578,7 @@
"groupID": 1709,
"iconID": 10934,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385871,6 +386593,7 @@
"groupID": 1709,
"iconID": 2988,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385902,6 +386625,7 @@
"groupID": 1709,
"iconID": 1640,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385917,6 +386641,7 @@
"iconID": 109,
"marketGroupID": 2167,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385931,6 +386656,7 @@
"groupID": 1709,
"iconID": 110,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -385946,6 +386672,7 @@
"iconID": 1283,
"marketGroupID": 2176,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385961,6 +386688,7 @@
"iconID": 1283,
"marketGroupID": 2176,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385976,6 +386704,7 @@
"iconID": 21439,
"marketGroupID": 2190,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -385990,6 +386719,7 @@
"groupID": 1709,
"iconID": 21437,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386005,6 +386735,7 @@
"iconID": 21565,
"marketGroupID": 2183,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -386020,6 +386751,7 @@
"iconID": 21566,
"marketGroupID": 2184,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -386049,6 +386781,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386078,6 +386811,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386091,6 +386825,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386104,6 +386839,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386117,6 +386853,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386130,6 +386867,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386188,6 +386926,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386220,6 +386959,7 @@
"iconID": 70,
"marketGroupID": 2177,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -386234,6 +386974,7 @@
"groupID": 1709,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386248,6 +386989,7 @@
"groupID": 1709,
"iconID": 1035,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386262,6 +387004,7 @@
"groupID": 1709,
"iconID": 21428,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386276,6 +387019,7 @@
"groupID": 1709,
"iconID": 21437,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386290,6 +387034,7 @@
"groupID": 1709,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386320,6 +387065,7 @@
"iconID": 105,
"marketGroupID": 2168,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -386334,6 +387080,7 @@
"groupID": 1709,
"iconID": 10913,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386348,6 +387095,7 @@
"groupID": 1709,
"iconID": 3346,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386390,6 +387138,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386403,6 +387152,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386416,6 +387166,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386443,6 +387194,7 @@
"groupID": 1709,
"iconID": 74,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386495,6 +387247,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386527,6 +387280,7 @@
"iconID": 1284,
"marketGroupID": 2169,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -386542,6 +387296,7 @@
"iconID": 2983,
"marketGroupID": 2170,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -386557,6 +387312,7 @@
"iconID": 1639,
"marketGroupID": 2171,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -386584,6 +387340,7 @@
"groupID": 1709,
"iconID": 21563,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -386599,6 +387356,7 @@
"iconID": 21743,
"marketGroupID": 2172,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -387508,6 +388266,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -387521,6 +388280,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -390376,6 +391136,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390407,6 +391168,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390635,6 +391397,7 @@
"groupID": 1709,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -390678,6 +391441,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390710,6 +391474,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390724,6 +391489,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390740,6 +391506,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390754,6 +391521,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390770,6 +391538,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390784,6 +391553,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390828,6 +391598,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390842,6 +391613,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390869,6 +391641,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -390882,7 +391655,7 @@
"capacity": 0.0,
"groupID": 1709,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -390898,6 +391671,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390914,6 +391688,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390928,6 +391703,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390943,6 +391719,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390958,6 +391735,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -390972,6 +391750,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -390985,7 +391764,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391000,6 +391779,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391029,7 +391809,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391044,7 +391824,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391059,6 +391839,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391072,7 +391853,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391087,6 +391868,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391100,7 +391882,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391115,6 +391897,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391128,7 +391911,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391143,6 +391926,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391156,7 +391940,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391184,6 +391968,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391197,7 +391982,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391212,6 +391997,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391225,7 +392011,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391240,6 +392026,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391253,7 +392040,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391268,6 +392055,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391281,7 +392069,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391312,6 +392100,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391325,7 +392114,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391340,6 +392129,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391353,7 +392143,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391368,6 +392158,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391381,7 +392172,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
- "metaGroupID": 2,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391398,6 +392189,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391412,6 +392204,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391428,6 +392221,7 @@
"iconID": 3197,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391472,6 +392266,7 @@
"iconID": 3197,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391503,6 +392298,7 @@
"iconID": 3195,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391534,6 +392330,7 @@
"iconID": 3195,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391565,6 +392362,7 @@
"iconID": 3200,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391596,6 +392394,7 @@
"iconID": 3200,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -391644,6 +392443,7 @@
"iconID": 3198,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391675,6 +392475,7 @@
"iconID": 3198,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391706,6 +392507,7 @@
"iconID": 3198,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391737,6 +392539,7 @@
"iconID": 3198,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -391960,6 +392763,7 @@
"iconID": 3197,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -391991,6 +392795,7 @@
"iconID": 3195,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392022,6 +392827,7 @@
"iconID": 3200,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -392053,6 +392859,7 @@
"iconID": 3198,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392084,6 +392891,7 @@
"iconID": 3197,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392132,6 +392940,7 @@
"iconID": 21594,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392163,6 +392972,7 @@
"iconID": 3198,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392289,6 +393099,7 @@
"iconID": 3197,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392320,6 +393131,7 @@
"iconID": 3200,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -392351,6 +393163,7 @@
"iconID": 3195,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392382,6 +393195,7 @@
"iconID": 21601,
"marketGroupID": 2159,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -392456,6 +393270,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -392486,6 +393301,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -392516,6 +393332,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -392545,6 +393362,7 @@
"capacity": 0.0,
"groupID": 1708,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -393140,7 +393958,7 @@
"37479": {
"basePrice": 340852,
"capacity": 0.0,
- "description": "This module spools up and then teleports the ship and any ships or drones nearby 100km in the direction the ship is facing. All ships teleported will retain their movement direction and velocity in the new location.\r\n\r\nNote: The micro jump field only affects capsuleer-piloted ships and will not move certain ship types, including: Capital Ships, Freighters and the Orca.",
+ "description": "This module spools up and then teleports up to 25 nearby ships along with all drones, fighters, probes and bombs 100km in the direction the ship is facing. All ships teleported will retain their movement direction and velocity in the new location.\r\n\r\nNote: The micro jump field only affects capsuleer-piloted ships and will not move certain ship types, including: Capital Ships, Freighters and the Orca.",
"descriptionID": 510189,
"groupID": 1533,
"iconID": 20971,
@@ -394115,7 +394933,7 @@
"37534": {
"basePrice": 0.0,
"capacity": 0.0,
- "description": "Designed by the Upwell Consortium to function as a successor and improvement over starbase cynosural system jammers, the Tenebrex Cyno Jammer is a vital part of their new Fast Logistical EXpansion (FLEX) structures product line.\r\n\r\nAs with established, large-scale cynosural jamming technology, the Tenebrex creates a system-wide inhibitor field which prevents cynosural generators, except covert cynosural generators, from functioning. With cynosural jamming an important element of strategic warfare, the Tenebrex incorporates certain improvements on the basic cyno jamming technology that it uses.\r\n\r\nEach Tenebrex Cyno Jammer structure is automatically equipped with one Standup Cynosural System Jammer I service module. This service module may only be onlined in a system that contains an Infrastructure Hub with the Cynosural Suppression upgrade active.\r\n\r\nMay not be deployed within 150km of another Upwell Structure, or 1000km of Stargates, Stations, or Starbases. A maximum of three Cyno Jammer structures may be deployed per system, and only one such structure may have its service module activated at any given time.",
+ "description": "Designed by the Upwell Consortium to function as a successor and improvement over starbase cynosural system jammers, the Tenebrex Cyno Jammer is a vital part of their new Fast Logistical EXpansion (FLEX) structures product line.\r\n\r\nAs with established, large-scale cynosural jamming technology, the Tenebrex creates a system-wide inhibitor field which prevents cynosural generators, except covert cynosural generators, from functioning. With cynosural jamming an important element of strategic warfare, the Tenebrex incorporates certain improvements on the basic cyno jamming technology that it uses.\r\n\r\nEach Tenebrex Cyno Jammer structure is automatically equipped with one Standup Cynosural System Jammer I service module. This service module may only be onlined in a system that contains an Infrastructure Hub with the Cynosural Suppression upgrade active.\r\n\r\nMay not be deployed within 500km of another Upwell Structure, or 1000km of Stargates, Stations, or Starbases. A maximum of three Cyno Jammer structures may be deployed per system, and only one such structure may have its service module activated at any given time.",
"descriptionID": 543484,
"graphicID": 22252,
"groupID": 2016,
@@ -394250,6 +395068,7 @@
"iconID": 104,
"marketGroupID": 2174,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -398908,6 +399727,7 @@
"iconID": 3226,
"marketGroupID": 1105,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -398924,6 +399744,7 @@
"iconID": 3228,
"marketGroupID": 1105,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -398940,6 +399761,7 @@
"iconID": 3227,
"marketGroupID": 1105,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -398956,6 +399778,7 @@
"iconID": 3229,
"marketGroupID": 1105,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -399244,6 +400067,7 @@
"iconID": 21567,
"marketGroupID": 2191,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399259,6 +400083,7 @@
"iconID": 21570,
"marketGroupID": 2191,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399274,6 +400099,7 @@
"iconID": 21573,
"marketGroupID": 2191,
"mass": 1,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -399290,6 +400116,7 @@
"iconID": 21568,
"marketGroupID": 2192,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399306,6 +400133,7 @@
"iconID": 21571,
"marketGroupID": 2192,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399322,6 +400150,7 @@
"iconID": 21574,
"marketGroupID": 2192,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399337,6 +400166,7 @@
"iconID": 21569,
"marketGroupID": 2193,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399352,6 +400182,7 @@
"iconID": 21575,
"marketGroupID": 2193,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -399383,6 +400214,7 @@
"groupID": 166,
"iconID": 21572,
"mass": 1.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -401031,6 +401863,7 @@
"groupID": 1709,
"iconID": 21562,
"mass": 500,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -411729,6 +412562,7 @@
"groupID": 134,
"iconID": 1061,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -433270,6 +434104,7 @@
"groupID": 107,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -437219,6 +438054,7 @@
"groupID": 1318,
"iconID": 21421,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 16,
@@ -437237,6 +438073,7 @@
"iconID": 21421,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 16,
@@ -437254,6 +438091,7 @@
"groupID": 1318,
"iconID": 21421,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 16,
@@ -437271,6 +438109,7 @@
"groupID": 1318,
"iconID": 21421,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 16,
@@ -437286,6 +438125,7 @@
"graphicID": 1811,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -437300,6 +438140,7 @@
"graphicID": 1789,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -437314,6 +438155,7 @@
"graphicID": 1976,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -437328,6 +438170,7 @@
"graphicID": 1733,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -440379,21 +441222,22 @@
"volume": 0.01
},
"4051": {
- "basePrice": 95,
+ "basePrice": 95.0,
"capacity": 0.0,
- "description": "Frustrated with the inefficiencies involved in tracking multiple fuel types, Thukker logisticians pioneered the development of prepackaged fuel. In YC 111, after a successful trial period, they converted the Tribe's entire starbase network to use fuel blocks. Capsuleers were forced to wait for this innovation while CONCORD dithered over how to handle the transition period, but were finally granted clearance in YC 113.\n\nThis is a block of fuel designed for Caldari control towers and Standup service modules. Forty blocks are sufficient to run a standard large tower for one hour, while medium and small towers require twenty and ten blocks respectively over the same period.\nStandup service modules are designed to be fit to Upwell structures such as the advanced Citadel structure line. These service modules consume fuel blocks while running and are capable of using any of the four fuel block types, for maximum convenience.",
+ "description": "Frustrated with the inefficiencies involved in tracking multiple fuel types, Thukker logisticians pioneered the development of prepackaged fuel. In YC 111, after a successful trial period, they converted the Tribe's entire starbase network to use fuel blocks. Capsuleers were forced to wait for this innovation while CONCORD dithered over how to handle the transition period, but were finally granted clearance in YC 113.\r\n\r\nThis is a block of fuel designed for Caldari control towers and Standup service modules. Forty blocks are sufficient to run a standard large tower for one hour, while medium and small towers require twenty and ten blocks respectively over the same period.\r\n\r\nStandup service modules are designed to be fit to Upwell structures such as the advanced Citadel structure line. These service modules consume fuel blocks while running and are capable of using any of the four fuel block types, for maximum convenience.",
"descriptionID": 263493,
"groupID": 1136,
"iconID": 10834,
+ "isDynamicType": false,
"marketGroupID": 1870,
"mass": 0.0,
"portionSize": 40,
"published": true,
- "radius": 1,
+ "radius": 1.0,
"typeID": 4051,
"typeName": "Nitrogen Fuel Block",
"typeNameID": 263492,
- "volume": 5
+ "volume": 5.0
},
"40510": {
"basePrice": 0.0,
@@ -440571,6 +441415,7 @@
"graphicID": 21315,
"groupID": 1462,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -442907,6 +443752,7 @@
"iconID": 1283,
"marketGroupID": 1565,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -442922,6 +443768,7 @@
"iconID": 1283,
"marketGroupID": 1565,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -442952,6 +443799,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -442966,6 +443814,7 @@
"groupID": 151,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443012,6 +443861,7 @@
"iconID": 1029,
"marketGroupID": 1564,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443027,6 +443877,7 @@
"iconID": 1029,
"marketGroupID": 1564,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443057,6 +443908,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443071,6 +443923,7 @@
"groupID": 148,
"iconID": 1029,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443940,6 +444793,7 @@
"iconID": 111,
"marketGroupID": 1938,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443955,6 +444809,7 @@
"iconID": 111,
"marketGroupID": 1938,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -443970,6 +444825,7 @@
"iconID": 111,
"marketGroupID": 1938,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -444102,6 +444958,7 @@
"iconID": 3433,
"marketGroupID": 1939,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -444138,6 +444995,7 @@
"iconID": 3433,
"marketGroupID": 1939,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -444174,6 +445032,7 @@
"iconID": 3433,
"marketGroupID": 1939,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -448931,6 +449790,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -448962,6 +449822,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -448977,6 +449838,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -448992,6 +449854,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449260,6 +450123,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449275,6 +450139,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449290,6 +450155,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449305,6 +450171,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449382,6 +450249,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449397,6 +450265,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449412,6 +450281,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449427,6 +450297,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449621,6 +450492,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449636,6 +450508,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449651,6 +450524,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449666,6 +450540,7 @@
"iconID": 2841,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449891,6 +450766,7 @@
"iconID": 2837,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449906,6 +450782,7 @@
"iconID": 2837,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449921,6 +450798,7 @@
"iconID": 2837,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -449936,6 +450814,7 @@
"iconID": 2837,
"marketGroupID": 794,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450107,6 +450986,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450122,6 +451002,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450137,6 +451018,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450152,6 +451034,7 @@
"iconID": 2836,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450324,6 +451207,7 @@
"iconID": 2840,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450339,6 +451223,7 @@
"iconID": 2840,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450370,6 +451255,7 @@
"iconID": 2840,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450400,6 +451286,7 @@
"iconID": 2840,
"marketGroupID": 792,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450685,6 +451572,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450700,6 +451588,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450715,6 +451604,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450730,6 +451620,7 @@
"iconID": 2838,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450776,6 +451667,7 @@
"iconID": 2842,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450791,6 +451683,7 @@
"iconID": 2842,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450822,6 +451715,7 @@
"iconID": 2842,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450837,6 +451731,7 @@
"iconID": 2842,
"marketGroupID": 793,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450950,6 +451845,7 @@
"iconID": 3955,
"marketGroupID": 340,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -450966,6 +451862,7 @@
"iconID": 3955,
"marketGroupID": 340,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -451080,6 +451977,7 @@
"iconID": 2839,
"marketGroupID": 340,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -451096,6 +451994,7 @@
"iconID": 2839,
"marketGroupID": 340,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -451884,6 +452783,7 @@
"groupID": 145,
"iconID": 21581,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -451960,6 +452860,7 @@
"iconID": 2839,
"marketGroupID": 340,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -451976,6 +452877,7 @@
"iconID": 2839,
"marketGroupID": 340,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -452238,6 +453140,7 @@
"iconID": 96,
"marketGroupID": 1525,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -452253,6 +453156,7 @@
"iconID": 96,
"marketGroupID": 1525,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -452490,6 +453394,7 @@
"iconID": 10149,
"marketGroupID": 331,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -452505,6 +453410,7 @@
"iconID": 10149,
"marketGroupID": 331,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -453544,6 +454450,7 @@
"iconID": 10149,
"marketGroupID": 331,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -455317,6 +456224,7 @@
"iconID": 2987,
"marketGroupID": 939,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -455654,6 +456562,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455668,6 +456577,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455682,6 +456592,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455696,6 +456607,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455710,6 +456622,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455724,6 +456637,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455738,6 +456652,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -455752,6 +456667,7 @@
"groupID": 1709,
"iconID": 21602,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -457795,6 +458711,7 @@
"groupID": 917,
"iconID": 21618,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -457809,6 +458726,7 @@
"groupID": 917,
"iconID": 21618,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458473,6 +459391,7 @@
"iconID": 1044,
"marketGroupID": 1549,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458488,6 +459407,7 @@
"iconID": 1044,
"marketGroupID": 1549,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458502,6 +459422,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458516,6 +459437,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458530,6 +459452,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458544,6 +459467,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458558,6 +459482,7 @@
"groupID": 118,
"iconID": 1044,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458589,6 +459514,7 @@
"iconID": 79,
"marketGroupID": 1541,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -458605,6 +459531,7 @@
"iconID": 79,
"marketGroupID": 1541,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -458636,6 +459563,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -458651,6 +459579,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -458666,6 +459595,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -458681,6 +459611,7 @@
"groupID": 349,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 4,
@@ -458697,6 +459628,7 @@
"iconID": 80,
"marketGroupID": 1536,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458712,6 +459644,7 @@
"iconID": 80,
"marketGroupID": 1536,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458726,6 +459659,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458740,6 +459674,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458754,6 +459689,7 @@
"groupID": 142,
"iconID": 80,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458799,6 +459735,7 @@
"iconID": 21426,
"marketGroupID": 1539,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458814,6 +459751,7 @@
"iconID": 21426,
"marketGroupID": 1539,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458828,6 +459766,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458843,6 +459782,7 @@
"iconID": 21426,
"marketGroupID": 1539,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458857,6 +459797,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458871,6 +459812,7 @@
"groupID": 350,
"iconID": 21426,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458901,6 +459843,7 @@
"iconID": 21378,
"marketGroupID": 1537,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458916,6 +459859,7 @@
"iconID": 21378,
"marketGroupID": 1537,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458946,6 +459890,7 @@
"groupID": 143,
"iconID": 21378,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458960,6 +459905,7 @@
"groupID": 870,
"iconID": 21428,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458975,6 +459921,7 @@
"iconID": 84,
"marketGroupID": 1552,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -458990,6 +459937,7 @@
"iconID": 84,
"marketGroupID": 1552,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459004,6 +459952,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459018,6 +459967,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459032,6 +459982,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459046,6 +459997,7 @@
"groupID": 120,
"iconID": 84,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459106,6 +460058,7 @@
"iconID": 89,
"marketGroupID": 1558,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459120,6 +460073,7 @@
"groupID": 141,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459134,6 +460088,7 @@
"groupID": 141,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459148,6 +460103,7 @@
"groupID": 141,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459178,6 +460134,7 @@
"iconID": 1031,
"marketGroupID": 1563,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459192,6 +460149,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459206,6 +460164,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459220,6 +460179,7 @@
"groupID": 156,
"iconID": 1031,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459377,6 +460337,7 @@
"groupID": 1151,
"iconID": 10933,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459391,6 +460352,7 @@
"groupID": 1151,
"iconID": 10933,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459421,6 +460383,7 @@
"groupID": 1151,
"iconID": 10933,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459435,6 +460398,7 @@
"groupID": 1723,
"iconID": 81,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459464,6 +460428,7 @@
"groupID": 1723,
"iconID": 81,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459478,6 +460443,7 @@
"groupID": 1723,
"iconID": 81,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459492,6 +460458,7 @@
"groupID": 1723,
"iconID": 81,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459507,6 +460474,7 @@
"iconID": 86,
"marketGroupID": 1553,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -459523,6 +460491,7 @@
"iconID": 86,
"marketGroupID": 1553,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -459539,6 +460508,7 @@
"iconID": 86,
"marketGroupID": 1553,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -459554,6 +460524,7 @@
"groupID": 121,
"iconID": 86,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -459585,6 +460556,7 @@
"groupID": 121,
"iconID": 86,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -459600,6 +460572,7 @@
"groupID": 121,
"iconID": 86,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"raceID": 1,
@@ -459912,6 +460885,7 @@
"iconID": 1035,
"marketGroupID": 1562,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -459927,6 +460901,7 @@
"iconID": 1035,
"marketGroupID": 1562,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -465909,6 +466884,7 @@
"graphicID": 21353,
"groupID": 643,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -465923,6 +466899,7 @@
"graphicID": 21355,
"groupID": 1718,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"radius": 1,
@@ -465937,6 +466914,7 @@
"graphicID": 21282,
"groupID": 537,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -465951,6 +466929,7 @@
"graphicID": 21354,
"groupID": 1013,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -465965,6 +466944,7 @@
"graphicID": 21283,
"groupID": 110,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -472325,6 +473305,7 @@
"graphicID": 21361,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -472339,6 +473320,7 @@
"graphicID": 21360,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -478088,6 +479070,7 @@
"groupID": 516,
"iconID": 2851,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -488385,6 +489368,7 @@
"groupID": 1812,
"iconID": 21687,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -488399,6 +489383,7 @@
"groupID": 1812,
"iconID": 21691,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -488413,6 +489398,7 @@
"groupID": 1812,
"iconID": 21695,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -488444,6 +489430,7 @@
"groupID": 1812,
"iconID": 21700,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -488458,6 +489445,7 @@
"groupID": 1812,
"iconID": 21704,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -488854,6 +489842,7 @@
"graphicID": 11876,
"groupID": 108,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 4364,
@@ -493044,6 +494033,7 @@
"graphicID": 11875,
"groupID": 108,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 4389,
@@ -493342,6 +494332,7 @@
"groupID": 177,
"marketGroupID": 358,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493372,6 +494363,7 @@
"graphicID": 21420,
"groupID": 177,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493386,6 +494378,7 @@
"graphicID": 20263,
"groupID": 177,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493400,6 +494393,7 @@
"graphicID": 21322,
"groupID": 177,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493414,6 +494408,7 @@
"graphicID": 21419,
"groupID": 177,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493584,6 +494579,7 @@
"iconID": 3007,
"marketGroupID": 2323,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493599,6 +494595,7 @@
"iconID": 3013,
"marketGroupID": 2323,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493614,6 +494611,7 @@
"iconID": 3007,
"marketGroupID": 2323,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493629,6 +494627,7 @@
"iconID": 3006,
"marketGroupID": 2323,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493644,6 +494643,7 @@
"iconID": 3007,
"marketGroupID": 2323,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493749,6 +494749,7 @@
"graphicID": 1009,
"groupID": 177,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493935,6 +494936,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493966,6 +494968,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -493997,6 +495000,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494028,6 +495032,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494080,6 +495085,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494111,6 +495117,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494142,6 +495149,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494173,6 +495181,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494204,6 +495213,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494250,6 +495260,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494281,6 +495292,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494312,6 +495324,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494343,6 +495356,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494374,6 +495388,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494424,6 +495439,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494455,6 +495471,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494486,6 +495503,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494517,6 +495535,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494548,6 +495567,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494592,6 +495612,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494623,6 +495644,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494654,6 +495676,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494685,6 +495708,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494716,6 +495740,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494768,6 +495793,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494799,6 +495825,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494830,6 +495857,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494861,6 +495889,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494892,6 +495921,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494938,6 +495968,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -494969,6 +496000,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495000,6 +496032,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495153,6 +496186,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495184,6 +496218,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495215,6 +496250,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495262,6 +496298,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495293,6 +496330,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495324,6 +496362,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495355,6 +496394,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495386,6 +496426,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495435,6 +496476,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495466,6 +496508,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495497,6 +496540,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495528,6 +496572,7 @@
"iconID": 21729,
"marketGroupID": 2339,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495831,6 +496876,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495847,6 +496893,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495863,6 +496910,7 @@
"groupID": 139,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -495879,6 +496927,7 @@
"groupID": 218,
"iconID": 1046,
"mass": 0.0,
+ "metaGroupID": 3,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -508739,6 +509788,7 @@
"graphicID": 21358,
"groupID": 1718,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 45043,
@@ -508752,6 +509802,7 @@
"graphicID": 21277,
"groupID": 537,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 45044,
@@ -508765,6 +509816,7 @@
"graphicID": 21278,
"groupID": 110,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"typeID": 45045,
@@ -509568,6 +510620,7 @@
"graphicID": 21490,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -509582,6 +510635,7 @@
"graphicID": 21489,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510339,6 +511393,7 @@
"graphicID": 21822,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510353,6 +511408,7 @@
"graphicID": 21821,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510392,6 +511448,7 @@
"graphicID": 22001,
"groupID": 106,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -510477,6 +511534,7 @@
"iconID": 21791,
"marketGroupID": 2182,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510492,6 +511550,7 @@
"iconID": 21790,
"marketGroupID": 2182,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510507,6 +511566,7 @@
"iconID": 21789,
"marketGroupID": 2182,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510540,6 +511600,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510573,6 +511634,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510606,6 +511668,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -510638,6 +511701,7 @@
"groupID": 1707,
"iconID": 3006,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -512400,6 +513464,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -512414,6 +513479,7 @@
"groupID": 1708,
"iconID": 21729,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -512428,6 +513494,7 @@
"graphicID": 21493,
"groupID": 1718,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -512470,6 +513537,7 @@
"graphicID": 21279,
"groupID": 537,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -512512,6 +513580,7 @@
"graphicID": 21280,
"groupID": 110,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -513045,6 +514114,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513059,6 +514129,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513073,6 +514144,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513087,6 +514159,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513101,6 +514174,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513115,6 +514189,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513129,6 +514204,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513143,6 +514219,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513157,6 +514234,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513192,6 +514270,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513206,6 +514285,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513220,6 +514300,7 @@
"groupID": 973,
"iconID": 3631,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513234,6 +514315,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513248,6 +514330,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513262,6 +514345,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513276,6 +514360,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513290,6 +514375,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513304,6 +514390,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513318,6 +514405,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513351,6 +514439,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513365,6 +514454,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513379,6 +514469,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513393,6 +514484,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513407,6 +514499,7 @@
"groupID": 973,
"iconID": 3641,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513421,6 +514514,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513435,6 +514529,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513449,6 +514544,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513463,6 +514559,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513477,6 +514574,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513512,6 +514610,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513526,6 +514625,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513540,6 +514640,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513554,6 +514655,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513568,6 +514670,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513582,6 +514685,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513596,6 +514700,7 @@
"groupID": 973,
"iconID": 3646,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513610,6 +514715,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513624,6 +514730,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513638,6 +514745,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513652,6 +514760,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513666,6 +514775,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513680,6 +514790,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513694,6 +514805,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513708,6 +514820,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513722,6 +514835,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513736,6 +514850,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513750,6 +514865,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -513764,6 +514880,7 @@
"groupID": 973,
"iconID": 3636,
"mass": 0.0,
+ "metaGroupID": 14,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -522047,9 +523164,10 @@
"descriptionID": 528665,
"graphicID": 21815,
"groupID": 226,
+ "isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
- "published": true,
+ "published": false,
"radius": 6000.0,
"soundID": 20803,
"typeID": 46263,
@@ -525785,6 +526903,7 @@
"iconID": 21787,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525800,6 +526919,7 @@
"iconID": 21787,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525815,6 +526935,7 @@
"iconID": 21787,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525830,6 +526951,7 @@
"iconID": 21787,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525845,6 +526967,7 @@
"iconID": 21787,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525860,6 +526983,7 @@
"iconID": 21787,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525875,6 +526999,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525890,6 +527015,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525905,6 +527031,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525920,6 +527047,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525935,6 +527063,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525950,6 +527079,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525965,6 +527095,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -525980,6 +527111,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -525995,6 +527127,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -526010,6 +527143,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -526025,6 +527159,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -526040,6 +527175,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -526055,6 +527191,7 @@
"iconID": 21788,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -526070,6 +527207,7 @@
"iconID": 21788,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -526967,6 +528105,7 @@
"iconID": 1283,
"marketGroupID": 2176,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -527003,6 +528142,7 @@
"iconID": 109,
"marketGroupID": 2167,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -527642,6 +528782,7 @@
"iconID": 21602,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -527673,6 +528814,7 @@
"iconID": 21602,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -527704,6 +528846,7 @@
"iconID": 21602,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -527735,6 +528878,7 @@
"iconID": 21602,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -527766,6 +528910,7 @@
"iconID": 21602,
"marketGroupID": 2160,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1,
@@ -534854,6 +535999,7 @@
"iconID": 21609,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534869,6 +536015,7 @@
"iconID": 21610,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534884,6 +536031,7 @@
"iconID": 21604,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534899,6 +536047,7 @@
"iconID": 21607,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534914,6 +536063,7 @@
"iconID": 21608,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534929,6 +536079,7 @@
"iconID": 21611,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534944,6 +536095,7 @@
"iconID": 21605,
"marketGroupID": 2407,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -534958,6 +536110,7 @@
"groupID": 1707,
"iconID": 2934,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -536615,6 +537768,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536630,6 +537784,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536645,6 +537800,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536660,6 +537816,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536674,6 +537831,7 @@
"graphicID": 2899,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536689,6 +537847,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536703,6 +537862,7 @@
"graphicID": 2899,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536717,6 +537877,7 @@
"graphicID": 2975,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536732,6 +537893,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536746,6 +537908,7 @@
"graphicID": 2975,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536760,6 +537923,7 @@
"graphicID": 2972,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536775,6 +537939,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536789,6 +537954,7 @@
"graphicID": 2972,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536803,6 +537969,7 @@
"graphicID": 2973,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536818,6 +537985,7 @@
"groupID": 1146,
"marketGroupID": 1028,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536832,6 +538000,7 @@
"graphicID": 2973,
"groupID": 1146,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536847,6 +538016,7 @@
"groupID": 1679,
"marketGroupID": 2238,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536861,6 +538031,7 @@
"graphicID": 2899,
"groupID": 1679,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536876,6 +538047,7 @@
"groupID": 1679,
"marketGroupID": 2238,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536890,6 +538062,7 @@
"graphicID": 2975,
"groupID": 1679,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536905,6 +538078,7 @@
"groupID": 1679,
"marketGroupID": 2238,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536919,6 +538093,7 @@
"graphicID": 2972,
"groupID": 1679,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536934,6 +538109,7 @@
"groupID": 1679,
"marketGroupID": 2238,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536948,6 +538124,7 @@
"graphicID": 2973,
"groupID": 1679,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536962,6 +538139,7 @@
"graphicID": 10039,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 52,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536977,6 +538155,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -536992,6 +538171,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537007,6 +538187,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537022,6 +538203,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537036,6 +538218,7 @@
"graphicID": 3818,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537050,6 +538233,7 @@
"graphicID": 3825,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537064,6 +538248,7 @@
"graphicID": 3819,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537078,6 +538263,7 @@
"graphicID": 3831,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537093,6 +538279,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537107,6 +538294,7 @@
"graphicID": 3825,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537122,6 +538310,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537136,6 +538325,7 @@
"graphicID": 3819,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537151,6 +538341,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537165,6 +538356,7 @@
"graphicID": 3818,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537180,6 +538372,7 @@
"groupID": 1145,
"marketGroupID": 1313,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537194,6 +538387,7 @@
"graphicID": 3831,
"groupID": 1145,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -537393,6 +538587,7 @@
"iconID": 21860,
"marketGroupID": 1542,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538413,6 +539608,7 @@
"groupID": 1707,
"iconID": 21566,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538449,6 +539645,7 @@
"groupID": 1707,
"iconID": 21565,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538485,6 +539682,7 @@
"groupID": 1707,
"iconID": 21564,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538520,6 +539718,7 @@
"groupID": 1707,
"iconID": 21561,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538571,6 +539770,7 @@
"groupID": 1707,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538607,6 +539807,7 @@
"groupID": 1707,
"iconID": 1283,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538643,6 +539844,7 @@
"groupID": 1707,
"iconID": 21743,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538678,6 +539880,7 @@
"iconID": 21513,
"marketGroupID": 1105,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538714,6 +539917,7 @@
"groupID": 1707,
"iconID": 109,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538749,6 +539953,7 @@
"groupID": 1707,
"iconID": 21439,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538784,6 +539989,7 @@
"groupID": 1707,
"iconID": 2531,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538819,6 +540025,7 @@
"groupID": 1707,
"iconID": 1405,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538833,6 +540040,7 @@
"groupID": 1707,
"iconID": 70,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538889,6 +540097,7 @@
"groupID": 1707,
"iconID": 104,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538903,6 +540112,7 @@
"groupID": 1707,
"iconID": 1284,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538981,6 +540191,7 @@
"iconID": 89,
"marketGroupID": 2175,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -538995,6 +540206,7 @@
"groupID": 1707,
"iconID": 89,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539031,6 +540243,7 @@
"iconID": 90,
"marketGroupID": 2188,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539066,6 +540279,7 @@
"groupID": 1707,
"iconID": 90,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539102,6 +540316,7 @@
"iconID": 79,
"marketGroupID": 2415,
"mass": 0.0,
+ "metaGroupID": 54,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539138,6 +540353,7 @@
"groupID": 1707,
"iconID": 79,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539174,6 +540390,7 @@
"groupID": 1707,
"iconID": 1639,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539210,6 +540427,7 @@
"groupID": 1707,
"iconID": 2983,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -539246,6 +540464,7 @@
"groupID": 1707,
"iconID": 105,
"mass": 0.0,
+ "metaGroupID": 53,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -557180,6 +558399,7 @@
"iconID": 21923,
"marketGroupID": 292,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -557195,6 +558415,7 @@
"iconID": 21923,
"marketGroupID": 292,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -557210,6 +558431,7 @@
"iconID": 21922,
"marketGroupID": 293,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -557225,6 +558447,7 @@
"iconID": 21922,
"marketGroupID": 293,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -557240,6 +558463,7 @@
"iconID": 21921,
"marketGroupID": 295,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -557255,6 +558479,7 @@
"iconID": 21921,
"marketGroupID": 295,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -559517,6 +560742,7 @@
"groupID": 106,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -559532,6 +560758,7 @@
"groupID": 105,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 2,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -561794,6 +563021,8 @@
"48917": {
"basePrice": 2000.0,
"capacity": 0.0,
+ "description": "The unstable chemical flux of minerals designated as Chromodynamic Tricarboxyls can be obtained by reprocessing the rare ore Cthonic Attar. This is obtained from unique Cthonic Attar asteroids altered by the strange gravitational and electromagnetic effects of certain deadspace pockets lying in the intermediate zones between 'shallow', stable deadspace and the truly twisted depths of Abyssal Deadspace itself.\r\n\r\nChromodynamic Tricarboxyls may be unstable but they have many uses, including use as a catalyzing material in synaptic acceleration implants and boosters. A darker use is the refinement of the strange material into \"Deathglow\", a deeply mind-altering illegal booster that has recently found its way into the underground markets of New Eden.",
+ "descriptionID": 552008,
"graphicID": 22246,
"groupID": 2006,
"iconID": 21823,
@@ -561805,9 +563034,9 @@
"radius": 1.0,
"soundID": 20859,
"typeID": 48917,
- "typeName": "Asteroid B UNUSED",
+ "typeName": "Heavy Cthonic Attar",
"typeNameID": 540970,
- "volume": 6.0
+ "volume": 100.0
},
"48918": {
"basePrice": 2000.0,
@@ -562321,6 +563550,7 @@
"iconID": 21593,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 19,
"portionSize": 1,
"published": false,
"radius": 1.0,
@@ -570502,7 +571732,7 @@
"typeName": "Kikimora",
"typeNameID": 543184,
"volume": 43000.0,
- "wreckTypeID": 48373
+ "wreckTypeID": 53068
},
"49711": {
"basePrice": 165000000.0,
@@ -570528,7 +571758,7 @@
"typeName": "Drekavac",
"typeNameID": 543185,
"volume": 233000.0,
- "wreckTypeID": 48372
+ "wreckTypeID": 53072
},
"49712": {
"basePrice": 7500000.0,
@@ -570582,7 +571812,7 @@
"typeNameID": 543187,
"variationParentTypeID": 49712,
"volume": 118000.0,
- "wreckTypeID": 48372
+ "wreckTypeID": 53070
},
"49714": {
"basePrice": 0.0,
@@ -571589,6 +572819,7 @@
"iconID": 22091,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -571604,6 +572835,7 @@
"iconID": 22091,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 1,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -571636,6 +572868,7 @@
"iconID": 22091,
"isDynamicType": false,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -576900,7 +578133,7 @@
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
- "published": true,
+ "published": false,
"radius": 8500.0,
"typeID": 52203,
"typeName": "Journey of Katia Sae Memorial",
@@ -577560,6 +578793,7 @@
"isDynamicType": false,
"marketGroupID": 292,
"mass": 0.0,
+ "metaGroupID": 5,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -577600,6 +578834,7 @@
"isDynamicType": false,
"marketGroupID": 293,
"mass": 0.0,
+ "metaGroupID": 5,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -577640,6 +578875,7 @@
"isDynamicType": false,
"marketGroupID": 295,
"mass": 0.0,
+ "metaGroupID": 5,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -577678,6 +578914,7 @@
"isDynamicType": false,
"marketGroupID": 343,
"mass": 0.0,
+ "metaGroupID": 5,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -577716,6 +578953,7 @@
"isDynamicType": false,
"marketGroupID": 343,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -577795,7 +579033,7 @@
"typeNameID": 548899,
"variationParentTypeID": 47269,
"volume": 28600.0,
- "wreckTypeID": 48373
+ "wreckTypeID": 53069
},
"52251": {
"basePrice": 50000000000.0,
@@ -577840,7 +579078,7 @@
"typeNameID": 548901,
"variationParentTypeID": 47270,
"volume": 118000.0,
- "wreckTypeID": 48372
+ "wreckTypeID": 53070
},
"52253": {
"basePrice": 50000000000.0,
@@ -577885,7 +579123,7 @@
"typeNameID": 548903,
"variationParentTypeID": 49710,
"volume": 43000.0,
- "wreckTypeID": 48373
+ "wreckTypeID": 53071
},
"52255": {
"basePrice": 50000000000.0,
@@ -579164,6 +580402,7 @@
"isDynamicType": false,
"marketGroupID": 292,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -579180,6 +580419,7 @@
"isDynamicType": false,
"marketGroupID": 293,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -579216,6 +580456,7 @@
"isDynamicType": false,
"marketGroupID": 295,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": true,
"radius": 1.0,
@@ -581174,6 +582415,8 @@
"52510": {
"basePrice": 0.0,
"capacity": 0.0,
+ "description": "",
+ "descriptionID": 552471,
"graphicID": 10026,
"groupID": 227,
"isDynamicType": false,
@@ -581907,7 +583150,7 @@
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
- "published": true,
+ "published": false,
"radius": 4634.0,
"typeID": 52590,
"typeName": "C-J6MT A History of War Monument",
@@ -583263,7 +584506,9 @@
"52700": {
"basePrice": 0.0,
"capacity": 1000.0,
- "graphicID": 24401,
+ "description": "This Triglavian subpylon emits a field that enhances the power of weapons within its area of effect. The device appears to work by feeding energy into the potential-force conversion events taking place when various weapons impact their targets. The finely-tuned and selectively reactive field the system uses relies on considerable processing power but is an efficient solution to an otherwise insuperable problem of tracking and anticipation of many and diverse weapons systems.",
+ "descriptionID": 553556,
+ "graphicID": 24516,
"groupID": 319,
"isDynamicType": false,
"mass": 1000.0,
@@ -583271,26 +584516,28 @@
"published": false,
"radius": 371.0,
"typeID": 52700,
- "typeName": "Overcharge Node",
+ "typeName": "Weapon Overcharge Subpylon",
"typeNameID": 551511,
- "volume": 1000.0,
- "wreckTypeID": 52356
+ "volume": 1000.0
},
"52701": {
- "basePrice": 0.0,
- "capacity": 0.0,
- "graphicID": 2743,
+ "basePrice": 1539006890.0,
+ "capacity": 2175.0,
+ "description": "Zirnitra Subclade of Veles Clade reclaimed adaptation schema for 2,187 tactical troika classification vessel in response to profound now-time pressure of prayer from Detached Executive Troika for Sublimation of Poshlost Flow. Zirnitra Subclade offers revised adaptation schema for 2,187 tactical troika classification vessel into the cladeflow without proving for advancing-time dispersal to strategic troika by affirmation and imperative of the Convocation of Triglav Outside the Struggle. – partial translation of data included in recovered design schematics of the Zirnitra",
+ "descriptionID": 553548,
+ "graphicID": 24503,
"groupID": 4028,
"isDynamicType": false,
- "mass": 0.0,
+ "mass": 100000.0,
"portionSize": 1,
"published": false,
- "raceID": 4,
- "radius": 1000.0,
+ "raceID": 135,
+ "radius": 1700.0,
"typeID": 52701,
- "typeName": "TestDread",
+ "typeName": "Liminal Zirnitra",
"typeNameID": 551512,
- "volume": 0.0
+ "volume": 18500000.0,
+ "wreckTypeID": 53025
},
"52703": {
"basePrice": 0.0,
@@ -585393,7 +586640,7 @@
"published": false,
"radius": 1.0,
"typeID": 52813,
- "typeName": "Standard 'Canicule' Cerebral Accelerator",
+ "typeName": "Expired Cerebral Accelerator",
"typeNameID": 551874,
"volume": 1.0
},
@@ -585410,7 +586657,7 @@
"published": false,
"radius": 1.0,
"typeID": 52814,
- "typeName": "Extended 'Canicule' Cerebral Accelerator",
+ "typeName": "Expired Cerebral Accelerator",
"typeNameID": 551876,
"volume": 1.0
},
@@ -585694,7 +586941,7 @@
"52833": {
"basePrice": 0.0,
"capacity": 950.0,
- "graphicID": 1718,
+ "graphicID": 24499,
"groupID": 802,
"isDynamicType": false,
"mass": 21000000.0,
@@ -585703,7 +586950,7 @@
"radius": 250.0,
"soundID": 11,
"typeID": 52833,
- "typeName": "Rogue Drone Infested Abaddon",
+ "typeName": "Swarm Overmind #0102",
"typeNameID": 551947,
"volume": 1010000.0,
"wreckTypeID": 48742
@@ -585720,7 +586967,7 @@
"radius": 250.0,
"soundID": 11,
"typeID": 52834,
- "typeName": "Rogue Drone Infested Dominix",
+ "typeName": "Swarm Overmind #0415",
"typeNameID": 551948,
"volume": 1010000.0,
"wreckTypeID": 48742
@@ -585728,7 +586975,7 @@
"52835": {
"basePrice": 0.0,
"capacity": 950.0,
- "graphicID": 1718,
+ "graphicID": 24500,
"groupID": 802,
"isDynamicType": false,
"mass": 21000000.0,
@@ -585737,7 +586984,7 @@
"radius": 250.0,
"soundID": 11,
"typeID": 52835,
- "typeName": "Rogue Drone Infested Raven",
+ "typeName": "Swarm Overmind #1801",
"typeNameID": 551949,
"volume": 1010000.0,
"wreckTypeID": 48742
@@ -585745,7 +586992,7 @@
"52836": {
"basePrice": 0.0,
"capacity": 950.0,
- "graphicID": 1718,
+ "graphicID": 24501,
"groupID": 802,
"isDynamicType": false,
"mass": 21000000.0,
@@ -585754,11 +587001,44 @@
"radius": 250.0,
"soundID": 11,
"typeID": 52836,
- "typeName": "Rogue Drone Infested Typhoon",
+ "typeName": "Swarm Overmind #2025",
"typeNameID": 551950,
"volume": 1010000.0,
"wreckTypeID": 48742
},
+ "52841": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52841,
+ "typeName": "TestSpawner",
+ "typeNameID": 552056,
+ "volume": 0.0
+ },
+ "52842": {
+ "basePrice": 0.0,
+ "capacity": 1000.0,
+ "description": "This structure is similar in design to the Triglavian Stellar Accelerators that have been deployed around stars by task forces of Triglavian ships alongside invasion groups. However, this structure appears to be concentrating on gathering as much data as possible about the star it is orbiting and is carrying out very deep scans of the stellar body.\r\n\r\nThere are also signs that this Triglavian Stellar Observatory is using fine control of local space-time conduit technology to \"reach into\" the heart of the star and extract samples, or perhaps is even testing an advanced resource harvesting technology. The prospect of the Triglavian Collective refining their technology and operations in New Eden to the point of harvesting stars is an alarming one.\r\n\r\nCONCORD considers elimination of the threat posed by stellar manipulation and resource harvesting by the Triglavian Collective to be a high-priority for its defense fleets.",
+ "descriptionID": 553549,
+ "graphicID": 24494,
+ "groupID": 319,
+ "isDynamicType": false,
+ "mass": 1000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 371.0,
+ "typeID": 52842,
+ "typeName": "Triglavian Stellar Observatory",
+ "typeNameID": 552074,
+ "volume": 1000.0,
+ "wreckTypeID": 52784
+ },
"52844": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -586899,6 +588179,1145 @@
"typeNameID": 552369,
"volume": 0.01
},
+ "52907": {
+ "basePrice": 1539006890.0,
+ "capacity": 2400.0,
+ "description": "A huge, capital-scale vessel that appears to be the Triglavian equivalent of the dreadnought classification of warships. The Zirnitra's basic design has been successfully adapted for use with capsule technology, based on lessons learned from retrofitting the numerous Triglavian ship designs recovered from Abyssal Deadspace.\r\n\r\nThe Zirnitra is able to wield the truly titanic Ultratidal Entropic Disintegrator alongside an array of support modules typically favored in Triglavian designs. These include energy neutralizers, pulse weapons and a long-range remote repair capability.\r\n\r\nZirnitra Subclade of Veles Clade reclaimed adaptation schema for 2,187 tactical troika classification vessel in response to profound now-time pressure of prayer from Detached Executive Troika for Sublimation of Poshlost Flow. Zirnitra Subclade offers revised adaptation schema for 2,187 tactical troika classification vessel into the cladeflow without proving for advancing-time dispersal to strategic troika by affirmation and imperative of the Convocation of Triglav Outside the Struggle. – partial translation of data included in recovered design schematics of the Zirnitra",
+ "descriptionID": 553492,
+ "factionID": 500026,
+ "graphicID": 24503,
+ "groupID": 485,
+ "isDynamicType": false,
+ "isisGroupID": 32,
+ "mass": 1275000000.0,
+ "metaLevel": 0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 135,
+ "radius": 1700.0,
+ "soundID": 20061,
+ "techLevel": 1,
+ "typeID": 52907,
+ "typeName": "Zirnitra",
+ "typeNameID": 552372,
+ "volume": 18500000.0,
+ "wreckTypeID": 53025
+ },
+ "52915": {
+ "basePrice": 0.0,
+ "capacity": 5.0,
+ "description": "This extra-large Entropic Disintegrator is only seen in use on Triglavian capital ship, these massive ships being capable of managing the considerable radiation and enormous gravitational tidal forces the weapon generates. At the energy levels of this ultraheavy weapon system, the tidal forces are so powerful that even the special systems built into battleships are insufficient and only capital ships can deal with the forces involved.\r\n\r\nEntropic Disintegrators draw on the tremendous power of the Triglavian singularity-based energy systems to convert exotic matter into a particle stream directed with locally generated entropic force. While powerful, the range of the weapon is limited by the attenuation of entropic forces, which dissipate critically beyond the optimal range. As a result this weapon has no falloff range.\r\n\r\nThe particle stream generates thermal and explosive reactions on impact, and the entropic forces resolve into a localized gravitational conduit that steadily increases the acceleration on the exotic particles. In effect, the weapon's damage potential increases to a maximum level as long as the particle stream is kept on the same target.\r\n\r\nRequires exotic plasma charge ammo types: Baryon, Meson, and Tetryon.",
+ "descriptionID": 553491,
+ "graphicID": 24504,
+ "groupID": 1986,
+ "iconID": 21921,
+ "isDynamicType": false,
+ "mass": 40000.0,
+ "metaLevel": 0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 135,
+ "radius": 1.0,
+ "techLevel": 1,
+ "typeID": 52915,
+ "typeName": "Ultratidal Entropic Disintegrator I",
+ "typeNameID": 552374,
+ "volume": 1600.0
+ },
+ "52916": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "An Entropic Disintegrator uses charges of exotic plasma to provide the particle feedstock for the weapon's beam, with different forms of exotic matter modulating the beam's characteristics.\r\n\r\nBaryon Exotic Plasma charges yield a beam with a relatively good balance of thermal and explosive damage at medium range.",
+ "descriptionID": 553493,
+ "groupID": 1987,
+ "isDynamicType": false,
+ "mass": 1.0,
+ "portionSize": 5000,
+ "published": false,
+ "raceID": 135,
+ "radius": 1.0,
+ "techLevel": 1,
+ "typeID": 52916,
+ "typeName": "Baryon Exotic Plasma XL",
+ "typeNameID": 552375,
+ "volume": 0.01
+ },
+ "52917": {
+ "basePrice": 800000.0,
+ "capacity": 0.0,
+ "description": "This ocular filter is listed in the DED inventory as a modification by CONCORD weapons technologists of standard capsuleer implant templates with control routines that mimic methods of enhancing the firepower of reverse-engineered Triglavian weaponry, at the cost of a slower build up to maximum particle stream output.",
+ "descriptionID": 552377,
+ "groupID": 300,
+ "iconID": 2053,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52917,
+ "typeName": "High-Grade Mimesis Alpha",
+ "typeNameID": 552376,
+ "volume": 1.0
+ },
+ "52918": {
+ "basePrice": 800000.0,
+ "capacity": 0.0,
+ "description": "This memory augmentation is listed in the DED inventory as a modification by CONCORD weapons technologists of standard capsuleer implant templates with control routines that mimic methods of enhancing the firepower of reverse-engineered Triglavian weaponry, at the cost of a slower build up to maximum particle stream output.",
+ "descriptionID": 552379,
+ "groupID": 300,
+ "iconID": 2061,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52918,
+ "typeName": "High-Grade Mimesis Beta",
+ "typeNameID": 552378,
+ "volume": 1.0
+ },
+ "52919": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "This cybernetic subprocessor is listed in the DED inventory as a modification by CONCORD weapons technologists of standard capsuleer implant templates with control routines that mimic methods of enhancing the firepower of reverse-engineered Triglavian weaponry, at the cost of a slower build up to maximum particle stream output.",
+ "descriptionID": 552381,
+ "groupID": 300,
+ "iconID": 2062,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52919,
+ "typeName": "High-Grade Mimesis Delta",
+ "typeNameID": 552380,
+ "volume": 1.0
+ },
+ "52920": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "This social adaptation chip is listed in the DED inventory as a modification by CONCORD weapons technologists of standard capsuleer implant templates with control routines that mimic methods of enhancing the firepower of reverse-engineered Triglavian weaponry, at the cost of a slower build up to maximum particle stream output.",
+ "descriptionID": 552383,
+ "groupID": 300,
+ "iconID": 2060,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52920,
+ "typeName": "High-Grade Mimesis Epsilon",
+ "typeNameID": 552382,
+ "volume": 1.0
+ },
+ "52921": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "This neural boost is listed in the DED inventory as a modification by CONCORD weapons technologists of standard capsuleer implant templates with control routines that mimic methods of enhancing the firepower of reverse-engineered Triglavian weaponry, at the cost of a slower build up to maximum particle stream output.",
+ "descriptionID": 552385,
+ "groupID": 300,
+ "iconID": 2054,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52921,
+ "typeName": "High-Grade Mimesis Gamma",
+ "typeNameID": 552384,
+ "volume": 1.0
+ },
+ "52922": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "This implant is listed in the DED inventory as a modification by CONCORD weapons technologists of standard capsuleer implant templates with control routines that mimic methods of enhancing the firepower of reverse-engineered Triglavian weaponry, at the cost of a slower build up to maximum particle stream output.",
+ "descriptionID": 552387,
+ "groupID": 300,
+ "iconID": 2224,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52922,
+ "typeName": "High-Grade Mimesis Omega",
+ "typeNameID": 552386,
+ "volume": 1.0
+ },
+ "52923": {
+ "basePrice": 2401508.0,
+ "capacity": 165.0,
+ "graphicID": 3365,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 1223200.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 39.0,
+ "typeID": 52923,
+ "typeName": "Imperial Navy Sentinel",
+ "typeNameID": 552400,
+ "volume": 28100.0,
+ "wreckTypeID": 26480
+ },
+ "52924": {
+ "basePrice": 2000000.0,
+ "capacity": 250.0,
+ "graphicID": 21220,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 1630000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 20.5,
+ "typeID": 52924,
+ "typeName": "Imperial Navy Deacon",
+ "typeNameID": 552401,
+ "volume": 28700.0,
+ "wreckTypeID": 26480
+ },
+ "52925": {
+ "basePrice": 0.0,
+ "capacity": 90.0,
+ "graphicID": 1921,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 1050000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 27.0,
+ "typeID": 52925,
+ "typeName": "Imperial Navy Crusader",
+ "typeNameID": 552402,
+ "volume": 28100.0,
+ "wreckTypeID": 26480
+ },
+ "52926": {
+ "basePrice": 12567518.0,
+ "capacity": 465.0,
+ "graphicID": 1916,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 11980000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 80.0,
+ "typeID": 52926,
+ "typeName": "Imperial Navy Guardian",
+ "typeNameID": 552403,
+ "volume": 115000.0,
+ "wreckTypeID": 26478
+ },
+ "52927": {
+ "basePrice": 17956216.0,
+ "capacity": 440.0,
+ "graphicID": 1751,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 12580000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 134.43,
+ "typeID": 52927,
+ "typeName": "Imperial Navy Zealot",
+ "typeNameID": 552404,
+ "volume": 118000.0,
+ "wreckTypeID": 26478
+ },
+ "52928": {
+ "basePrice": 15013042.0,
+ "capacity": 315.0,
+ "graphicID": 1914,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 11370000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 131.0,
+ "typeID": 52928,
+ "typeName": "Imperial Navy Pilgrim",
+ "typeNameID": 552405,
+ "volume": 120000.0,
+ "wreckTypeID": 26478
+ },
+ "52929": {
+ "basePrice": 38500000.0,
+ "capacity": 375.0,
+ "graphicID": 20227,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 15500000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 199.0,
+ "typeID": 52929,
+ "typeName": "Imperial Navy Harbinger",
+ "typeNameID": 552406,
+ "volume": 234000.0,
+ "wreckTypeID": 26469
+ },
+ "52930": {
+ "basePrice": 66250000.0,
+ "capacity": 875.0,
+ "graphicID": 3814,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 105200000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 250.0,
+ "typeID": 52930,
+ "typeName": "Imperial Navy Armageddon",
+ "typeNameID": 552408,
+ "volume": 486000.0,
+ "wreckTypeID": 26470
+ },
+ "52931": {
+ "basePrice": 108750000.0,
+ "capacity": 790.0,
+ "graphicID": 2239,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 97100000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 400.0,
+ "typeID": 52931,
+ "typeName": "Imperial Navy Apocalypse",
+ "typeNameID": 552407,
+ "volume": 495000.0,
+ "wreckTypeID": 26470
+ },
+ "52932": {
+ "basePrice": 2426356.0,
+ "capacity": 160.0,
+ "graphicID": 3364,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 1228700.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 41.0,
+ "typeID": 52932,
+ "typeName": "State Navy Kitsune",
+ "typeNameID": 552409,
+ "volume": 19400.0,
+ "wreckTypeID": 26502
+ },
+ "52933": {
+ "basePrice": 2000000.0,
+ "capacity": 270.0,
+ "graphicID": 21218,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 1480000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 27.0,
+ "typeID": 52933,
+ "typeName": "State Navy Kirin",
+ "typeNameID": 552410,
+ "variationParentTypeID": 582,
+ "volume": 20000.0,
+ "wreckTypeID": 26502
+ },
+ "52934": {
+ "basePrice": 0.0,
+ "capacity": 92.0,
+ "factionID": 500001,
+ "graphicID": 1878,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 1050000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 33.0,
+ "typeID": 52934,
+ "typeName": "State Navy Raptor",
+ "typeNameID": 552411,
+ "volume": 18000.0,
+ "wreckTypeID": 26502
+ },
+ "52935": {
+ "basePrice": 13340104.0,
+ "capacity": 485.0,
+ "graphicID": 11865,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 13130000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 174.0,
+ "typeID": 52935,
+ "typeName": "State Navy Basilisk",
+ "typeNameID": 552412,
+ "volume": 107000.0,
+ "wreckTypeID": 26500
+ },
+ "52936": {
+ "basePrice": 17950950.0,
+ "capacity": 650.0,
+ "graphicID": 1825,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 12720000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 202.0,
+ "typeID": 52936,
+ "typeName": "State Navy Cerberus",
+ "typeNameID": 552413,
+ "volume": 92000.0,
+ "wreckTypeID": 26500
+ },
+ "52937": {
+ "basePrice": 15001492.0,
+ "capacity": 305.0,
+ "graphicID": 1847,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 12730000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 131.0,
+ "typeID": 52937,
+ "typeName": "State Navy Rook",
+ "typeNameID": 552414,
+ "volume": 96000.0,
+ "wreckTypeID": 26500
+ },
+ "52938": {
+ "basePrice": 38000000.0,
+ "capacity": 450.0,
+ "graphicID": 20283,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 13500000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 263.0,
+ "typeID": 52938,
+ "typeName": "State Navy Drake",
+ "typeNameID": 552415,
+ "volume": 252000.0,
+ "wreckTypeID": 26491
+ },
+ "52939": {
+ "basePrice": 71250000.0,
+ "capacity": 815.0,
+ "graphicID": 3815,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 103600000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 250.0,
+ "typeID": 52939,
+ "typeName": "State Navy Scorpion",
+ "typeNameID": 552416,
+ "volume": 468000.0,
+ "wreckTypeID": 26492
+ },
+ "52940": {
+ "basePrice": 108750000.0,
+ "capacity": 800.0,
+ "factionID": 500001,
+ "graphicID": 2123,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 97300000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 250.0,
+ "typeID": 52940,
+ "typeName": "State Navy Raven",
+ "typeNameID": 552418,
+ "variationParentTypeID": 609,
+ "volume": 486000.0,
+ "wreckTypeID": 26492
+ },
+ "52941": {
+ "basePrice": 2428948.0,
+ "capacity": 175.0,
+ "graphicID": 1913,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 1204500.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 31.0,
+ "typeID": 52941,
+ "typeName": "Federal Navy Keres",
+ "typeNameID": 552419,
+ "volume": 23000.0,
+ "wreckTypeID": 26524
+ },
+ "52947": {
+ "basePrice": 2000000.0,
+ "capacity": 280.0,
+ "graphicID": 21217,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 1450000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 35.0,
+ "typeID": 52947,
+ "typeName": "Federal Navy Thalia",
+ "typeNameID": 552420,
+ "volume": 10000.0,
+ "wreckTypeID": 26524
+ },
+ "52948": {
+ "basePrice": 0.0,
+ "capacity": 92.0,
+ "graphicID": 1912,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 1060000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 24.0,
+ "typeID": 52948,
+ "typeName": "Federal Navy Taranis",
+ "typeNameID": 552421,
+ "volume": 22500.0,
+ "wreckTypeID": 26524
+ },
+ "52949": {
+ "basePrice": 12691246.0,
+ "capacity": 600.0,
+ "graphicID": 2141,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 13160000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 224.0,
+ "typeID": 52949,
+ "typeName": "Federal Navy Oneiros",
+ "typeNameID": 552422,
+ "volume": 113000.0,
+ "wreckTypeID": 26522
+ },
+ "52950": {
+ "basePrice": 17062588.0,
+ "capacity": 415.0,
+ "graphicID": 11859,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 11460000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 149.0,
+ "typeID": 52950,
+ "typeName": "Federal Navy Deimos",
+ "typeNameID": 552423,
+ "variationParentTypeID": 627,
+ "volume": 112000.0,
+ "wreckTypeID": 26522
+ },
+ "52951": {
+ "basePrice": 15072684.0,
+ "capacity": 320.0,
+ "graphicID": 2140,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 12070000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 79.0,
+ "typeID": 52951,
+ "typeName": "Federal Navy Lachesis",
+ "typeNameID": 552424,
+ "volume": 116000.0,
+ "wreckTypeID": 26522
+ },
+ "52952": {
+ "basePrice": 27000000.0,
+ "capacity": 475.0,
+ "graphicID": 20229,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 11800000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 196.0,
+ "typeID": 52952,
+ "typeName": "Federal Navy Brutix",
+ "typeNameID": 552425,
+ "volume": 270000.0,
+ "wreckTypeID": 26513
+ },
+ "52953": {
+ "basePrice": 62500000.0,
+ "capacity": 845.0,
+ "factionID": 500004,
+ "graphicID": 2138,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 97100000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 250.0,
+ "typeID": 52953,
+ "typeName": "Federal Navy Dominix",
+ "typeNameID": 552426,
+ "volume": 454500.0,
+ "wreckTypeID": 26514
+ },
+ "52954": {
+ "basePrice": 108750000.0,
+ "capacity": 840.0,
+ "graphicID": 2139,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 98400000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 250.0,
+ "typeID": 52954,
+ "typeName": "Federal Navy Megathron",
+ "typeNameID": 552427,
+ "volume": 486000.0,
+ "wreckTypeID": 26514
+ },
+ "52955": {
+ "basePrice": 2084040.0,
+ "capacity": 150.0,
+ "graphicID": 1973,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 1191300.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 29.0,
+ "typeID": 52955,
+ "typeName": "Republic Fleet Hyena",
+ "typeNameID": 552428,
+ "volume": 17400.0,
+ "wreckTypeID": 26546
+ },
+ "52956": {
+ "basePrice": 2000000.0,
+ "capacity": 260.0,
+ "graphicID": 21219,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 1420000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 31.0,
+ "typeID": 52956,
+ "typeName": "Republic Fleet Scalpel",
+ "typeNameID": 552429,
+ "variationParentTypeID": 599,
+ "volume": 17100.0,
+ "wreckTypeID": 26546
+ },
+ "52957": {
+ "basePrice": 0.0,
+ "capacity": 94.0,
+ "factionID": 500002,
+ "graphicID": 1928,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 1100000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 30.0,
+ "typeID": 52957,
+ "typeName": "Republic Fleet Claw",
+ "typeNameID": 552430,
+ "volume": 17400.0,
+ "wreckTypeID": 26546
+ },
+ "52958": {
+ "basePrice": 12450072.0,
+ "capacity": 440.0,
+ "graphicID": 1778,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 12090000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 134.0,
+ "typeID": 52958,
+ "typeName": "Republic Fleet Scimitar",
+ "typeNameID": 552431,
+ "volume": 89000.0,
+ "wreckTypeID": 26544
+ },
+ "52959": {
+ "basePrice": 17062768.0,
+ "capacity": 515.0,
+ "factionID": 500002,
+ "graphicID": 1925,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 11000000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 88.0,
+ "typeID": 52959,
+ "typeName": "Republic Fleet Muninn",
+ "typeNameID": 552432,
+ "volume": 96000.0,
+ "wreckTypeID": 26544
+ },
+ "52960": {
+ "basePrice": 14988558.0,
+ "capacity": 315.0,
+ "graphicID": 1945,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 11550000.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 133.0,
+ "typeID": 52960,
+ "typeName": "Republic Fleet Huginn",
+ "typeNameID": 552433,
+ "variationParentTypeID": 630,
+ "volume": 85000.0,
+ "wreckTypeID": 26544
+ },
+ "52961": {
+ "basePrice": 36500000.0,
+ "capacity": 425.0,
+ "graphicID": 20230,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 12800000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 246.0,
+ "typeID": 52961,
+ "typeName": "Republic Fleet Hurricane",
+ "typeNameID": 552434,
+ "volume": 216000.0,
+ "wreckTypeID": 26535
+ },
+ "52962": {
+ "basePrice": 75000000.0,
+ "capacity": 750.0,
+ "graphicID": 2160,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 102600000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 250.0,
+ "typeID": 52962,
+ "typeName": "Republic Fleet Typhoon",
+ "typeNameID": 552435,
+ "volume": 414000.0,
+ "wreckTypeID": 26536
+ },
+ "52963": {
+ "basePrice": 108750000.0,
+ "capacity": 815.0,
+ "graphicID": 2642,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 103300000.0,
+ "metaGroupID": 4,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 250.0,
+ "typeID": 52963,
+ "typeName": "Republic Fleet Tempest",
+ "typeNameID": 552436,
+ "volume": 486000.0,
+ "wreckTypeID": 26536
+ },
+ "52964": {
+ "basePrice": 1539006890.0,
+ "capacity": 2175.0,
+ "graphicID": 2743,
+ "groupID": 4034,
+ "isDynamicType": false,
+ "mass": 100000.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 1700.0,
+ "typeID": 52964,
+ "typeName": "Imperial Navy Revelation",
+ "typeNameID": 552437,
+ "volume": 18500000.0,
+ "wreckTypeID": 26475
+ },
+ "52965": {
+ "basePrice": 1541551100.0,
+ "capacity": 2750.0,
+ "graphicID": 2786,
+ "groupID": 4035,
+ "isDynamicType": false,
+ "mass": 100000.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 1700.0,
+ "typeID": 52965,
+ "typeName": "State Navy Phoenix",
+ "typeNameID": 552438,
+ "volume": 16250000.0,
+ "wreckTypeID": 26497
+ },
+ "52966": {
+ "basePrice": 1549802570.0,
+ "capacity": 2550.0,
+ "graphicID": 2744,
+ "groupID": 4036,
+ "isDynamicType": false,
+ "mass": 100000.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 1613.0,
+ "typeID": 52966,
+ "typeName": "Federal Navy Moros",
+ "typeNameID": 552439,
+ "volume": 17550000.0,
+ "wreckTypeID": 26519
+ },
+ "52967": {
+ "basePrice": 1523044240.0,
+ "capacity": 2900.0,
+ "factionID": 500002,
+ "graphicID": 2755,
+ "groupID": 4037,
+ "isDynamicType": false,
+ "mass": 100000.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 1700.0,
+ "typeID": 52967,
+ "typeName": "Republic Fleet Naglfar",
+ "typeNameID": 552440,
+ "volume": 15500000.0,
+ "wreckTypeID": 26541
+ },
+ "52972": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 724,
+ "iconID": 2053,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52972,
+ "typeName": "High-Grade Mimesis Alpha Blueprint",
+ "typeNameID": 552458,
+ "volume": 0.01
+ },
+ "52974": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 724,
+ "iconID": 2053,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52974,
+ "typeName": "High-Grade Mimesis Beta Blueprint",
+ "typeNameID": 552459,
+ "volume": 0.01
+ },
+ "52975": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 724,
+ "iconID": 2062,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52975,
+ "typeName": "High-Grade Mimesis Delta Blueprint",
+ "typeNameID": 552460,
+ "volume": 0.01
+ },
+ "52976": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 724,
+ "iconID": 2060,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52976,
+ "typeName": "High-Grade Mimesis Epsilon Blueprint",
+ "typeNameID": 552461,
+ "volume": 0.01
+ },
+ "52977": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 724,
+ "iconID": 2054,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52977,
+ "typeName": "High-Grade Mimesis Gamma Blueprint",
+ "typeNameID": 552462,
+ "volume": 0.01
+ },
+ "52978": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 724,
+ "iconID": 2224,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "metaGroupID": 2,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "techLevel": 2,
+ "typeID": 52978,
+ "typeName": "High-Grade Mimesis Omega Blueprint",
+ "typeNameID": 552463,
+ "volume": 0.01
+ },
+ "52981": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52981,
+ "typeName": "Triglavian Gate Spawner",
+ "typeNameID": 552470,
+ "volume": 0.0
+ },
+ "52982": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 0,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52982,
+ "typeName": "Triglavian Pocket Spawner",
+ "typeNameID": 552473,
+ "volume": 0.0
+ },
+ "52983": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52983,
+ "typeName": "Triglavian Dread Wave Spawner",
+ "typeNameID": 552475,
+ "volume": 0.0
+ },
+ "52984": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52984,
+ "typeName": "Triglavian Structure Wave Spawner",
+ "typeNameID": 552477,
+ "volume": 0.0
+ },
+ "52985": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52985,
+ "typeName": "Triglavian Dread Spawner",
+ "typeNameID": 552479,
+ "volume": 0.0
+ },
+ "52986": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 0,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52986,
+ "typeName": "Empire Gate Spawner",
+ "typeNameID": 552481,
+ "volume": 0.0
+ },
+ "52987": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52987,
+ "typeName": "Empire Pocket Spawner",
+ "typeNameID": 552482,
+ "volume": 0.0
+ },
+ "52988": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52988,
+ "typeName": "Empire Dread Wave Spawner",
+ "typeNameID": 552483,
+ "volume": 0.0
+ },
+ "52989": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52989,
+ "typeName": "Empire Structure Wave Spawner",
+ "typeNameID": 552484,
+ "volume": 0.0
+ },
"5299": {
"basePrice": 13948,
"capacity": 1,
@@ -586921,6 +589340,51 @@
"variationParentTypeID": 1968,
"volume": 5
},
+ "52990": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52990,
+ "typeName": "Empire Dread Spawner",
+ "typeNameID": 552485,
+ "volume": 0.0
+ },
+ "52991": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52991,
+ "typeName": "Empire Friendly Dread Spawner",
+ "typeNameID": 552487,
+ "volume": 0.0
+ },
+ "52992": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 10026,
+ "groupID": 227,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52992,
+ "typeName": "Trig Friendly Dread Spawner",
+ "typeNameID": 552488,
+ "volume": 0.0
+ },
"52996": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -586938,6 +589402,41 @@
"typeNameID": 552497,
"volume": 0.0
},
+ "52997": {
+ "basePrice": 150000000.0,
+ "capacity": 0.0,
+ "description": "Skill at operating precursor dreadnoughts.",
+ "descriptionID": 552502,
+ "groupID": 257,
+ "iconID": 33,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 52997,
+ "typeName": "Precursor Dreadnought",
+ "typeNameID": 552499,
+ "volume": 0.01
+ },
+ "52998": {
+ "basePrice": 15000000.0,
+ "capacity": 0.0,
+ "description": "Operation of capital precursor weapons. 5% Bonus to capital precursor weapon damage per level.",
+ "descriptionID": 552501,
+ "groupID": 255,
+ "iconID": 33,
+ "isDynamicType": false,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 135,
+ "radius": 1.0,
+ "typeID": 52998,
+ "typeName": "Capital Precursor Weapon",
+ "typeNameID": 552500,
+ "volume": 0.01
+ },
"53": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -587371,6 +589870,288 @@
"typeNameID": 552600,
"volume": 0.01
},
+ "53025": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "description": "The remains of a destroyed ship. Perhaps with the proper equipment something of value could be salvaged from it. ",
+ "descriptionID": 552621,
+ "graphicID": 24514,
+ "groupID": 186,
+ "isDynamicType": false,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53025,
+ "typeName": "Triglavian Dreadnought Wreck",
+ "typeNameID": 552620,
+ "volume": 27500.0
+ },
+ "53029": {
+ "basePrice": 2000000000.0,
+ "capacity": 0.0,
+ "graphicID": 24503,
+ "groupID": 537,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53029,
+ "typeName": "Zirnitra Blueprint",
+ "typeNameID": 552642,
+ "volume": 0.01
+ },
+ "53030": {
+ "basePrice": 43006260.0,
+ "capacity": 0.0,
+ "groupID": 1990,
+ "iconID": 2841,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53030,
+ "typeName": "Ultratidal Entropic Disintegrator I Blueprint",
+ "typeNameID": 552643,
+ "volume": 0.01
+ },
+ "53031": {
+ "basePrice": 30000000.0,
+ "capacity": 0.0,
+ "graphicID": 1145,
+ "groupID": 1993,
+ "iconID": 1145,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53031,
+ "typeName": "Baryon Exotic Plasma XL Blueprint",
+ "typeNameID": 552659,
+ "volume": 0.01
+ },
+ "53032": {
+ "basePrice": 1393368000.0,
+ "capacity": 0.0,
+ "groupID": 915,
+ "iconID": 2872,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53032,
+ "typeName": "Capital Ultratidal Entropic Mounting Blueprint",
+ "typeNameID": 552660,
+ "volume": 0.01
+ },
+ "53033": {
+ "basePrice": 1393368000.0,
+ "capacity": 0.0,
+ "groupID": 915,
+ "iconID": 2872,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53033,
+ "typeName": "Capital Radiation Conversion Unit Blueprint",
+ "typeNameID": 552661,
+ "volume": 0.01
+ },
+ "53034": {
+ "basePrice": 1393368000.0,
+ "capacity": 0.0,
+ "groupID": 915,
+ "iconID": 2872,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53034,
+ "typeName": "Capital Absorption Thruster Array Blueprint",
+ "typeNameID": 552662,
+ "volume": 0.01
+ },
+ "53035": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Mounting parts vital to the installation and support of Ultratidal Entropic Disruptors on capital ships using Triglavian weapons technology.",
+ "descriptionID": 553494,
+ "groupID": 873,
+ "iconID": 2872,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53035,
+ "typeName": "Capital Ultratidal Entropic Mounting",
+ "typeNameID": 552663,
+ "volume": 10000.0
+ },
+ "53036": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Modular construction units that generate and distribution power on capital ships using Triglavian singularity technology.",
+ "descriptionID": 553495,
+ "groupID": 873,
+ "iconID": 2872,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53036,
+ "typeName": "Capital Radiation Conversion Unit",
+ "typeNameID": 552664,
+ "volume": 10000.0
+ },
+ "53037": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Complex and powerful propulsion packs that use radiation absorption as the motive power for capital ships using Triglavian singularity technology.",
+ "descriptionID": 553496,
+ "groupID": 873,
+ "iconID": 2872,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53037,
+ "typeName": "Capital Absorption Thruster Array",
+ "typeNameID": 552665,
+ "volume": 10000.0
+ },
+ "53038": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24167,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53038,
+ "typeName": "53038_Male_Makeup_BodyAugmentations_BodyAugmentation_M01_Types_BodyAugmentationM01_Black.png",
+ "typeNameID": 552666,
+ "volume": 0.1
+ },
+ "53039": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24168,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53039,
+ "typeName": "53039_Male_Makeup_BodyAugmentations_BodyAugmentation_M01_Types_BodyAugmentationM01_Blue.png",
+ "typeNameID": 552667,
+ "volume": 0.1
+ },
+ "53040": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24169,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53040,
+ "typeName": "53040_Male_Makeup_BodyAugmentations_BodyAugmentation_M01_Types_BodyAugmentationM01_GoldDesign.png",
+ "typeNameID": 552668,
+ "volume": 0.1
+ },
+ "53041": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24170,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53041,
+ "typeName": "53041_Male_Makeup_BodyAugmentations_BodyAugmentation_M01_Types_BodyAugmentationM01_Red.png",
+ "typeNameID": 552669,
+ "volume": 0.1
+ },
+ "53042": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24171,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53042,
+ "typeName": "53042_Male_Makeup_BodyAugmentations_BodyAugmentation_M01_Types_BodyAugmentationM01_WhiteDesign.png",
+ "typeNameID": 552670,
+ "volume": 0.1
+ },
+ "53043": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24172,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53043,
+ "typeName": "53043_Male_Makeup_BodyAugmentations_BodyAugmentation_M01_Types_BodyAugmentationM01_YellowDesign.png",
+ "typeNameID": 552671,
+ "volume": 0.1
+ },
+ "53045": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "This is a Triglavian subpylon deployed as part of the defense network of a Stellar Observatory. The principle of enhancing fortifications with semi-autonomous subpylons has been noted as a favored technique of the Triglavians, apparently representing a more portable variation of the defensive pylons commonly encountered in Abyssal Deadspace.\r\n\r\nImportant Triglavian structures and mobile installations, such as the Xordazh-class World Arks and stellar orbitals, are often accompanied by networks of defensive subpylons.",
+ "descriptionID": 553557,
+ "groupID": 319,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53045,
+ "typeName": "Triglavian Observatory Defense Subpylon",
+ "typeNameID": 552737,
+ "volume": 0.0
+ },
+ "53046": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "This ancillary fortification unit is part of the defense network of a CONCORD Stellar Observatory. The basic field manipulation principles of Triglavian Overcharge subpylons have been retro-engineered from disabled examples and employed by CONCORD in a structure that uses their own command and control routines.",
+ "descriptionID": 553555,
+ "groupID": 319,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53046,
+ "typeName": "CONCORD Observatory Overcharge Unit",
+ "typeNameID": 552738,
+ "volume": 0.0
+ },
+ "53047": {
+ "basePrice": 0.0,
+ "capacity": 1000.0,
+ "description": "CONCORD's Inner Circle and the DED High Command have become increasingly alarmed by the focus of the Triglavian invaders on the stars of New Eden. The appearance of special Triglavian task forces erecting Stellar Accelerator structures prompted a crash program to develop a Stellar Observatory of CONCORD's own, with a suitable defense system and dedicated local defense fleets in co-operation with CONCORD member empires.\r\n\r\nThe CONCORD Stellar Observatory is carrying out vital work aimed at analyzing in depth the various effects of Triglavian stellar manipulation and comparing them with the base conditions of stellar bodies across New Eden. While it is an especially dangerous and costly task, due to the importance of working in Triglavian invasion zones, CONCORD is dedicating considerable resources and personnel to this effort.",
+ "descriptionID": 553550,
+ "graphicID": 24513,
+ "groupID": 319,
+ "isDynamicType": false,
+ "mass": 1000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 371.0,
+ "typeID": 53047,
+ "typeName": "CONCORD Stellar Observatory",
+ "typeNameID": 552739,
+ "volume": 1000.0,
+ "wreckTypeID": 53320
+ },
"53053": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -587504,6 +590285,252 @@
"typeNameID": 552788,
"volume": 4.0
},
+ "53068": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "description": "The remains of a destroyed ship. Perhaps with the proper equipment something of value could be salvaged from it. ",
+ "descriptionID": 552823,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53068,
+ "typeName": "Triglavian Destroyer Wreck",
+ "typeNameID": 552822,
+ "volume": 27500.0
+ },
+ "53069": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "description": "The remains of a destroyed ship. Perhaps with the proper equipment something of value could be salvaged from it. ",
+ "descriptionID": 552825,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53069,
+ "typeName": "Triglavian Elite Frigate Wreck",
+ "typeNameID": 552824,
+ "volume": 27500.0
+ },
+ "53070": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "description": "The remains of a destroyed ship. Perhaps with the proper equipment something of value could be salvaged from it. ",
+ "descriptionID": 552827,
+ "graphicID": 3116,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53070,
+ "typeName": "Triglavian Elite Cruiser Wreck",
+ "typeNameID": 552826,
+ "volume": 27500.0
+ },
+ "53071": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "description": "The remains of a destroyed ship. Perhaps with the proper equipment something of value could be salvaged from it. ",
+ "descriptionID": 552829,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53071,
+ "typeName": "Triglavian Elite Destroyer Wreck",
+ "typeNameID": 552828,
+ "volume": 27500.0
+ },
+ "53072": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "description": "The remains of a destroyed ship. Perhaps with the proper equipment something of value could be salvaged from it. ",
+ "descriptionID": 552831,
+ "graphicID": 3116,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53072,
+ "typeName": "Triglavian Battlecruiser Wreck",
+ "typeNameID": 552830,
+ "volume": 27500.0
+ },
+ "53080": {
+ "basePrice": 0.0,
+ "capacity": 10000.0,
+ "description": "Generic structures such as this one have been modified to fit their special purpose. In this case, the antennae and dishes are set up to gather astronavigational data and survey the surrounding asteroids for materials. Momentum wheels and photovoltaic cells are common on these devices but can be swapped out for other options.",
+ "descriptionID": 552883,
+ "graphicID": 2412,
+ "groupID": 319,
+ "mass": 100000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 4300.0,
+ "soundID": 20195,
+ "typeID": 53080,
+ "typeName": "Survey Array",
+ "typeNameID": 552882,
+ "volume": 100000000.0
+ },
+ "53081": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 21397,
+ "groupID": 226,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 100.0,
+ "typeID": 53081,
+ "typeName": "Survey Ship",
+ "typeNameID": 552884,
+ "volume": 27500.0
+ },
+ "53082": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 526,
+ "iconID": 2885,
+ "marketGroupID": 1840,
+ "mass": 1.0,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "typeID": 53082,
+ "typeName": "Astronavigational Tracking Program",
+ "typeNameID": 552885,
+ "volume": 0.1
+ },
+ "53083": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 526,
+ "iconID": 2338,
+ "marketGroupID": 1840,
+ "mass": 1.0,
+ "portionSize": 1,
+ "published": true,
+ "radius": 1.0,
+ "typeID": 53083,
+ "typeName": "Survey Data",
+ "typeNameID": 552886,
+ "volume": 0.1
+ },
+ "53084": {
+ "basePrice": 0.0,
+ "capacity": 1000.0,
+ "graphicID": 2566,
+ "groupID": 495,
+ "mass": 1000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 4500.0,
+ "soundID": 31,
+ "typeID": 53084,
+ "typeName": "Drone Hive",
+ "typeNameID": 552892,
+ "volume": 1000.0
+ },
+ "53085": {
+ "basePrice": 0.0,
+ "capacity": 2700.0,
+ "graphicID": 20298,
+ "groupID": 1207,
+ "iconID": 16,
+ "isDynamicType": false,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "soundID": 20182,
+ "typeID": 53085,
+ "typeName": "Supply Cache",
+ "typeNameID": 552893,
+ "volume": 27500.0
+ },
+ "53086": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 2586,
+ "groupID": 226,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 400.0,
+ "typeID": 53086,
+ "typeName": "Drone Lookout",
+ "typeNameID": 552894,
+ "volume": 0.0
+ },
+ "53087": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 3116,
+ "groupID": 226,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 40.0,
+ "typeID": 53087,
+ "typeName": "Wrecked Prospector Ship",
+ "typeNameID": 552895,
+ "volume": 0.0
+ },
+ "53088": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 21367,
+ "groupID": 226,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 200.0,
+ "typeID": 53088,
+ "typeName": "Wrecked Battleship",
+ "typeNameID": 552896,
+ "volume": 0.0
+ },
+ "53089": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "graphicID": 3112,
+ "groupID": 226,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1000.0,
+ "typeID": 53089,
+ "typeName": "Wrecked Dreadnought",
+ "typeNameID": 552897,
+ "volume": 0.0
+ },
+ "53090": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 21398,
+ "groupID": 226,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 16,
+ "radius": 100.0,
+ "typeID": 53090,
+ "typeName": "Wrecked Battleship",
+ "typeNameID": 552898,
+ "volume": 27500.0
+ },
"53091": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -587640,6 +590667,984 @@
"typeNameID": 552942,
"volume": 5.0
},
+ "53129": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553666,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 1.0,
+ "typeID": 53129,
+ "typeName": "Apocalypse Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553020,
+ "volume": 0.01
+ },
+ "53130": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553667,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 1.0,
+ "typeID": 53130,
+ "typeName": "Arbitrator Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553021,
+ "volume": 0.01
+ },
+ "53131": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553668,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 1.0,
+ "typeID": 53131,
+ "typeName": "Prophecy Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553022,
+ "volume": 0.01
+ },
+ "53132": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553669,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 4,
+ "radius": 1.0,
+ "typeID": 53132,
+ "typeName": "Coercer Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553023,
+ "volume": 0.01
+ },
+ "53133": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553670,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53133,
+ "typeName": "Caracal Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553024,
+ "volume": 0.01
+ },
+ "53134": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553671,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53134,
+ "typeName": "Scorpion Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553025,
+ "volume": 0.01
+ },
+ "53135": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553672,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53135,
+ "typeName": "Drake Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553026,
+ "volume": 0.01
+ },
+ "53136": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553673,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53136,
+ "typeName": "Cormorant Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553027,
+ "volume": 0.01
+ },
+ "53137": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553674,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 1.0,
+ "typeID": 53137,
+ "typeName": "Thorax Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553028,
+ "volume": 0.01
+ },
+ "53138": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553675,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 1.0,
+ "typeID": 53138,
+ "typeName": "Megathron Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553029,
+ "volume": 0.01
+ },
+ "53140": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553676,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 1.0,
+ "typeID": 53140,
+ "typeName": "Algos Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553031,
+ "volume": 0.01
+ },
+ "53141": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553677,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 1.0,
+ "typeID": 53141,
+ "typeName": "Stabber Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553032,
+ "volume": 0.01
+ },
+ "53142": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553678,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 1.0,
+ "typeID": 53142,
+ "typeName": "Typhoon Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553033,
+ "volume": 0.01
+ },
+ "53143": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553679,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 1.0,
+ "typeID": 53143,
+ "typeName": "Hurricane Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553034,
+ "volume": 0.01
+ },
+ "53144": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553680,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 2,
+ "radius": 1.0,
+ "typeID": 53144,
+ "typeName": "Talwar Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553035,
+ "volume": 0.01
+ },
+ "53149": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553069,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53149,
+ "typeName": "Bantam Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553068,
+ "volume": 0.01
+ },
+ "53150": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553072,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53150,
+ "typeName": "Condor Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553071,
+ "volume": 0.01
+ },
+ "53151": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553075,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53151,
+ "typeName": "Griffin Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553074,
+ "volume": 0.01
+ },
+ "53152": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553078,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53152,
+ "typeName": "Heron Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553077,
+ "volume": 0.01
+ },
+ "53153": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553081,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53153,
+ "typeName": "Kestrel Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553080,
+ "volume": 0.01
+ },
+ "53154": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553084,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53154,
+ "typeName": "Merlin Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553083,
+ "volume": 0.01
+ },
+ "53155": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553087,
+ "groupID": 1950,
+ "marketGroupID": 2048,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53155,
+ "typeName": "Harpy Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553086,
+ "volume": 0.01
+ },
+ "53156": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553090,
+ "groupID": 1950,
+ "marketGroupID": 2048,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53156,
+ "typeName": "Hawk Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553089,
+ "volume": 0.01
+ },
+ "53157": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553093,
+ "groupID": 1950,
+ "marketGroupID": 2052,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53157,
+ "typeName": "Buzzard Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553092,
+ "volume": 0.01
+ },
+ "53158": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553096,
+ "groupID": 1950,
+ "marketGroupID": 2052,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53158,
+ "typeName": "Manticore Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553095,
+ "volume": 0.01
+ },
+ "53159": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553099,
+ "groupID": 1950,
+ "marketGroupID": 2056,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53159,
+ "typeName": "Kitsune Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553098,
+ "volume": 0.01
+ },
+ "53160": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553102,
+ "groupID": 1950,
+ "marketGroupID": 2060,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53160,
+ "typeName": "Crow Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553101,
+ "volume": 0.01
+ },
+ "53161": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553105,
+ "groupID": 1950,
+ "marketGroupID": 2060,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53161,
+ "typeName": "Raptor Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553104,
+ "volume": 0.01
+ },
+ "53162": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553108,
+ "groupID": 1950,
+ "marketGroupID": 2138,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53162,
+ "typeName": "Kirin Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553107,
+ "volume": 0.01
+ },
+ "53163": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553111,
+ "groupID": 1950,
+ "marketGroupID": 2000,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53163,
+ "typeName": "Caldari Navy Hookbill Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553110,
+ "volume": 0.01
+ },
+ "53164": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553114,
+ "groupID": 1950,
+ "marketGroupID": 2000,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53164,
+ "typeName": "Griffin Navy Issue Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553113,
+ "volume": 0.01
+ },
+ "53165": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553117,
+ "groupID": 1950,
+ "marketGroupID": 1995,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53165,
+ "typeName": "Corax Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553116,
+ "volume": 0.01
+ },
+ "53166": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553120,
+ "groupID": 1950,
+ "marketGroupID": 1995,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53166,
+ "typeName": "Cormorant Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553119,
+ "volume": 0.01
+ },
+ "53167": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553123,
+ "groupID": 1950,
+ "marketGroupID": 2143,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53167,
+ "typeName": "Stork Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553122,
+ "volume": 0.01
+ },
+ "53168": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553126,
+ "groupID": 1950,
+ "marketGroupID": 2039,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53168,
+ "typeName": "Flycatcher Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553125,
+ "volume": 0.01
+ },
+ "53169": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553129,
+ "groupID": 1950,
+ "marketGroupID": 2391,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53169,
+ "typeName": "Jackdaw Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553128,
+ "volume": 0.01
+ },
+ "53170": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553132,
+ "groupID": 1950,
+ "marketGroupID": 1991,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53170,
+ "typeName": "Blackbird Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553131,
+ "volume": 0.01
+ },
+ "53171": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553135,
+ "groupID": 1950,
+ "marketGroupID": 1991,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53171,
+ "typeName": "Caracal Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553134,
+ "volume": 0.01
+ },
+ "53172": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553138,
+ "groupID": 1950,
+ "marketGroupID": 1991,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53172,
+ "typeName": "Moa Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553137,
+ "volume": 0.01
+ },
+ "53173": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553141,
+ "groupID": 1950,
+ "marketGroupID": 1991,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53173,
+ "typeName": "Osprey Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553140,
+ "volume": 0.01
+ },
+ "53174": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553144,
+ "groupID": 1950,
+ "marketGroupID": 2070,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53174,
+ "typeName": "Cerberus Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553143,
+ "volume": 0.01
+ },
+ "53175": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553147,
+ "groupID": 1950,
+ "marketGroupID": 2070,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53175,
+ "typeName": "Eagle Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553146,
+ "volume": 0.01
+ },
+ "53176": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553150,
+ "groupID": 1950,
+ "marketGroupID": 2074,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53176,
+ "typeName": "Onyx Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553149,
+ "volume": 0.01
+ },
+ "53177": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553153,
+ "groupID": 1950,
+ "marketGroupID": 2078,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53177,
+ "typeName": "Basilisk Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553152,
+ "volume": 0.01
+ },
+ "53178": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553156,
+ "groupID": 1950,
+ "marketGroupID": 2082,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53178,
+ "typeName": "Falcon Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553155,
+ "volume": 0.01
+ },
+ "53179": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553159,
+ "groupID": 1950,
+ "marketGroupID": 2082,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53179,
+ "typeName": "Rook Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553158,
+ "volume": 0.01
+ },
+ "53180": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553162,
+ "groupID": 1950,
+ "marketGroupID": 2370,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53180,
+ "typeName": "Tengu Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553161,
+ "volume": 0.01
+ },
+ "53181": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553165,
+ "groupID": 1950,
+ "marketGroupID": 2063,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53181,
+ "typeName": "Caracal Navy Issue Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553164,
+ "volume": 0.01
+ },
+ "53182": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553168,
+ "groupID": 1950,
+ "marketGroupID": 2063,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53182,
+ "typeName": "Osprey Navy Issue Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553167,
+ "volume": 0.01
+ },
+ "53183": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553171,
+ "groupID": 1950,
+ "marketGroupID": 1957,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53183,
+ "typeName": "Drake Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553170,
+ "volume": 0.01
+ },
+ "53184": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553174,
+ "groupID": 1950,
+ "marketGroupID": 1957,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53184,
+ "typeName": "Ferox Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553173,
+ "volume": 0.01
+ },
+ "53185": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553177,
+ "groupID": 1950,
+ "marketGroupID": 1957,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53185,
+ "typeName": "Naga Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553176,
+ "volume": 0.01
+ },
+ "53186": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553180,
+ "groupID": 1950,
+ "marketGroupID": 2105,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53186,
+ "typeName": "Nighthawk Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553179,
+ "volume": 0.01
+ },
+ "53187": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553183,
+ "groupID": 1950,
+ "marketGroupID": 2105,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53187,
+ "typeName": "Vulture Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553182,
+ "volume": 0.01
+ },
+ "53188": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553186,
+ "groupID": 1950,
+ "marketGroupID": 2103,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53188,
+ "typeName": "Drake Navy Issue Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553185,
+ "volume": 0.01
+ },
+ "53189": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553189,
+ "groupID": 1950,
+ "marketGroupID": 1965,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53189,
+ "typeName": "Raven Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553188,
+ "volume": 0.01
+ },
"5319": {
"basePrice": 14828,
"capacity": 1,
@@ -587661,6 +591666,186 @@
"variationParentTypeID": 2108,
"volume": 5
},
+ "53190": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553192,
+ "groupID": 1950,
+ "marketGroupID": 1965,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53190,
+ "typeName": "Rokh Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553191,
+ "volume": 0.01
+ },
+ "53191": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553195,
+ "groupID": 1950,
+ "marketGroupID": 1965,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53191,
+ "typeName": "Scorpion Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553194,
+ "volume": 0.01
+ },
+ "53192": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553198,
+ "groupID": 1950,
+ "marketGroupID": 2111,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53192,
+ "typeName": "Widow Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553197,
+ "volume": 0.01
+ },
+ "53193": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553201,
+ "groupID": 1950,
+ "marketGroupID": 2025,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53193,
+ "typeName": "Golem Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553200,
+ "volume": 0.01
+ },
+ "53194": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553204,
+ "groupID": 1950,
+ "marketGroupID": 2108,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53194,
+ "typeName": "Raven Navy Issue Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553203,
+ "volume": 0.01
+ },
+ "53195": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553207,
+ "groupID": 1950,
+ "marketGroupID": 2108,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53195,
+ "typeName": "Scorpion Navy Issue Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553206,
+ "volume": 0.01
+ },
+ "53196": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553210,
+ "groupID": 1950,
+ "marketGroupID": 1981,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53196,
+ "typeName": "Phoenix Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553209,
+ "volume": 0.01
+ },
+ "53197": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553213,
+ "groupID": 1950,
+ "marketGroupID": 1975,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53197,
+ "typeName": "Chimera Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553212,
+ "volume": 0.01
+ },
+ "53198": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553216,
+ "groupID": 1950,
+ "marketGroupID": 1975,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53198,
+ "typeName": "Wyvern Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553215,
+ "volume": 0.01
+ },
+ "53199": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553219,
+ "groupID": 1950,
+ "marketGroupID": 2092,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53199,
+ "typeName": "Leviathan Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553218,
+ "volume": 0.01
+ },
"5320": {
"basePrice": 14828,
"capacity": 1,
@@ -587682,6 +591867,183 @@
"variationParentTypeID": 2108,
"volume": 5
},
+ "53200": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553222,
+ "groupID": 1950,
+ "marketGroupID": 2008,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53200,
+ "typeName": "Badger Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553221,
+ "volume": 0.01
+ },
+ "53201": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553225,
+ "groupID": 1950,
+ "marketGroupID": 2008,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53201,
+ "typeName": "Tayra Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553224,
+ "volume": 0.01
+ },
+ "53202": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553228,
+ "groupID": 1950,
+ "marketGroupID": 2089,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53202,
+ "typeName": "Crane Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553227,
+ "volume": 0.01
+ },
+ "53203": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553231,
+ "groupID": 1950,
+ "marketGroupID": 2089,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53203,
+ "typeName": "Bustard Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553230,
+ "volume": 0.01
+ },
+ "53204": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553234,
+ "groupID": 1950,
+ "marketGroupID": 1985,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53204,
+ "typeName": "Charon Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553233,
+ "volume": 0.01
+ },
+ "53205": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553237,
+ "groupID": 1950,
+ "marketGroupID": 2096,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53205,
+ "typeName": "Rhea Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553236,
+ "volume": 0.01
+ },
+ "53206": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Now owned by the Sukuuvestaa megacorp, the Zento Isideko Combine represents the final fate of an old industrial concern from the early corporate era of Caldari society. Founded in the wave of corporate developments and consolidations of earlier business forms in the decades that followed first contact with the Gallente, Zento Isideko Combine was typical in its aspiration to become an interplanetary conglomerate in an era of enormous cultural and technological upheaval for the Caldari people.\r\n\r\nLed by their visionary founder Foss Kriistavaa, the Zento Isideko Combine rapidly became a leader in the construction of advanced transportation links across Caldari Prime and eventually realized the founding ambition of becoming an space-industrial powerhouse. Zento Isideko maintained its place in the upper tier of Caldari corporations for nearly 200 years, until the Third Sontogi Oskkaltiovone* of 22714 AD brought it within the sphere of a corporate grouping that would eventually become the Sukuuvestaa Corporation.\r\n\r\nAfter various corporate permutations over the centuries, the business is generally known as SuVee ZenIko on the stock markets. Even so, the old Zento Isideko Combine brand and livery is still used to distinguish the support fleets of the transportation construction, maintenance and security operations that the division carries out across the extensive holdings of Sukuuvestaa.\r\n\r\n(Sontogi Oskkaltiovone – loosely translated: rules-based corporate war of takeovers)",
+ "descriptionID": 553240,
+ "groupID": 1950,
+ "marketGroupID": 2279,
+ "mass": 0.0,
+ "metaGroupID": 17,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53206,
+ "typeName": "Minokawa Zento Isideko Combine SKIN (Permanent)",
+ "typeNameID": 553239,
+ "volume": 0.01
+ },
+ "53207": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553295,
+ "groupID": 1950,
+ "marketGroupID": 2002,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 4,
+ "radius": 1.0,
+ "typeID": 53207,
+ "typeName": "Punisher Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553243,
+ "volume": 0.01
+ },
+ "53208": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553294,
+ "groupID": 1950,
+ "marketGroupID": 2003,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53208,
+ "typeName": "Merlin Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553245,
+ "volume": 0.01
+ },
+ "53209": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553293,
+ "groupID": 1950,
+ "marketGroupID": 2004,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 8,
+ "radius": 1.0,
+ "typeID": 53209,
+ "typeName": "Incursus Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553247,
+ "volume": 0.01
+ },
"5321": {
"basePrice": 14828,
"capacity": 1,
@@ -587703,6 +592065,23 @@
"variationParentTypeID": 37543,
"volume": 5
},
+ "53210": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553292,
+ "groupID": 1950,
+ "marketGroupID": 2005,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 2,
+ "radius": 1.0,
+ "typeID": 53210,
+ "typeName": "Rifter Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553249,
+ "volume": 0.01
+ },
"53217": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -587844,6 +592223,90 @@
"typeNameID": 553270,
"volume": 0.01
},
+ "53226": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24192,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53226,
+ "typeName": "53226_Female_Makeup_BodyAugmentations_BodyAugmentation_F01_Types_BodyAugmentationF01_Black.png",
+ "typeNameID": 553271,
+ "volume": 0.1
+ },
+ "53227": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24193,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53227,
+ "typeName": "53227_Female_Makeup_BodyAugmentations_BodyAugmentation_F01_Types_BodyAugmentationF01_Blue.png",
+ "typeNameID": 553272,
+ "volume": 0.1
+ },
+ "53228": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24194,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53228,
+ "typeName": "53228_Female_Makeup_BodyAugmentations_BodyAugmentation_F01_Types_BodyAugmentationF01_GoldCamo.png",
+ "typeNameID": 553273,
+ "volume": 0.1
+ },
+ "53229": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24195,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53229,
+ "typeName": "53229_Female_Makeup_BodyAugmentations_BodyAugmentation_F01_Types_BodyAugmentationF01_Red.png",
+ "typeNameID": 553274,
+ "volume": 0.1
+ },
+ "53230": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24196,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53230,
+ "typeName": "53230_Female_Makeup_BodyAugmentations_BodyAugmentation_F01_Types_BodyAugmentationF01_WhiteCamo.png",
+ "typeNameID": 553275,
+ "volume": 0.1
+ },
+ "53231": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "groupID": 1670,
+ "iconID": 24197,
+ "mass": 0.5,
+ "portionSize": 1,
+ "published": false,
+ "radius": 1.0,
+ "typeID": 53231,
+ "typeName": "53231_Female_Makeup_BodyAugmentations_BodyAugmentation_F01_Types_BodyAugmentationF01_YellowCamo.png",
+ "typeNameID": 553276,
+ "volume": 0.1
+ },
"53232": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -587861,6 +592324,302 @@
"typeNameID": 553277,
"volume": 1.0
},
+ "53244": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "Noting the unusual effects that can be obtained when incorporating Triglavian subroutines and traces of Abyssal materials into nanocoatings, a commercial product that replicates the look of the plasma firestorms that rage in certain Abyssal Deadspace pockets was developed.",
+ "descriptionID": 553681,
+ "groupID": 1950,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": false,
+ "raceID": 8,
+ "radius": 1.0,
+ "typeID": 53244,
+ "typeName": "Brutix Abyssal Firestorm SKIN (Permanent)",
+ "typeNameID": 553291,
+ "volume": 0.01
+ },
+ "53257": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53257,
+ "typeName": "Imperial Navy Elite Frigate Wreck",
+ "typeNameID": 553312,
+ "volume": 27500.0
+ },
+ "53258": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3116,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53258,
+ "typeName": "Imperial Navy Elite Cruiser Wreck",
+ "typeNameID": 553313,
+ "volume": 27500.0
+ },
+ "53259": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53259,
+ "typeName": "Imperial Navy Battlecruiser Wreck",
+ "typeNameID": 553314,
+ "volume": 27500.0
+ },
+ "53260": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53260,
+ "typeName": "Imperial Navy Battleship Wreck",
+ "typeNameID": 553316,
+ "volume": 27500.0
+ },
+ "53261": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3098,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53261,
+ "typeName": "Imperial Navy Dreadnought Wreck",
+ "typeNameID": 553317,
+ "volume": 27500.0
+ },
+ "53262": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53262,
+ "typeName": "State Navy Elite Frigate Wreck",
+ "typeNameID": 553318,
+ "volume": 27500.0
+ },
+ "53263": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3116,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53263,
+ "typeName": "State Navy Elite Cruiser Wreck",
+ "typeNameID": 553319,
+ "volume": 27500.0
+ },
+ "53264": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53264,
+ "typeName": "State Navy Battlecruiser Wreck",
+ "typeNameID": 553320,
+ "volume": 27500.0
+ },
+ "53265": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53265,
+ "typeName": "State Navy Battleship Wreck",
+ "typeNameID": 553321,
+ "volume": 27500.0
+ },
+ "53266": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3102,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53266,
+ "typeName": "State Navy Dreadnought Wreck",
+ "typeNameID": 553322,
+ "volume": 27500.0
+ },
+ "53267": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53267,
+ "typeName": "Federal Navy Elite Frigate Wreck",
+ "typeNameID": 553323,
+ "volume": 27500.0
+ },
+ "53268": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3116,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53268,
+ "typeName": "Federal Navy Elite Cruiser Wreck",
+ "typeNameID": 553324,
+ "volume": 27500.0
+ },
+ "53269": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53269,
+ "typeName": "Federal Navy Battlecruiser Wreck",
+ "typeNameID": 553325,
+ "volume": 27500.0
+ },
+ "53270": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53270,
+ "typeName": "Federal Navy Battleship Wreck",
+ "typeNameID": 553326,
+ "volume": 27500.0
+ },
+ "53271": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3106,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53271,
+ "typeName": "Federal Navy Dreadnought Wreck",
+ "typeNameID": 553327,
+ "volume": 27500.0
+ },
+ "53272": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3117,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53272,
+ "typeName": "Republic Fleet Elite Frigate Wreck",
+ "typeNameID": 553328,
+ "volume": 27500.0
+ },
+ "53273": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3116,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53273,
+ "typeName": "Republic Fleet Elite Cruiser Wreck",
+ "typeNameID": 553329,
+ "volume": 27500.0
+ },
+ "53274": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53274,
+ "typeName": "Republic Fleet Battlecruiser Wreck",
+ "typeNameID": 553330,
+ "volume": 27500.0
+ },
+ "53275": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3115,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53275,
+ "typeName": "Republic Fleet Battleship Wreck",
+ "typeNameID": 553331,
+ "volume": 27500.0
+ },
+ "53276": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 3112,
+ "groupID": 186,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53276,
+ "typeName": "Republic Fleet Dreadnought Wreck",
+ "typeNameID": 553332,
+ "volume": 27500.0
+ },
"53287": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -587896,6 +592655,171 @@
"typeNameID": 76525,
"volume": 5.0
},
+ "53305": {
+ "basePrice": 0.0,
+ "capacity": 1000.0,
+ "graphicID": 24511,
+ "groupID": 319,
+ "isDynamicType": false,
+ "mass": 1000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 371.0,
+ "typeID": 53305,
+ "typeName": "Overcharge Node",
+ "typeNameID": 553574,
+ "volume": 1000.0,
+ "wreckTypeID": 53306
+ },
+ "53306": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 24512,
+ "groupID": 186,
+ "isDynamicType": false,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53306,
+ "typeName": "Overcharge Node Wreck",
+ "typeNameID": 553575,
+ "volume": 27500.0
+ },
+ "53307": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553579,
+ "groupID": 1950,
+ "marketGroupID": 1994,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 4,
+ "radius": 1.0,
+ "typeID": 53307,
+ "typeName": "Coercer Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553578,
+ "volume": 0.01
+ },
+ "53308": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553582,
+ "groupID": 1950,
+ "marketGroupID": 1995,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 1,
+ "radius": 1.0,
+ "typeID": 53308,
+ "typeName": "Cormorant Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553581,
+ "volume": 0.01
+ },
+ "53309": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553585,
+ "groupID": 1950,
+ "marketGroupID": 1996,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 8,
+ "radius": 1.0,
+ "typeID": 53309,
+ "typeName": "Catalyst Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553584,
+ "volume": 0.01
+ },
+ "53310": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "\"After four years of harmonious and profitable business across the four empires of New Eden, the Upwell Consortium is pleased to announce the formation of a new capsule construction, pilot adaptation and advanced training operation. It is the hope of the Upwell Consortium that Harmonious Ascension Industries will become a leading force in the provision of support and services to capsuleers.\r\n\r\nTo celebrate this event, the Upwell Consortium has authorized the issuing of a commemorative nanocoating for pilots in the first wave of new capsuleers outfitted by Harmonious Ascension.\"\r\n\r\n – Upwell Consortium Press Release, YC121.11.14",
+ "descriptionID": 553588,
+ "groupID": 1950,
+ "marketGroupID": 1997,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 2,
+ "radius": 1.0,
+ "typeID": 53310,
+ "typeName": "Thrasher Harmonious Ascension SKIN (Permanent)",
+ "typeNameID": 553587,
+ "volume": 0.01
+ },
+ "53314": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "New Eden is littered with ancient mysteries from before the renaissance of space travel, industry and warfare that has brought into being the big four empires. The EVE Gate itself is believed by many to be a crossing point to the very origins of the human species. Others consider it a trapdoor to great dangers or, at the very least, a warning of the terrible risks of meddling with whatever sleeping secrets and hidden horrors lie beyond the thresholds of space and time.\r\n\r\nThe Sleepers, Drifters, Triglavians, and even the long-gone, perhaps dead Jove are testament to the dangers of delving into the mysteries of deep time. Even though the civilizations of New Eden commonly see crossroads as an ancient mythological symbol of opportunity twinned with danger, as befits a place between the worlds, the promise of vast rewards for taking a leap beyond the liminal crossings of New Eden are ever alluring to capsuleers.",
+ "descriptionID": 553664,
+ "groupID": 1950,
+ "marketGroupID": 2485,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 135,
+ "radius": 1.0,
+ "typeID": 53314,
+ "typeName": "Ikitursa Liminal Crossings SKIN (Permanent)",
+ "typeNameID": 553596,
+ "volume": 0.01
+ },
+ "53315": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "New Eden is littered with ancient mysteries from before the renaissance of space travel, industry and warfare that has brought into being the big four empires. The EVE Gate itself is believed by many to be a crossing point to the very origins of the human species. Others consider it a trapdoor to great dangers or, at the very least, a warning of the terrible risks of meddling with whatever sleeping secrets and hidden horrors lie beyond the thresholds of space and time.\r\n\r\nThe Sleepers, Drifters, Triglavians, and even the long-gone, perhaps dead Jove are testament to the dangers of delving into the mysteries of deep time. Even though the civilizations of New Eden commonly see crossroads as an ancient mythological symbol of opportunity twinned with danger, as befits a place between the worlds, the promise of vast rewards for taking a leap beyond the liminal crossings of New Eden are ever alluring to capsuleers.",
+ "descriptionID": 553663,
+ "groupID": 1950,
+ "marketGroupID": 2486,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 135,
+ "radius": 1.0,
+ "typeID": 53315,
+ "typeName": "Nergal Liminal Crossings SKIN (Permanent)",
+ "typeNameID": 553597,
+ "volume": 0.01
+ },
+ "53316": {
+ "basePrice": 0.0,
+ "capacity": 0.0,
+ "description": "New Eden is littered with ancient mysteries from before the renaissance of space travel, industry and warfare that has brought into being the big four empires. The EVE Gate itself is believed by many to be a crossing point to the very origins of the human species. Others consider it a trapdoor to great dangers or, at the very least, a warning of the terrible risks of meddling with whatever sleeping secrets and hidden horrors lie beyond the thresholds of space and time.\r\n\r\nThe Sleepers, Drifters, Triglavians, and even the long-gone, perhaps dead Jove are testament to the dangers of delving into the mysteries of deep time. Even though the civilizations of New Eden commonly see crossroads as an ancient mythological symbol of opportunity twinned with danger, as befits a place between the worlds, the promise of vast rewards for taking a leap beyond the liminal crossings of New Eden are ever alluring to capsuleers.",
+ "descriptionID": 553660,
+ "groupID": 1950,
+ "marketGroupID": 2521,
+ "mass": 0.0,
+ "portionSize": 1,
+ "published": true,
+ "raceID": 135,
+ "radius": 1.0,
+ "typeID": 53316,
+ "typeName": "Draugur Liminal Crossings SKIN (Permanent)",
+ "typeNameID": 553598,
+ "volume": 0.01
+ },
+ "53320": {
+ "basePrice": 0.0,
+ "capacity": 27500.0,
+ "graphicID": 24515,
+ "groupID": 186,
+ "isDynamicType": false,
+ "mass": 10000.0,
+ "portionSize": 1,
+ "published": false,
+ "radius": 14.0,
+ "typeID": 53320,
+ "typeName": "CONCORD Stellar Observatory Wreck",
+ "typeNameID": 553602,
+ "volume": 27500.0
+ },
"5339": {
"basePrice": 9964,
"capacity": 1,
@@ -602564,6 +607488,7 @@
"graphicID": 341,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 4,
@@ -602634,6 +607559,7 @@
"graphicID": 343,
"groupID": 105,
"mass": 0.0,
+ "metaGroupID": 4,
"portionSize": 1,
"published": false,
"raceID": 2,
diff --git a/staticdata/phobos/metadata.json b/staticdata/phobos/metadata.json
index e23fb1ed7..f61529931 100644
--- a/staticdata/phobos/metadata.json
+++ b/staticdata/phobos/metadata.json
@@ -1,10 +1,10 @@
[
{
"field_name": "client_build",
- "field_value": 1596526
+ "field_value": 1604553
},
{
"field_name": "dump_time",
- "field_value": 1572522923
+ "field_value": 1573560935
}
]
\ No newline at end of file
diff --git a/staticdata/phobos/traits.json b/staticdata/phobos/traits.json
index 6cd6203c7..06b07ed64 100644
--- a/staticdata/phobos/traits.json
+++ b/staticdata/phobos/traits.json
@@ -733,7 +733,7 @@
"text": "reduction in Small Energy Turret activation cost"
},
{
- "number": "10%",
+ "number": "5%",
"text": "bonus to Small Energy Turret damage"
}
],
@@ -10405,7 +10405,7 @@
{
"bonuses": [
{
- "number": "15%",
+ "number": "10%",
"text": "bonus to Small Hybrid Turret damage"
}
],
@@ -14922,7 +14922,7 @@
"text": "reduction in Microwarpdrive signature radius penalty"
},
{
- "number": "10%",
+ "number": "5%",
"text": "bonus to Small Projectile Turret damage"
}
],
@@ -17674,6 +17674,58 @@
},
"typeID": 12735
},
+ {
+ "traits": {
+ "role": {
+ "bonuses": [
+ {
+ "text": "·Can fit a Siege module"
+ },
+ {
+ "number": "5x",
+ "text": "penalty to Entosis Link cycle time"
+ },
+ {
+ "number": "100%",
+ "text": "bonus to Remote Armor Repairer range"
+ },
+ {
+ "number": "50%",
+ "text": "reduced Energy Neutralizer capacitor need"
+ },
+ {
+ "number": "50%",
+ "text": "reduced Remote Armor Repairer capacitor need"
+ },
+ {
+ "number": "50%",
+ "text": "reduced Smart Bomb capacitor need"
+ }
+ ],
+ "header": "Role Bonus:"
+ },
+ "skills": [
+ {
+ "bonuses": [
+ {
+ "number": "5%",
+ "text": "bonus to XL Disintegrator damage"
+ },
+ {
+ "number": "4%",
+ "text": "bonus to all armor resistances"
+ },
+ {
+ "number": "3%",
+ "text": "bonus to XL Disintegrator rate of fire"
+ }
+ ],
+ "header": "Zirnitra bonuses (per skill level):"
+ }
+ ]
+ },
+ "typeID": 52907
+ },
{
"traits": {
"skills": [
@@ -18758,7 +18810,7 @@
{
"bonuses": [
{
- "number": "10%",
+ "number": "5%",
"text": "bonus to Small Hybrid Turret damage"
},
{
diff --git a/tests/test_modules/test_eos/test_utils/test_stats.py b/tests/test_modules/test_eos/test_utils/test_stats.py
new file mode 100644
index 000000000..dc81adccc
--- /dev/null
+++ b/tests/test_modules/test_eos/test_utils/test_stats.py
@@ -0,0 +1,53 @@
+# Add root folder to python paths
+# This must be done on every test in order to pass in Travis
+import os
+import sys
+
+script_dir = os.path.dirname(os.path.abspath(__file__))
+sys.path.append(os.path.realpath(os.path.join(script_dir, '..', '..', '..', '..')))
+
+import pytest
+from eos.utils.stats import DmgTypes, RRTypes
+
+
+@pytest.fixture()
+def setup_damage_types():
+ return DmgTypes(10, 20, 30, 40)
+
+
+def test_dmgtypes_names():
+ assert DmgTypes.names() == ['em', 'thermal', 'kinetic', 'explosive']
+ assert DmgTypes.names(True) == ['em', 'th', 'kin', 'exp']
+ assert DmgTypes.names(short=True) == ['em', 'th', 'kin', 'exp']
+
+
+def test_dmgtypes__repr(setup_damage_types):
+ assert setup_damage_types.__repr__() == ''
+
+
+def test_dmgtypes_names_lambda():
+ assert DmgTypes.names(False, lambda v: v.capitalize()) == ['Em', 'Thermal', 'Kinetic', 'Explosive']
+ assert DmgTypes.names(True, lambda v: v.upper()) == ['EM', 'TH', 'KIN', 'EXP']
+
+
+@pytest.fixture()
+def setup_rr_types():
+ return RRTypes(10, 20, 30, 40)
+
+
+def test_rrtypes_names():
+ assert RRTypes.names() == ['shield', 'armor', 'hull']
+ assert RRTypes.names(True) == ['shield', 'armor', 'hull']
+ assert RRTypes.names(ehpOnly=True) == ['shield', 'armor', 'hull']
+ assert RRTypes.names(False) == ['shield', 'armor', 'hull', 'capacitor']
+
+
+def test_rrtypes__repr(setup_rr_types):
+ assert setup_rr_types.__repr__() == ''
+
+
+def test_rrtypes_names_lambda():
+ assert RRTypes.names(True, lambda v: v.capitalize()) == ['Shield', 'Armor', 'Hull']
+ assert RRTypes.names(postProcessor=lambda v: v.upper(), ehpOnly=False) == ['SHIELD', 'ARMOR', 'HULL', 'CAPACITOR']
+
+
diff --git a/tests/test_modules/test_service/test_fit.py b/tests/test_modules/test_service/test_fit.py
index 18f5a9e52..7f000e0bd 100644
--- a/tests/test_modules/test_service/test_fit.py
+++ b/tests/test_modules/test_service/test_fit.py
@@ -5,7 +5,8 @@ import sys
script_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.realpath(os.path.join(script_dir, '..', '..', '..')))
-# noinspection PyPackageRequirements
+# This import is here to hack around circular import issues
+import gui.mainFrame
# noinspection PyPackageRequirements
from service.fit import Fit
diff --git a/tests/test_unread_desc.py b/tests/test_unread_desc.py
index 824475d4f..beb08001a 100644
--- a/tests/test_unread_desc.py
+++ b/tests/test_unread_desc.py
@@ -9,17 +9,15 @@ import os
import sys
# nopep8
import re
-# from utils.strfunctions import sequential_rep, replace_ltgt
-#from utils.stopwatch import Stopwatch
script_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.realpath(os.path.join(script_dir, '..')))
sys._called_from_test = True # need db open for tests. (see eos/config.py#17
+
+# This import is here to hack around circular import issues
+import gui.mainFrame
# noinspection PyPep8
from service.port import Port, IPortUser
-#
-# noinspection PyPackageRequirements
-# from _development.helpers import DBInMemory as DB
"""
NOTE:
diff --git a/version.yml b/version.yml
index 6c2e0ad84..44dc1322f 100644
--- a/version.yml
+++ b/version.yml
@@ -1 +1 @@
-version: v2.14.1
+version: v2.14.2